]> git.saurik.com Git - wxWidgets.git/blame - docs/doxygen/overviews/app.h
Mention wxString caching in UTF-8 ode
[wxWidgets.git] / docs / doxygen / overviews / app.h
CommitLineData
15b6757b 1/////////////////////////////////////////////////////////////////////////////
e0a47918 2// Name: app.h
15b6757b
FM
3// Purpose: topic overview
4// Author: wxWidgets team
5// RCS-ID: $Id$
6// Licence: wxWindows license
7/////////////////////////////////////////////////////////////////////////////
8
880efa2a 9/**
36c9828f 10
032e27aa 11@page overview_app wxApp Overview
36c9828f 12
032e27aa 13Classes: wxApp
98ba1eee 14
032e27aa
BP
15@li @ref overview_app_intro
16@li @ref overview_app_shutdown
98ba1eee
FM
17
18
032e27aa 19<hr>
98ba1eee
FM
20
21
032e27aa 22@section overview_app_intro Introduction
30738aae 23
032e27aa
BP
24A wxWidgets application does not have a @e main procedure; the equivalent is
25the wxApp::OnInit member defined for a class derived from wxApp.
26
27@e OnInit will usually create a top window as a bare minimum. Unlike in earlier
28versions of wxWidgets, OnInit does not return a frame. Instead it returns a
29boolean value which indicates whether processing should continue (@true) or not
30(@false). You call wxApp::SetTopWindow to let wxWidgets know about the top
31window.
32
33Note that the program's command line arguments, represented by @e argc and
34@e argv, are available from within wxApp member functions.
35
36An application closes by destroying all windows. Because all frames must be
37destroyed for the application to exit, it is advisable to use parent frames
38wherever possible when creating new frames, so that deleting the top level
39frame will automatically delete child frames. The alternative is to explicitly
40delete child frames in the top-level frame's wxCloseEvent handler.
41
42In emergencies the wxExit function can be called to kill the application
43however normally the application shuts down automatically, see
44@ref overview_app_shutdown.
45
46An example of defining an application follows:
47
48@code
49class DerivedApp : public wxApp
50{
51public:
52 virtual bool OnInit();
53};
54
55IMPLEMENT_APP(DerivedApp)
56
57bool DerivedApp::OnInit()
58{
59 wxFrame *the_frame = new wxFrame(NULL, ID_MYFRAME, argv[0]);
60 ...
61 the_frame->Show(true);
62 SetTopWindow(the_frame);
63
64 return true;
65}
66@endcode
67
68Note the use of IMPLEMENT_APP(appClass), which allows wxWidgets to dynamically
69create an instance of the application object at the appropriate point in
70wxWidgets initialization. Previous versions of wxWidgets used to rely on the
71creation of a global application object, but this is no longer recommended,
72because required global initialization may not have been performed at
73application object construction time.
74
75You can also use DECLARE_APP(appClass) in a header file to declare the wxGetApp
76function which returns a reference to the application object. Otherwise you can
77only use the global @c wxTheApp pointer which is of type @c wxApp*.
78
79
80@section overview_app_shutdown Application Shutdown
81
82The application normally shuts down when the last of its top level windows is
83closed. This is normally the expected behaviour and means that it is enough to
84call wxWindow::Close() in response to the "Exit" menu command if your program
85has a single top level window. If this behaviour is not desirable
86wxApp::SetExitOnFrameDelete can be called to change it.
87
88Note that such logic doesn't apply for the windows shown before the program
89enters the main loop: in other words, you can safely show a dialog from
90wxApp::OnInit and not be afraid that your application terminates when this
91dialog -- which is the last top level window for the moment -- is closed.
92
93Another aspect of the application shutdown is wxApp::OnExit which is called
94when the application exits but @e before wxWidgets cleans up its internal
95structures. You should delete all wxWidgets object that you created by the time
96OnExit finishes.
97
98In particular, do @b not destroy them from application class' destructor! For
99example, this code may crash:
100
101@code
102class MyApp : public wxApp
103{
104public:
105 wxCHMHelpController m_helpCtrl;
106 ...
107};
108@endcode
109
110The reason for that is that @c m_helpCtrl is a member object and is thus
111destroyed from MyApp destructor. But MyApp object is deleted after wxWidgets
112structures that wxCHMHelpController depends on were uninitialized! The solution
113is to destroy HelpCtrl in @e OnExit:
114
115@code
116class MyApp : public wxApp
117{
118public:
119 wxCHMHelpController *m_helpCtrl;
120 ...
121};
122
123bool MyApp::OnInit()
124{
125 ...
126 m_helpCtrl = new wxCHMHelpController;
127 ...
128}
129
130int MyApp::OnExit()
131{
132 delete m_helpCtrl;
133 return 0;
134}
135@endcode
36c9828f 136
e0a47918 137*/
36c9828f 138