home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
OS/2 Shareware BBS: 10 Tools
/
10-Tools.zip
/
wxos2240.zip
/
wxWindows-2.4.0
/
contrib
/
utils
/
wxrcedit
/
edapp.cpp
next >
Wrap
C/C++ Source or Header
|
2002-09-07
|
1KB
|
62 lines
/////////////////////////////////////////////////////////////////////////////
// Purpose: XML resources editor
// Author: Vaclav Slavik
// Created: 2000/05/05
// RCS-ID: $Id: edapp.cpp,v 1.6 2002/09/07 12:17:00 GD Exp $
// Copyright: (c) 2000 Vaclav Slavik
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
#if defined(__GNUG__) && !defined(__APPLE__)
#pragma implementation
#pragma interface
#endif
// For compilers that support precompilation, includes "wx/wx.h".
#include "wx/wxprec.h"
#ifdef __BORLANDC__
#pragma hdrstop
#endif
// for all others, include the necessary headers (this file is usually all you
// need because it includes almost all "standard" wxWindows headers
#ifndef WX_PRECOMP
#include "wx/wx.h"
#endif
#include "wx/xrc/xml.h"
#include "wx/image.h"
#include "wx/wx.h"
#include "editor.h"
#include "preview.h"
#include "propframe.h"
// -- Application
class MyApp : public wxApp
{
public:
virtual bool OnInit();
};
IMPLEMENT_APP(MyApp)
bool MyApp::OnInit()
{
SetVendorName(wxT("wxWindows"));
SetAppName(wxT("wxrcedit"));
wxString arg = (argc >= 1) ? argv[1] : "";
wxInitAllImageHandlers();
wxFrame *frame = new EditorFrame(NULL, arg);
SetTopWindow(frame);
frame->Show(TRUE);
PreviewFrame::Get()->Show(TRUE);
PropertiesFrame::Get()->Show(TRUE);
return TRUE;
}