use a common m_isInsideYield flag instead of static booleans in all ports; add a...
[wxWidgets.git] / src / common / appcmn.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/common/appcmn.cpp
3 // Purpose: wxAppBase methods common to all platforms
4 // Author: Vadim Zeitlin
5 // Modified by:
6 // Created: 18.10.99
7 // RCS-ID: $Id$
8 // Copyright: (c) Vadim Zeitlin
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
11
12 // ============================================================================
13 // declarations
14 // ============================================================================
15
16 // ---------------------------------------------------------------------------
17 // headers
18 // ---------------------------------------------------------------------------
19
20 // For compilers that support precompilation, includes "wx.h".
21 #include "wx/wxprec.h"
22
23 #if defined(__BORLANDC__)
24 #pragma hdrstop
25 #endif
26
27 #ifndef WX_PRECOMP
28 #include "wx/app.h"
29 #include "wx/window.h"
30 #include "wx/bitmap.h"
31 #include "wx/log.h"
32 #include "wx/msgdlg.h"
33 #include "wx/confbase.h"
34 #include "wx/utils.h"
35 #include "wx/wxcrtvararg.h"
36 #endif
37
38 #include "wx/apptrait.h"
39 #include "wx/cmdline.h"
40 #include "wx/msgout.h"
41 #include "wx/thread.h"
42 #include "wx/vidmode.h"
43
44 #ifdef __WXDEBUG__
45 #if wxUSE_STACKWALKER
46 #include "wx/stackwalk.h"
47 #endif // wxUSE_STACKWALKER
48 #endif // __WXDEBUG__
49
50 #if defined(__WXMSW__)
51 #include "wx/msw/private.h" // includes windows.h for LOGFONT
52 #endif
53
54 #if wxUSE_FONTMAP
55 #include "wx/fontmap.h"
56 #endif // wxUSE_FONTMAP
57
58 // DLL options compatibility check:
59 #include "wx/build.h"
60 WX_CHECK_BUILD_OPTIONS("wxCore")
61
62 WXDLLIMPEXP_DATA_CORE(wxList) wxPendingDelete;
63
64 // ============================================================================
65 // wxAppBase implementation
66 // ============================================================================
67
68 // ----------------------------------------------------------------------------
69 // initialization
70 // ----------------------------------------------------------------------------
71
72 wxAppBase::wxAppBase()
73 {
74 m_topWindow = (wxWindow *)NULL;
75
76 m_useBestVisual = false;
77 m_forceTrueColour = false;
78
79 m_isActive = true;
80
81 m_isInsideYield = false;
82
83 // We don't want to exit the app if the user code shows a dialog from its
84 // OnInit() -- but this is what would happen if we set m_exitOnFrameDelete
85 // to Yes initially as this dialog would be the last top level window.
86 // OTOH, if we set it to No initially we'll have to overwrite it with Yes
87 // when we enter our OnRun() because we do want the default behaviour from
88 // then on. But this would be a problem if the user code calls
89 // SetExitOnFrameDelete(false) from OnInit().
90 //
91 // So we use the special "Later" value which is such that
92 // GetExitOnFrameDelete() returns false for it but which we know we can
93 // safely (i.e. without losing the effect of the users SetExitOnFrameDelete
94 // call) overwrite in OnRun()
95 m_exitOnFrameDelete = Later;
96 }
97
98 bool wxAppBase::Initialize(int& argcOrig, wxChar **argvOrig)
99 {
100 if ( !wxAppConsole::Initialize(argcOrig, argvOrig) )
101 return false;
102
103 wxInitializeStockLists();
104
105 wxBitmap::InitStandardHandlers();
106
107 return true;
108 }
109
110 // ----------------------------------------------------------------------------
111 // cleanup
112 // ----------------------------------------------------------------------------
113
114 wxAppBase::~wxAppBase()
115 {
116 // this destructor is required for Darwin
117 }
118
119 void wxAppBase::CleanUp()
120 {
121 // clean up all the pending objects
122 DeletePendingObjects();
123
124 // and any remaining TLWs (they remove themselves from wxTopLevelWindows
125 // when destroyed, so iterate until none are left)
126 while ( !wxTopLevelWindows.empty() )
127 {
128 // do not use Destroy() here as it only puts the TLW in pending list
129 // but we want to delete them now
130 delete wxTopLevelWindows.GetFirst()->GetData();
131 }
132
133 // undo everything we did in Initialize() above
134 wxBitmap::CleanUpHandlers();
135
136 wxStockGDI::DeleteAll();
137
138 wxDeleteStockLists();
139
140 delete wxTheColourDatabase;
141 wxTheColourDatabase = NULL;
142
143 wxAppConsole::CleanUp();
144 }
145
146 // ----------------------------------------------------------------------------
147 // various accessors
148 // ----------------------------------------------------------------------------
149
150 wxWindow* wxAppBase::GetTopWindow() const
151 {
152 wxWindow* window = m_topWindow;
153 if (window == NULL && wxTopLevelWindows.GetCount() > 0)
154 window = wxTopLevelWindows.GetFirst()->GetData();
155 return window;
156 }
157
158 wxVideoMode wxAppBase::GetDisplayMode() const
159 {
160 return wxVideoMode();
161 }
162
163 wxLayoutDirection wxAppBase::GetLayoutDirection() const
164 {
165 #if wxUSE_INTL
166 const wxLocale *const locale = wxGetLocale();
167 if ( locale )
168 {
169 const wxLanguageInfo *const
170 info = wxLocale::GetLanguageInfo(locale->GetLanguage());
171
172 if ( info )
173 return info->LayoutDirection;
174 }
175 #endif // wxUSE_INTL
176
177 // we don't know
178 return wxLayout_Default;
179 }
180
181 #if wxUSE_CMDLINE_PARSER
182
183 // ----------------------------------------------------------------------------
184 // GUI-specific command line options handling
185 // ----------------------------------------------------------------------------
186
187 #define OPTION_THEME "theme"
188 #define OPTION_MODE "mode"
189
190 void wxAppBase::OnInitCmdLine(wxCmdLineParser& parser)
191 {
192 // first add the standard non GUI options
193 wxAppConsole::OnInitCmdLine(parser);
194
195 // the standard command line options
196 static const wxCmdLineEntryDesc cmdLineGUIDesc[] =
197 {
198 #ifdef __WXUNIVERSAL__
199 {
200 wxCMD_LINE_OPTION,
201 NULL,
202 OPTION_THEME,
203 gettext_noop("specify the theme to use"),
204 wxCMD_LINE_VAL_STRING,
205 0x0
206 },
207 #endif // __WXUNIVERSAL__
208
209 #if defined(__WXMGL__)
210 // VS: this is not specific to wxMGL, all fullscreen (framebuffer) ports
211 // should provide this option. That's why it is in common/appcmn.cpp
212 // and not mgl/app.cpp
213 {
214 wxCMD_LINE_OPTION,
215 NULL,
216 OPTION_MODE,
217 gettext_noop("specify display mode to use (e.g. 640x480-16)"),
218 wxCMD_LINE_VAL_STRING,
219 0x0
220 },
221 #endif // __WXMGL__
222
223 // terminator
224 wxCMD_LINE_DESC_END
225 };
226
227 parser.SetDesc(cmdLineGUIDesc);
228 }
229
230 bool wxAppBase::OnCmdLineParsed(wxCmdLineParser& parser)
231 {
232 #ifdef __WXUNIVERSAL__
233 wxString themeName;
234 if ( parser.Found(OPTION_THEME, &themeName) )
235 {
236 wxTheme *theme = wxTheme::Create(themeName);
237 if ( !theme )
238 {
239 wxLogError(_("Unsupported theme '%s'."), themeName.c_str());
240 return false;
241 }
242
243 // Delete the defaultly created theme and set the new theme.
244 delete wxTheme::Get();
245 wxTheme::Set(theme);
246 }
247 #endif // __WXUNIVERSAL__
248
249 #if defined(__WXMGL__)
250 wxString modeDesc;
251 if ( parser.Found(OPTION_MODE, &modeDesc) )
252 {
253 unsigned w, h, bpp;
254 if ( wxSscanf(modeDesc.c_str(), _T("%ux%u-%u"), &w, &h, &bpp) != 3 )
255 {
256 wxLogError(_("Invalid display mode specification '%s'."), modeDesc.c_str());
257 return false;
258 }
259
260 if ( !SetDisplayMode(wxVideoMode(w, h, bpp)) )
261 return false;
262 }
263 #endif // __WXMGL__
264
265 return wxAppConsole::OnCmdLineParsed(parser);
266 }
267
268 #endif // wxUSE_CMDLINE_PARSER
269
270 // ----------------------------------------------------------------------------
271 // OnXXX() hooks
272 // ----------------------------------------------------------------------------
273
274 bool wxAppBase::OnInitGui()
275 {
276 #ifdef __WXUNIVERSAL__
277 if ( !wxTheme::Get() && !wxTheme::CreateDefault() )
278 return false;
279 #endif // __WXUNIVERSAL__
280
281 return true;
282 }
283
284 int wxAppBase::OnRun()
285 {
286 // see the comment in ctor: if the initial value hasn't been changed, use
287 // the default Yes from now on
288 if ( m_exitOnFrameDelete == Later )
289 {
290 m_exitOnFrameDelete = Yes;
291 }
292 //else: it has been changed, assume the user knows what he is doing
293
294 return wxAppConsole::OnRun();
295 }
296
297 int wxAppBase::OnExit()
298 {
299 #ifdef __WXUNIVERSAL__
300 delete wxTheme::Set(NULL);
301 #endif // __WXUNIVERSAL__
302
303 return wxAppConsole::OnExit();
304 }
305
306 wxAppTraits *wxAppBase::CreateTraits()
307 {
308 return new wxGUIAppTraits;
309 }
310
311 // ----------------------------------------------------------------------------
312 // misc
313 // ----------------------------------------------------------------------------
314
315 void wxAppBase::SetActive(bool active, wxWindow * WXUNUSED(lastFocus))
316 {
317 if ( active == m_isActive )
318 return;
319
320 m_isActive = active;
321
322 wxActivateEvent event(wxEVT_ACTIVATE_APP, active);
323 event.SetEventObject(this);
324
325 (void)ProcessEvent(event);
326 }
327
328 // ----------------------------------------------------------------------------
329 // idle handling
330 // ----------------------------------------------------------------------------
331
332 void wxAppBase::DeletePendingObjects()
333 {
334 wxList::compatibility_iterator node = wxPendingDelete.GetFirst();
335 while (node)
336 {
337 wxObject *obj = node->GetData();
338
339 // remove it from the list first so that if we get back here somehow
340 // during the object deletion (e.g. wxYield called from its dtor) we
341 // wouldn't try to delete it the second time
342 if ( wxPendingDelete.Member(obj) )
343 wxPendingDelete.Erase(node);
344
345 delete obj;
346
347 // Deleting one object may have deleted other pending
348 // objects, so start from beginning of list again.
349 node = wxPendingDelete.GetFirst();
350 }
351 }
352
353 // Returns true if more time is needed.
354 bool wxAppBase::ProcessIdle()
355 {
356 // process pending wx events before sending idle events
357 ProcessPendingEvents();
358
359 wxIdleEvent event;
360 bool needMore = false;
361 wxWindowList::compatibility_iterator node = wxTopLevelWindows.GetFirst();
362 while (node)
363 {
364 wxWindow* win = node->GetData();
365 if (SendIdleEvents(win, event))
366 needMore = true;
367 node = node->GetNext();
368 }
369
370 if (wxAppConsole::ProcessIdle())
371 needMore = true;
372
373 // 'Garbage' collection of windows deleted with Close().
374 DeletePendingObjects();
375
376 #if wxUSE_LOG
377 // flush the logged messages if any
378 wxLog::FlushActive();
379 #endif
380
381 wxUpdateUIEvent::ResetUpdateTime();
382
383 return needMore;
384 }
385
386 // Send idle event to window and all subwindows
387 bool wxAppBase::SendIdleEvents(wxWindow* win, wxIdleEvent& event)
388 {
389 bool needMore = false;
390
391 win->OnInternalIdle();
392
393 // should we send idle event to this window?
394 if ( wxIdleEvent::GetMode() == wxIDLE_PROCESS_ALL ||
395 win->HasExtraStyle(wxWS_EX_PROCESS_IDLE) )
396 {
397 event.SetEventObject(win);
398 win->HandleWindowEvent(event);
399
400 if (event.MoreRequested())
401 needMore = true;
402 }
403 wxWindowList::compatibility_iterator node = win->GetChildren().GetFirst();
404 while ( node )
405 {
406 wxWindow *child = node->GetData();
407 if (SendIdleEvents(child, event))
408 needMore = true;
409
410 node = node->GetNext();
411 }
412
413 return needMore;
414 }
415
416 // ----------------------------------------------------------------------------
417 // wxGUIAppTraitsBase
418 // ----------------------------------------------------------------------------
419
420 #if wxUSE_LOG
421
422 wxLog *wxGUIAppTraitsBase::CreateLogTarget()
423 {
424 #if wxUSE_LOGGUI
425 return new wxLogGui;
426 #else
427 // we must have something!
428 return new wxLogStderr;
429 #endif
430 }
431
432 #endif // wxUSE_LOG
433
434 wxMessageOutput *wxGUIAppTraitsBase::CreateMessageOutput()
435 {
436 // The standard way of printing help on command line arguments (app --help)
437 // is (according to common practice):
438 // - console apps: to stderr (on any platform)
439 // - GUI apps: stderr on Unix platforms (!)
440 // stderr if available and message box otherwise on others
441 // (currently stderr only Windows if app running from console)
442 #ifdef __UNIX__
443 return new wxMessageOutputStderr;
444 #else // !__UNIX__
445 // wxMessageOutputMessageBox doesn't work under Motif
446 #ifdef __WXMOTIF__
447 return new wxMessageOutputLog;
448 #elif wxUSE_MSGDLG
449 return new wxMessageOutputBest(wxMSGOUT_PREFER_STDERR);
450 #else
451 return new wxMessageOutputStderr;
452 #endif
453 #endif // __UNIX__/!__UNIX__
454 }
455
456 #if wxUSE_FONTMAP
457
458 wxFontMapper *wxGUIAppTraitsBase::CreateFontMapper()
459 {
460 return new wxFontMapper;
461 }
462
463 #endif // wxUSE_FONTMAP
464
465 wxRendererNative *wxGUIAppTraitsBase::CreateRenderer()
466 {
467 // use the default native renderer by default
468 return NULL;
469 }
470
471 #ifdef __WXDEBUG__
472
473 bool wxGUIAppTraitsBase::ShowAssertDialog(const wxString& msg)
474 {
475 // under MSW we prefer to use the base class version using ::MessageBox()
476 // even if wxMessageBox() is available because it has less chances to
477 // double fault our app than our wxMessageBox()
478 //
479 // under DFB the message dialog is not always functional right now
480 //
481 // and finally we can't use wxMessageBox() if it wasn't compiled in, of
482 // course
483 #if defined(__WXMSW__) || defined(__WXDFB__) || !wxUSE_MSGDLG
484 return wxAppTraitsBase::ShowAssertDialog(msg);
485 #else // wxUSE_MSGDLG
486 wxString msgDlg = msg;
487
488 #if wxUSE_STACKWALKER
489 // on Unix stack frame generation may take some time, depending on the
490 // size of the executable mainly... warn the user that we are working
491 wxFprintf(stderr, wxT("[Debug] Generating a stack trace... please wait"));
492 fflush(stderr);
493
494 const wxString stackTrace = GetAssertStackTrace();
495 if ( !stackTrace.empty() )
496 msgDlg << _T("\n\nCall stack:\n") << stackTrace;
497 #endif // wxUSE_STACKWALKER
498
499 // this message is intentionally not translated -- it is for
500 // developpers only
501 msgDlg += wxT("\nDo you want to stop the program?\n")
502 wxT("You can also choose [Cancel] to suppress ")
503 wxT("further warnings.");
504
505 switch ( wxMessageBox(msgDlg, wxT("wxWidgets Debug Alert"),
506 wxYES_NO | wxCANCEL | wxICON_STOP ) )
507 {
508 case wxYES:
509 wxTrap();
510 break;
511
512 case wxCANCEL:
513 // no more asserts
514 return true;
515
516 //case wxNO: nothing to do
517 }
518
519 return false;
520 #endif // !wxUSE_MSGDLG/wxUSE_MSGDLG
521 }
522
523 #endif // __WXDEBUG__
524
525 bool wxGUIAppTraitsBase::HasStderr()
526 {
527 // we consider that under Unix stderr always goes somewhere, even if the
528 // user doesn't always see it under GUI desktops
529 #ifdef __UNIX__
530 return true;
531 #else
532 return false;
533 #endif
534 }
535
536 void wxGUIAppTraitsBase::ScheduleForDestroy(wxObject *object)
537 {
538 if ( !wxPendingDelete.Member(object) )
539 wxPendingDelete.Append(object);
540 }
541
542 void wxGUIAppTraitsBase::RemoveFromPendingDelete(wxObject *object)
543 {
544 wxPendingDelete.DeleteObject(object);
545 }
546