]> git.saurik.com Git - wxWidgets.git/blame - samples/xrc/xrcdemo.cpp
simplify the code for extended flags handling fixing a rare bug with wxSTAY_ON_TOP...
[wxWidgets.git] / samples / xrc / xrcdemo.cpp
CommitLineData
af1337b0
JS
1//-----------------------------------------------------------------------------
2// Name: xrcdemo.cpp
3// Purpose: XML resources sample: Main application file
4// Author: Robert O'Connor (rob@medicalmnemonics.com), Vaclav Slavik
64d452a8 5// RCS-ID: $Id$
af1337b0 6// Copyright: (c) Robert O'Connor and Vaclav Slavik
64d452a8 7// Licence: wxWindows licence
af1337b0 8//-----------------------------------------------------------------------------
64d452a8 9
af1337b0 10//-----------------------------------------------------------------------------
be5a51fb 11// Standard wxWidgets headers
af1337b0
JS
12//-----------------------------------------------------------------------------
13
64d452a8
VS
14// For compilers that support precompilation, includes "wx/wx.h".
15#include "wx/wxprec.h"
16
17#ifdef __BORLANDC__
18 #pragma hdrstop
19#endif
20
af1337b0 21// For all others, include the necessary headers (this file is usually all you
be5a51fb 22// need because it includes almost all "standard" wxWidgets headers)
64d452a8
VS
23#ifndef WX_PRECOMP
24 #include "wx/wx.h"
64d452a8
VS
25#endif
26
af1337b0
JS
27//-----------------------------------------------------------------------------
28// Header of this .cpp file
29//-----------------------------------------------------------------------------
64d452a8 30
af1337b0 31#include "xrcdemo.h"
64d452a8 32
af1337b0 33//-----------------------------------------------------------------------------
23bc3597 34// Remaining headers: Needed wx headers, then wx/contrib headers, then app one
af1337b0 35//-----------------------------------------------------------------------------
64d452a8 36
af1337b0
JS
37#include "wx/image.h" // wxImage
38
23bc3597 39#include "wx/xrc/xmlres.h" // XRC XML resources
af1337b0 40
23bc3597 41#include "wx/cshelp.h" // wxSimpleHelpProvider for helptext
af1337b0
JS
42
43#include "myframe.h"
44
45//-----------------------------------------------------------------------------
be5a51fb 46// wxWidgets macro: Declare the application.
af1337b0 47//-----------------------------------------------------------------------------
64d452a8 48
be5a51fb 49// Create a new application object: this macro will allow wxWidgets to create
64d452a8
VS
50// the application object during program execution (it's better than using a
51// static object for many reasons) and also declares the accessor function
af1337b0
JS
52// wxGetApp() which will return the reference of the right type (i.e. the_app and
53// not wxApp).
64d452a8
VS
54IMPLEMENT_APP(MyApp)
55
af1337b0
JS
56//-----------------------------------------------------------------------------
57// Public methods
58//-----------------------------------------------------------------------------
64d452a8
VS
59
60// 'Main program' equivalent: the program execution "starts" here
61bool MyApp::OnInit()
62{
45e6e6f8
VZ
63 if ( !wxApp::OnInit() )
64 return false;
65
af1337b0
JS
66 // If there is any of a certain format of image in the xrcs, then first
67 // load a handler for that image type. This example uses XPMs, but if
68 // you want PNGs, then add a PNG handler, etc. See wxImage::AddHandler()
69 // documentation for the types of image handlers available.
70 wxImage::AddHandler(new wxXPMHandler);
f80ea77b 71
af1337b0
JS
72 // Initialize all the XRC handlers. Always required (unless you feel like
73 // going through and initializing a handler of each control type you will
74 // be using (ie initialize the spinctrl handler, initialize the textctrl
75 // handler). However, if you are only using a few control types, it will
76 // save some space to only initialize the ones you will be using. See
77 // wxXRC docs for details.
f80ea77b
WS
78 wxXmlResource::Get()->InitAllHandlers();
79
af1337b0 80 // Load all of the XRC files that will be used. You can put everything
f80ea77b
WS
81 // into one giant XRC file if you wanted, but then they become more
82 // diffcult to manage, and harder to reuse in later projects.
af1337b0 83 // The menubar
885a9fe9
VZ
84 if (!wxXmlResource::Get()->Load(wxT("rc/menu.xrc")))
85 return false;
86
af1337b0 87 // The toolbar
885a9fe9
VZ
88 if (!wxXmlResource::Get()->Load(wxT("rc/toolbar.xrc")))
89 return false;
90
af1337b0 91 // Non-derived dialog example
885a9fe9
VZ
92 if (!wxXmlResource::Get()->Load(wxT("rc/basicdlg.xrc")))
93 return false;
94
af1337b0 95 // Derived dialog example
885a9fe9
VZ
96 if (!wxXmlResource::Get()->Load(wxT("rc/derivdlg.xrc")))
97 return false;
98
af1337b0 99 // Controls property example
885a9fe9
VZ
100 if (!wxXmlResource::Get()->Load(wxT("rc/controls.xrc")))
101 return false;
102
af1337b0 103 // Frame example
885a9fe9
VZ
104 if (!wxXmlResource::Get()->Load(wxT("rc/frame.xrc")))
105 return false;
106
af1337b0 107 // Uncentered example
885a9fe9
VZ
108 if (!wxXmlResource::Get()->Load(wxT("rc/uncenter.xrc")))
109 return false;
110
af1337b0 111 // Custom class example
885a9fe9
VZ
112 if (!wxXmlResource::Get()->Load(wxT("rc/custclas.xrc")))
113 return false;
114
af1337b0 115 // wxArtProvider example
885a9fe9
VZ
116 if (!wxXmlResource::Get()->Load(wxT("rc/artprov.xrc")))
117 return false;
118
af1337b0 119 // Platform property example
885a9fe9
VZ
120 if (!wxXmlResource::Get()->Load(wxT("rc/platform.xrc")))
121 return false;
122
af1337b0 123 // Variable expansion example
885a9fe9
VZ
124 if (!wxXmlResource::Get()->Load(wxT("rc/variable.xrc")))
125 return false;
126
af1337b0 127
23bc3597
VZ
128#if wxUSE_HELP
129 // Use the simple help provider to show the context-sensitive help
130 wxHelpProvider::Set( new wxSimpleHelpProvider );
131#endif // wxUSE_HELP
132
f80ea77b 133 // Make an instance of your derived frame. Passing NULL (the default value
2148dc99
VZ
134 // of MyFrame's constructor is NULL) as the frame doesn't have a parent
135 // since it is the main application window.
af1337b0 136 MyFrame *frame = new MyFrame();
f80ea77b 137
2148dc99 138 // Show the frame as it's created initially hidden.
f80ea77b
WS
139 frame->Show(true);
140
141 // Return true to tell program to continue (false would terminate).
142 return true;
64d452a8
VS
143}
144