X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/8833e26cbdc7a8cbbc3b39177d6eac5a813555d2..65baafba0e8cd74f2264b7e2f7625ff5bea84864:/contrib/samples/fl/fl_demo1.h diff --git a/contrib/samples/fl/fl_demo1.h b/contrib/samples/fl/fl_demo1.h index 2a1bc1eb06..79626d5338 100644 --- a/contrib/samples/fl/fl_demo1.h +++ b/contrib/samples/fl/fl_demo1.h @@ -12,43 +12,39 @@ #ifndef __NEW_TEST_G__ #define __NEW_TEST_G__ -#if defined(__GNUG__) && !defined(__APPLE__) -#pragma interface "fl_demo1.h" -#endif - #define NEW_TEST_SAVE 1101 #define NEW_TEST_LOAD 1102 #define NEW_TEST_EXIT 1103 #include "wx/panel.h" -#include "wx/statline.h" +#include "wx/statline.h" // Define a new application type class MyApp: public wxApp -{ +{ public: bool OnInit(void); }; // Define a new frame type class MyFrame: public wxFrame -{ +{ public: wxFrameLayout* mpLayout; wxTextCtrl* mpClientWnd; - + wxTextCtrl* CreateTextCtrl( const wxString& value ); - + public: MyFrame(wxFrame *frame); virtual ~MyFrame(); - + bool OnClose(void) { Show(false); return true; } - + void OnLoad( wxCommandEvent& event ); void OnSave( wxCommandEvent& event ); void OnExit( wxCommandEvent& event ); - + DECLARE_EVENT_TABLE() }; @@ -59,9 +55,9 @@ public: class wxMySeparatorLine : public wxStaticLine { public: - wxMySeparatorLine() + wxMySeparatorLine() {} - wxMySeparatorLine( wxWindow *parent, wxWindowID id) + wxMySeparatorLine( wxWindow *parent, wxWindowID id) : wxStaticLine( parent, id) {}