]>
Commit | Line | Data |
---|---|---|
1 | // Name: dialoged.cpp | |
2 | // Purpose: Main Dialog Editor implementation file | |
3 | // Author: Julian Smart | |
4 | // Modified by: | |
5 | // Created: 04/01/98 | |
6 | // RCS-ID: $Id$ | |
7 | // Copyright: (c) Julian Smart | |
8 | // Licence: wxWindows license | |
9 | ///////////////////////////////////////////////////////////////////////////// | |
10 | ||
11 | #ifdef __GNUG__ | |
12 | #pragma implementation "dialoged.h" | |
13 | #endif | |
14 | ||
15 | // For compilers that support precompilation, includes "wx/wx.h". | |
16 | #include "wx/wxprec.h" | |
17 | ||
18 | #ifdef __BORLANDC__ | |
19 | #pragma hdrstop | |
20 | #endif | |
21 | ||
22 | #ifndef WX_PRECOMP | |
23 | #include "wx/wx.h" | |
24 | #endif | |
25 | ||
26 | #include "dialoged.h" | |
27 | ||
28 | #if !wxUSE_PROPSHEET | |
29 | #error Please set wxUSE_PROPSHEET to 1 in setup.h. | |
30 | #endif | |
31 | ||
32 | IMPLEMENT_APP(MyApp) | |
33 | ||
34 | BEGIN_EVENT_TABLE(MyApp, wxApp) | |
35 | END_EVENT_TABLE() | |
36 | ||
37 | MyApp::MyApp(void) | |
38 | { | |
39 | } | |
40 | ||
41 | wxResourceManager *theResourceManager = NULL; | |
42 | ||
43 | #include "symbtabl.h" | |
44 | ||
45 | bool MyApp::OnInit(void) | |
46 | { | |
47 | theResourceManager = new wxResourceManager; | |
48 | theResourceManager->Initialize(); | |
49 | ||
50 | theResourceManager->ShowResourceEditor(TRUE); | |
51 | ||
52 | if (argc > 1) | |
53 | theResourceManager->Load(argv[1]); | |
54 | ||
55 | SetTopWindow(theResourceManager->GetEditorFrame()); | |
56 | ||
57 | return TRUE; | |
58 | } | |
59 | ||
60 | int MyApp::OnExit(void) | |
61 | { | |
62 | delete theResourceManager; | |
63 | theResourceManager = NULL; | |
64 | return 0; | |
65 | } |