]>
Commit | Line | Data |
---|---|---|
af1337b0 JS |
1 | //----------------------------------------------------------------------------- |
2 | // Name: myframe.h | |
3 | // Purpose: XML resources sample: A derived frame, called MyFrame | |
4 | // Author: Robert O'Connor (rob@medicalmnemonics.com), Vaclav Slavik | |
5 | // RCS-ID: $Id$ | |
6 | // Copyright: (c) Robert O'Connor and Vaclav Slavik | |
7 | // Licence: wxWindows licence | |
8 | //----------------------------------------------------------------------------- | |
9 | ||
10 | //----------------------------------------------------------------------------- | |
11 | // Begin single inclusion of this .h file condition | |
12 | //----------------------------------------------------------------------------- | |
13 | ||
14 | #ifndef _MYFRAME_H_ | |
15 | #define _MYFRAME_H_ | |
16 | ||
17 | //----------------------------------------------------------------------------- | |
18 | // GCC interface | |
19 | //----------------------------------------------------------------------------- | |
20 | ||
ab7ce33c | 21 | #if defined(__GNUG__) && !defined(__APPLE__) |
af1337b0 JS |
22 | #pragma interface "myframe.h" |
23 | #endif | |
24 | ||
25 | //----------------------------------------------------------------------------- | |
26 | // Headers | |
27 | //----------------------------------------------------------------------------- | |
28 | ||
29 | #include "wx/frame.h" | |
30 | ||
31 | //----------------------------------------------------------------------------- | |
32 | // Class definition: MyFrame | |
33 | //----------------------------------------------------------------------------- | |
34 | ||
35 | // Define a new frame type: this is going to be our main frame | |
36 | class MyFrame : public wxFrame | |
37 | { | |
38 | ||
39 | public: | |
40 | ||
41 | // Constructor. | |
42 | MyFrame( wxWindow* parent=(wxWindow *)NULL); | |
43 | ||
f80ea77b | 44 | private: |
af1337b0 JS |
45 | |
46 | // Event handlers (these functions should _not_ be virtual) | |
47 | void OnExitToolOrMenuCommand(wxCommandEvent& event); | |
48 | void OnAboutToolOrMenuCommand(wxCommandEvent& event); | |
49 | void OnNonDerivedDialogToolOrMenuCommand(wxCommandEvent& event); | |
50 | void OnDerivedDialogToolOrMenuCommand(wxCommandEvent& event); | |
51 | void OnControlsToolOrMenuCommand(wxCommandEvent& event); | |
f80ea77b | 52 | void OnUncenteredToolOrMenuCommand(wxCommandEvent& event); |
af1337b0 JS |
53 | void OnCustomClassToolOrMenuCommand(wxCommandEvent& event); |
54 | void OnPlatformPropertyToolOrMenuCommand(wxCommandEvent& event); | |
55 | void OnArtProviderToolOrMenuCommand(wxCommandEvent& event); | |
56 | void OnVariableExpansionToolOrMenuCommand(wxCommandEvent& event); | |
57 | ||
be5a51fb | 58 | // Any class wishing to process wxWidgets events must use this macro |
af1337b0 JS |
59 | DECLARE_EVENT_TABLE() |
60 | ||
61 | }; | |
62 | ||
63 | //----------------------------------------------------------------------------- | |
64 | // End single inclusion of this .h file condition | |
65 | //----------------------------------------------------------------------------- | |
66 | ||
67 | #endif // _MYFRAME_H_ |