X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/592cae95a5087a35aead611b0db64e0136262f2a..2c92065fad2d108203f8ff1cb8f1033f1901d698:/contrib/samples/deprecated/resource/resource.cpp diff --git a/contrib/samples/deprecated/resource/resource.cpp b/contrib/samples/deprecated/resource/resource.cpp index 548f4ae8ac..7d0bb7b9c8 100644 --- a/contrib/samples/deprecated/resource/resource.cpp +++ b/contrib/samples/deprecated/resource/resource.cpp @@ -9,10 +9,6 @@ // Licence: wxWindows license ///////////////////////////////////////////////////////////////////////////// -#ifdef __GNUG__ -// #pragma implementation -#endif - // For compilers that support precompilation, includes "wx/wx.h". #include "wx/wxprec.h" @@ -41,7 +37,7 @@ // If we wanted to demonstrate total platform independence, // then we'd use the dynamic file loading form for all platforms. -// But this shows how to embed the wxWindows resources +// But this shows how to embed the wxWidgets resources // in the program code/executable for UNIX and Windows // platforms. @@ -103,12 +99,14 @@ bool MyApp::OnInit(void) #endif // Create the main frame window - frame = new MyFrame( (wxFrame *) NULL, -1, - wxT("wxWindows Resource Sample"), - wxPoint(-1, -1), wxSize(300, 250) ); + frame = new MyFrame( (wxFrame *) NULL, wxID_ANY, + wxT("wxWidgets Resource Sample"), + wxDefaultPosition, wxSize(300, 250) ); +#if wxUSE_STATUSBAR // Give it a status line frame->CreateStatusBar(2); +#endif // wxUSE_STATUSBAR wxMenuBar *menu_bar = wxResourceCreateMenuBar(wxT("menu1")); @@ -116,13 +114,13 @@ bool MyApp::OnInit(void) frame->SetMenuBar(menu_bar); // Make a panel - frame->panel = new MyPanel( frame, -1, wxPoint(0, 0), wxSize(400, 400), + frame->panel = new MyPanel( frame, wxID_ANY, wxPoint(0, 0), wxSize(400, 400), 0, wxT("MyMainFrame") ); - frame->Show(TRUE); + frame->Show(true); SetTopWindow(frame); - return TRUE; + return true; } MyApp::~MyApp() @@ -172,14 +170,14 @@ MyFrame::MyFrame void MyFrame::OnAbout( wxCommandEvent& WXUNUSED(event) ) { - wxMessageBox(wxT("wxWindows resource sample.\n") - wxT("(c) Julian Smart"), wxT("About wxWindows sample"), + wxMessageBox(wxT("wxWidgets resource sample.\n") + wxT("(c) Julian Smart"), wxT("About wxWidgets sample"), wxICON_INFORMATION | wxOK); } void MyFrame::OnQuit( wxCommandEvent& WXUNUSED(event) ) { - Close(TRUE); + Close(true); } void MyFrame::OnTestDialog(wxCommandEvent& WXUNUSED(event) ) @@ -191,13 +189,13 @@ void MyFrame::OnTestDialog(wxCommandEvent& WXUNUSED(event) ) wxTextCtrl *text = (wxTextCtrl *)wxFindWindowByName(wxT("multitext3"), dialog); if (text) { - text->SetValue(wxT("wxWindows resource demo")); + text->SetValue(wxT("wxWidgets resource demo")); } dialog->ShowModal(); } - dialog->Close(TRUE); + dialog->Close(true); } BEGIN_EVENT_TABLE(MyDialog, wxDialog)