#include "dialoged.h"
+#if !wxUSE_PROPSHEET
+#error Please set wxUSE_PROPSHEET to 1 in setup.h.
+#endif
+
IMPLEMENT_APP(MyApp)
+BEGIN_EVENT_TABLE(MyApp, wxApp)
+END_EVENT_TABLE()
+
MyApp::MyApp(void)
{
}
{
theResourceManager = new wxResourceManager;
theResourceManager->Initialize();
-
+
theResourceManager->ShowResourceEditor(TRUE);
-
+
if (argc > 1)
theResourceManager->Load(argv[1]);
-
+
SetTopWindow(theResourceManager->GetEditorFrame());
-
+
return TRUE;
}