]>
git.saurik.com Git - wxWidgets.git/blob - utils/framelayout/samples/test/fl_test.h
7 // Define a new application type
8 class MyApp
: public wxApp
13 class MyFrame
: public wxFrame
16 wxObjectStorage mStore
;
18 wxFrameLayout
* mpLayout
;
19 wxTextCtrl
* mpClientWnd
;
20 wxPanel
* mpInternalFrm
;
22 wxTextCtrl
* CreateTextCtrl( const wxString
& value
);
25 MyFrame(wxFrame
*frame
);
28 bool OnClose(void) { Show(FALSE
); return TRUE
; }
30 void OnLoad( wxCommandEvent
& event
);
31 void OnSave( wxCommandEvent
& event
);
32 void OnExit( wxCommandEvent
& event
);
37 #define NEW_TEST_SAVE 1101
38 #define NEW_TEST_LOAD 1102
39 #define NEW_TEST_EXIT 1103