X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/e8fdc26406cd8bd822955c9d1f12be86781ad379..3db7be803691c60b11a583d5be24b9a8a55aa2b3:/samples/image/image.cpp diff --git a/samples/image/image.cpp b/samples/image/image.cpp index fac7bf1a87..002e1da9f4 100644 --- a/samples/image/image.cpp +++ b/samples/image/image.cpp @@ -130,6 +130,7 @@ IMPLEMENT_DYNAMIC_CLASS( MyFrame, wxFrame ) BEGIN_EVENT_TABLE(MyFrame,wxFrame) EVT_MENU (ID_ABOUT, MyFrame::OnAbout) EVT_MENU (ID_QUIT, MyFrame::OnQuit) + EVT_SIZE (MyFrame::OnSize) END_EVENT_TABLE() MyFrame::MyFrame(void) : @@ -145,7 +146,11 @@ MyFrame::MyFrame(void) : SetMenuBar( menu_bar ); - m_canvas = new MyCanvas( this, -1, wxPoint(2,62), wxSize(300-4,120-4) ); + CreateStatusBar(2); + int widths[] = { -1, 100 }; + SetStatusWidths( 2, widths ); + + m_canvas = new MyCanvas( this, -1, wxPoint(0,0), wxSize(10,10) ); m_canvas->SetScrollbars( 10, 10, 50, 50 ); } @@ -159,6 +164,13 @@ void MyFrame::OnAbout( wxCommandEvent &WXUNUSED(event) ) (void) wxMessageBox( "wxImage demo\nRobert Roebling (c) 1998", "About wxImage Demo", wxOK ); } +void MyFrame::OnSize( wxSizeEvent &WXUNUSED(event) ) +{ + int w,h; + GetClientSize( &w, &h ); + m_canvas->SetSize( w, h ); +} + //----------------------------------------------------------------------------- // MyApp //-----------------------------------------------------------------------------