Files
wxWidgets/utils/dialoged/src/dialoged.cpp
Julian Smart 2fc9385a2c Removing deprecated classes
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@19898 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2003-03-30 22:47:33 +00:00

71 lines
1.3 KiB
C++

// Name: dialoged.cpp
// Purpose: Main Dialog Editor implementation file
// Author: Julian Smart
// Modified by:
// Created: 04/01/98
// RCS-ID: $Id$
// Copyright: (c) Julian Smart
// Licence: wxWindows license
/////////////////////////////////////////////////////////////////////////////
#ifdef __GNUG__
#pragma implementation "dialoged.h"
#endif
// For compilers that support precompilation, includes "wx/wx.h".
#include "wx/wxprec.h"
#ifdef __BORLANDC__
#pragma hdrstop
#endif
#ifndef WX_PRECOMP
#include "wx/wx.h"
#endif
#include "wx/deprecated/setup.h"
#include "dialoged.h"
#if !wxUSE_PROPSHEET
#error Please set wxUSE_PROPSHEET to 1 in setup.h.
#endif
#if !wxUSE_RESOURCES
#error Please set wxUSE_RESOURCES to 1 in setup.h.
#endif
IMPLEMENT_APP(MyApp)
BEGIN_EVENT_TABLE(MyApp, wxApp)
END_EVENT_TABLE()
MyApp::MyApp(void)
{
}
wxResourceManager *theResourceManager = NULL;
#include "symbtabl.h"
bool MyApp::OnInit(void)
{
theResourceManager = new wxResourceManager;
theResourceManager->Initialize();
theResourceManager->ShowResourceEditor(TRUE);
if (argc > 1)
theResourceManager->Load(argv[1]);
SetTopWindow(theResourceManager->GetEditorFrame());
return TRUE;
}
int MyApp::OnExit(void)
{
delete theResourceManager;
theResourceManager = NULL;
return 0;
}