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