1 /////////////////////////////////////////////////////////////////////////////
2 // Name: common/appcmn.cpp
3 // Purpose: wxAppBase methods common to all platforms
4 // Author: Vadim Zeitlin
8 // Copyright: (c) Vadim Zeitlin
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ---------------------------------------------------------------------------
18 // ---------------------------------------------------------------------------
21 #pragma implementation "appbase.h"
24 // For compilers that support precompilation, includes "wx.h".
25 #include "wx/wxprec.h"
27 #if defined(__BORLANDC__)
36 #include "wx/msgdlg.h"
40 #include "wx/cmdline.h"
41 #include "wx/thread.h"
42 #include "wx/confbase.h"
44 #if !defined(__WXMSW__) || defined(__WXMICROWIN__)
45 #include <signal.h> // for SIGTRAP used by wxTrap()
48 #if defined(__WXMSW__)
49 #include "wx/msw/private.h" // includes windows.h for MessageBox()
52 // ===========================================================================
54 // ===========================================================================
56 // ----------------------------------------------------------------------------
57 // initialization and termination
58 // ----------------------------------------------------------------------------
60 wxAppBase::wxAppBase()
62 wxTheApp
= (wxApp
*)this;
64 // VZ: what's this? is it obsolete?
65 m_wantDebugOutput
= FALSE
;
68 m_topWindow
= (wxWindow
*)NULL
;
69 m_useBestVisual
= FALSE
;
70 m_exitOnFrameDelete
= TRUE
;
76 bool wxAppBase::OnInitGui()
78 #ifdef __WXUNIVERSAL__
79 if ( !wxTheme::Get() && !wxTheme::CreateDefault() )
81 #endif // __WXUNIVERSAL__
87 int wxAppBase::OnExit()
90 // delete the config object if any (don't use Get() here, but Set()
91 // because Get() could create a new config object)
92 delete wxConfigBase::Set((wxConfigBase
*) NULL
);
93 #endif // wxUSE_CONFIG
95 #ifdef __WXUNIVERSAL__
96 delete wxTheme::Set(NULL
);
97 #endif // __WXUNIVERSAL__
102 // ---------------------------------------------------------------------------
104 // ----------------------------------------------------------------------------
106 void wxAppBase::ProcessPendingEvents()
108 // ensure that we're the only thread to modify the pending events list
109 wxENTER_CRIT_SECT( *wxPendingEventsLocker
);
111 if ( !wxPendingEvents
)
113 wxLEAVE_CRIT_SECT( *wxPendingEventsLocker
);
117 // iterate until the list becomes empty
118 wxNode
*node
= wxPendingEvents
->First();
121 wxEvtHandler
*handler
= (wxEvtHandler
*)node
->Data();
124 // In ProcessPendingEvents(), new handlers might be add
125 // and we can safely leave the critical section here.
126 wxLEAVE_CRIT_SECT( *wxPendingEventsLocker
);
127 handler
->ProcessPendingEvents();
128 wxENTER_CRIT_SECT( *wxPendingEventsLocker
);
130 node
= wxPendingEvents
->First();
133 wxLEAVE_CRIT_SECT( *wxPendingEventsLocker
);
136 // ----------------------------------------------------------------------------
138 // ----------------------------------------------------------------------------
142 void wxAppBase::SetActive(bool active
, wxWindow
* WXUNUSED(lastFocus
))
149 // ----------------------------------------------------------------------------
151 // ----------------------------------------------------------------------------
153 bool wxAppBase::OnInit()
155 #if wxUSE_CMDLINE_PARSER
156 wxCmdLineParser
parser(argc
, argv
);
158 OnInitCmdLine(parser
);
161 switch ( parser
.Parse() )
164 cont
= OnCmdLineHelp(parser
);
168 cont
= OnCmdLineParsed(parser
);
172 cont
= OnCmdLineError(parser
);
178 #endif // wxUSE_CMDLINE_PARSER
183 #if wxUSE_CMDLINE_PARSER
185 #define OPTION_VERBOSE _T("verbose")
186 #define OPTION_THEME _T("theme")
188 void wxAppBase::OnInitCmdLine(wxCmdLineParser
& parser
)
190 // the standard command line options
191 static const wxCmdLineEntryDesc cmdLineDesc
[] =
197 gettext_noop("show this help message"),
199 wxCMD_LINE_OPTION_HELP
207 gettext_noop("generate verbose log messages")
211 #ifdef __WXUNIVERSAL__
216 gettext_noop("specify the theme to use"),
217 wxCMD_LINE_VAL_STRING
219 #endif // __WXUNIVERSAL__
225 parser
.SetDesc(cmdLineDesc
);
228 bool wxAppBase::OnCmdLineParsed(wxCmdLineParser
& parser
)
231 if ( parser
.Found(OPTION_VERBOSE
) )
233 wxLog::SetVerbose(TRUE
);
237 #ifdef __WXUNIVERSAL__
239 if ( parser
.Found(OPTION_THEME
, &themeName
) )
241 wxTheme
*theme
= wxTheme::Create(themeName
);
244 wxLogError(_("Unsupported theme '%s'."), themeName
.c_str());
251 #endif // __WXUNIVERSAL__
256 bool wxAppBase::OnCmdLineHelp(wxCmdLineParser
& parser
)
263 bool wxAppBase::OnCmdLineError(wxCmdLineParser
& parser
)
270 #endif // wxUSE_CMDLINE_PARSER
272 // ----------------------------------------------------------------------------
274 // ----------------------------------------------------------------------------
279 bool wxAssertIsEqual(int x
, int y
)
284 // break into the debugger
287 #if defined(__WXMSW__) && !defined(__WXMICROWIN__)
289 #elif defined(__WXMAC__)
295 #elif defined(__UNIX__)
302 // show the assert modal dialog
304 void ShowAssertDialog(const wxChar
*szFile
, int nLine
, const wxChar
*szMsg
)
306 // this variable can be set to true to suppress "assert failure" messages
307 static bool s_bNoAsserts
= FALSE
;
308 static bool s_bInAssert
= FALSE
; // FIXME MT-unsafe
312 // He-e-e-e-elp!! we're trapped in endless loop
324 // make life easier for people using VC++ IDE: clicking on the message
325 // will take us immediately to the place of the failed assert
326 wxSnprintf(szBuf
, WXSIZEOF(szBuf
),
328 wxT("%s(%d): assert failed"),
330 // make the error message more clear for all the others
331 wxT("Assert failed in file %s at line %d"),
337 wxStrcat(szBuf
, wxT(": "));
338 wxStrcat(szBuf
, szMsg
);
340 else // no message given
342 wxStrcat(szBuf
, wxT("."));
347 // send it to the normal log destination
350 #if (wxUSE_GUI && wxUSE_MSGDLG) || defined(__WXMSW__)
351 // this message is intentionally not translated - it is for
353 wxStrcat(szBuf
, wxT("\nDo you want to stop the program?\nYou can also choose [Cancel] to suppress further warnings."));
355 // use the native message box if available: this is more robust than
357 #if defined(__WXMSW__) && !defined(__WXMICROWIN__)
358 switch ( ::MessageBox(NULL
, szBuf
, _T("Debug"),
359 MB_YESNOCANCEL
| MB_ICONSTOP
) )
369 //case IDNO: nothing to do
372 switch ( wxMessageBox(szBuf
, wxT("Debug"),
373 wxYES_NO
| wxCANCEL
| wxICON_STOP
) )
383 //case wxNO: nothing to do
395 // this function is called when an assert fails
396 void wxOnAssert(const wxChar
*szFile
, int nLine
, const wxChar
*szMsg
)
400 // by default, show the assert dialog box - we can't customize this
402 ShowAssertDialog(szFile
, nLine
, szMsg
);
406 // let the app process it as it wants
407 wxTheApp
->OnAssert(szFile
, nLine
, szMsg
);
411 void wxAppBase::OnAssert(const wxChar
*file
, int line
, const wxChar
*msg
)
413 ShowAssertDialog(file
, line
, msg
);