| 1 | ///////////////////////////////////////////////////////////////////////////// |
| 2 | // Name: dialoged.h |
| 3 | // Purpose: Dialog Editor application header file |
| 4 | // Author: Julian Smart |
| 5 | // Modified by: |
| 6 | // Created: 04/01/98 |
| 7 | // RCS-ID: $Id$ |
| 8 | // Copyright: (c) Julian Smart |
| 9 | // Licence: wxWindows license |
| 10 | ///////////////////////////////////////////////////////////////////////////// |
| 11 | |
| 12 | #ifdef __GNUG__ |
| 13 | #pragma interface "dialoged.h" |
| 14 | #endif |
| 15 | |
| 16 | #ifndef dialogedh |
| 17 | #define dialogedh |
| 18 | |
| 19 | #include "wx/proplist.h" |
| 20 | #include "reseditr.h" |
| 21 | |
| 22 | class MyChild; |
| 23 | |
| 24 | // Define a new application |
| 25 | class MyApp: public wxApp |
| 26 | { |
| 27 | public: |
| 28 | MyApp(void); |
| 29 | bool OnInit(void); |
| 30 | int OnExit(void); |
| 31 | |
| 32 | private: |
| 33 | DECLARE_EVENT_TABLE() |
| 34 | }; |
| 35 | |
| 36 | DECLARE_APP(MyApp) |
| 37 | |
| 38 | extern wxFrame *GetMainFrame(void); |
| 39 | |
| 40 | #endif |