trying to get anmated gif to play in composer window.........i got animated gifs to play in a wxwindow, but now want to get that window in the wxcomposer gui.......trying to do a wxsplitter->splitvertical on the wxcomposer frame but dosn't seem to work........i see where the m_splitter is used to split the header frame from the composer frame.....i wanted to do the same with another frame but only split verticlly so a new frame (which i will use to show animated gifs will show up to the left of the composer and below the header frame in the the lower left quadrent........lmk what i am doing wrong.



//this code was inserted in wxComposeView::Create(...) before the horizonall split


wxFrame* frame1 = new wxFrame(this, -1, "frame1", wxPoint(-1, -1), wxSize(500, 400), wxDEFAULT_FRAME_STYLE);

wxSplitterWindow* m_splitter2 = new wxSplitterWindow(frame1);



  // configure splitter
  wxCoord heightHeaders = m_panel->GetSize().y;

//this is where the header frame is splitt horizonatlly with the composer in wxComposeView::Create(...)
m_splitter->SplitHorizontally(m_panel, m_editor->GetWindow(), heightHeaders);
m_splitter2->SplitVertically(fame1, m_editor->GetWindow(),200);


_________________________________________________________________
Help protect your PC: Get a free online virus scan at McAfee.com. http://clinic.mcafee.com/clinic/ibuy/campaign.asp?cid=3963




-------------------------------------------------------
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
_______________________________________________
Mahogany-Developers mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/mahogany-developers

Reply via email to