1 /////////////////////////////////////////////////////////////////////////////
2 // Name: common/appcmn.cpp
3 // Purpose: wxAppConsole and wxAppBase methods common to all platforms
4 // Author: Vadim Zeitlin
8 // Copyright: (c) Vadim Zeitlin
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ---------------------------------------------------------------------------
18 // ---------------------------------------------------------------------------
20 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
21 #pragma implementation "appbase.h"
24 // For compilers that support precompilation, includes "wx.h".
25 #include "wx/wxprec.h"
27 #if defined(__BORLANDC__)
33 #include "wx/bitmap.h"
37 #include "wx/msgdlg.h"
38 #include "wx/bitmap.h"
39 #include "wx/confbase.h"
42 #include "wx/apptrait.h"
43 #include "wx/cmdline.h"
44 #include "wx/evtloop.h"
45 #include "wx/msgout.h"
46 #include "wx/thread.h"
48 #include "wx/ptr_scpd.h"
49 #include "wx/prntbase.h"
51 #if defined(__WXMSW__) && !defined(__PALMOS__)
52 #include "wx/msw/private.h" // includes windows.h for LOGFONT
56 #include "wx/fontmap.h"
57 #endif // wxUSE_FONTMAP
59 // DLL options compatibility check:
61 WX_CHECK_BUILD_OPTIONS("wxCore")
64 // ----------------------------------------------------------------------------
66 // ----------------------------------------------------------------------------
68 // this defines wxEventLoopPtr
69 wxDEFINE_TIED_SCOPED_PTR_TYPE(wxEventLoop
);
71 // ============================================================================
72 // wxAppBase implementation
73 // ============================================================================
75 // ----------------------------------------------------------------------------
77 // ----------------------------------------------------------------------------
79 wxAppBase::wxAppBase()
81 m_topWindow
= (wxWindow
*)NULL
;
82 m_useBestVisual
= false;
85 #if wxUSE_EVTLOOP_IN_APP
87 #endif // wxUSE_EVTLOOP_IN_APP
89 // We don't want to exit the app if the user code shows a dialog from its
90 // OnInit() -- but this is what would happen if we set m_exitOnFrameDelete
91 // to Yes initially as this dialog would be the last top level window.
92 // OTOH, if we set it to No initially we'll have to overwrite it with Yes
93 // when we enter our OnRun() because we do want the default behaviour from
94 // then on. But this would be a problem if the user code calls
95 // SetExitOnFrameDelete(false) from OnInit().
97 // So we use the special "Later" value which is such that
98 // GetExitOnFrameDelete() returns false for it but which we know we can
99 // safely (i.e. without losing the effect of the users SetExitOnFrameDelete
100 // call) overwrite in OnRun()
101 m_exitOnFrameDelete
= Later
;
104 bool wxAppBase::Initialize(int& argc
, wxChar
**argv
)
106 if ( !wxAppConsole::Initialize(argc
, argv
) )
110 wxPendingEventsLocker
= new wxCriticalSection
;
113 wxInitializeStockLists();
114 wxInitializeStockObjects();
116 wxBitmap::InitStandardHandlers();
121 // ----------------------------------------------------------------------------
123 // ----------------------------------------------------------------------------
125 wxAppBase::~wxAppBase()
127 // this destructor is required for Darwin
130 void wxAppBase::CleanUp()
132 // clean up all the pending objects
133 DeletePendingObjects();
135 // and any remaining TLWs (they remove themselves from wxTopLevelWindows
136 // when destroyed, so iterate until none are left)
137 while ( !wxTopLevelWindows
.empty() )
139 // do not use Destroy() here as it only puts the TLW in pending list
140 // but we want to delete them now
141 delete wxTopLevelWindows
.GetFirst()->GetData();
144 wxPrintFactory::SetPrintFactory( NULL
);
146 // undo everything we did in Initialize() above
147 wxBitmap::CleanUpHandlers();
149 wxDeleteStockObjects();
151 wxDeleteStockLists();
153 delete wxTheColourDatabase
;
154 wxTheColourDatabase
= NULL
;
156 delete wxPendingEvents
;
157 wxPendingEvents
= NULL
;
160 delete wxPendingEventsLocker
;
161 wxPendingEventsLocker
= NULL
;
164 // If we don't do the following, we get an apparent memory leak.
165 ((wxEvtHandler
&) wxDefaultValidator
).ClearEventLocker();
166 #endif // wxUSE_VALIDATORS
167 #endif // wxUSE_THREADS
170 #if wxUSE_CMDLINE_PARSER
172 // ----------------------------------------------------------------------------
173 // GUI-specific command line options handling
174 // ----------------------------------------------------------------------------
176 #define OPTION_THEME _T("theme")
177 #define OPTION_MODE _T("mode")
179 void wxAppBase::OnInitCmdLine(wxCmdLineParser
& parser
)
181 // first add the standard non GUI options
182 wxAppConsole::OnInitCmdLine(parser
);
184 // the standard command line options
185 static const wxCmdLineEntryDesc cmdLineGUIDesc
[] =
187 #ifdef __WXUNIVERSAL__
192 gettext_noop("specify the theme to use"),
193 wxCMD_LINE_VAL_STRING
,
196 #endif // __WXUNIVERSAL__
198 #if defined(__WXMGL__)
199 // VS: this is not specific to wxMGL, all fullscreen (framebuffer) ports
200 // should provide this option. That's why it is in common/appcmn.cpp
201 // and not mgl/app.cpp
206 gettext_noop("specify display mode to use (e.g. 640x480-16)"),
207 wxCMD_LINE_VAL_STRING
,
223 parser
.SetDesc(cmdLineGUIDesc
);
226 bool wxAppBase::OnCmdLineParsed(wxCmdLineParser
& parser
)
228 #ifdef __WXUNIVERSAL__
230 if ( parser
.Found(OPTION_THEME
, &themeName
) )
232 wxTheme
*theme
= wxTheme::Create(themeName
);
235 wxLogError(_("Unsupported theme '%s'."), themeName
.c_str());
239 // Delete the defaultly created theme and set the new theme.
240 delete wxTheme::Get();
243 #endif // __WXUNIVERSAL__
245 #if defined(__WXMGL__)
247 if ( parser
.Found(OPTION_MODE
, &modeDesc
) )
250 if ( wxSscanf(modeDesc
.c_str(), _T("%ux%u-%u"), &w
, &h
, &bpp
) != 3 )
252 wxLogError(_("Invalid display mode specification '%s'."), modeDesc
.c_str());
256 if ( !SetDisplayMode(wxVideoMode(w
, h
, bpp
)) )
261 return wxAppConsole::OnCmdLineParsed(parser
);
264 #endif // wxUSE_CMDLINE_PARSER
266 // ----------------------------------------------------------------------------
267 // main event loop implementation
268 // ----------------------------------------------------------------------------
270 int wxAppBase::MainLoop()
272 #if wxUSE_EVTLOOP_IN_APP
273 wxEventLoopTiedPtr
mainLoop(&m_mainLoop
, new wxEventLoop
);
275 return m_mainLoop
->Run();
276 #else // !wxUSE_EVTLOOP_IN_APP
278 #endif // wxUSE_EVTLOOP_IN_APP/!wxUSE_EVTLOOP_IN_APP
281 void wxAppBase::ExitMainLoop()
283 #if wxUSE_EVTLOOP_IN_APP
284 // we should exit from the main event loop, not just any currently active
285 // (e.g. modal dialog) event loop
286 if ( m_mainLoop
&& m_mainLoop
->IsRunning() )
290 #endif // wxUSE_EVTLOOP_IN_APP
293 bool wxAppBase::Pending()
295 #if wxUSE_EVTLOOP_IN_APP
296 // use the currently active message loop here, not m_mainLoop, because if
297 // we're showing a modal dialog (with its own event loop) currently the
298 // main event loop is not running anyhow
299 wxEventLoop
* const loop
= wxEventLoop::GetActive();
301 return loop
&& loop
->Pending();
302 #else // wxUSE_EVTLOOP_IN_APP
304 #endif // wxUSE_EVTLOOP_IN_APP/!wxUSE_EVTLOOP_IN_APP
307 bool wxAppBase::Dispatch()
309 #if wxUSE_EVTLOOP_IN_APP
310 // see comment in Pending()
311 wxEventLoop
* const loop
= wxEventLoop::GetActive();
313 return loop
&& loop
->Dispatch();
314 #else // wxUSE_EVTLOOP_IN_APP
316 #endif // wxUSE_EVTLOOP_IN_APP/!wxUSE_EVTLOOP_IN_APP
319 // ----------------------------------------------------------------------------
321 // ----------------------------------------------------------------------------
323 bool wxAppBase::OnInitGui()
325 #ifdef __WXUNIVERSAL__
326 if ( !wxTheme::Get() && !wxTheme::CreateDefault() )
328 #endif // __WXUNIVERSAL__
333 int wxAppBase::OnRun()
335 // see the comment in ctor: if the initial value hasn't been changed, use
336 // the default Yes from now on
337 if ( m_exitOnFrameDelete
== Later
)
339 m_exitOnFrameDelete
= Yes
;
341 //else: it has been changed, assume the user knows what he is doing
346 int wxAppBase::OnExit()
348 #ifdef __WXUNIVERSAL__
349 delete wxTheme::Set(NULL
);
350 #endif // __WXUNIVERSAL__
352 return wxAppConsole::OnExit();
355 void wxAppBase::Exit()
360 wxAppTraits
*wxAppBase::CreateTraits()
362 return new wxGUIAppTraits
;
365 // ----------------------------------------------------------------------------
367 // ----------------------------------------------------------------------------
369 void wxAppBase::SetActive(bool active
, wxWindow
* WXUNUSED(lastFocus
))
371 if ( active
== m_isActive
)
376 wxActivateEvent
event(wxEVT_ACTIVATE_APP
, active
);
377 event
.SetEventObject(this);
379 (void)ProcessEvent(event
);
382 void wxAppBase::DeletePendingObjects()
384 wxList::compatibility_iterator node
= wxPendingDelete
.GetFirst();
387 wxObject
*obj
= node
->GetData();
391 if (wxPendingDelete
.Member(obj
))
392 wxPendingDelete
.Erase(node
);
394 // Deleting one object may have deleted other pending
395 // objects, so start from beginning of list again.
396 node
= wxPendingDelete
.GetFirst();
400 // Returns true if more time is needed.
401 bool wxAppBase::ProcessIdle()
404 bool needMore
= false;
405 wxWindowList::compatibility_iterator node
= wxTopLevelWindows
.GetFirst();
408 wxWindow
* win
= node
->GetData();
409 if (SendIdleEvents(win
, event
))
411 node
= node
->GetNext();
414 event
.SetEventObject(this);
415 (void) ProcessEvent(event
);
416 if (event
.MoreRequested())
419 wxUpdateUIEvent::ResetUpdateTime();
424 // Send idle event to window and all subwindows
425 bool wxAppBase::SendIdleEvents(wxWindow
* win
, wxIdleEvent
& event
)
427 bool needMore
= false;
429 win
->OnInternalIdle();
431 if (wxIdleEvent::CanSend(win
))
433 event
.SetEventObject(win
);
434 win
->GetEventHandler()->ProcessEvent(event
);
436 if (event
.MoreRequested())
439 wxWindowList::compatibility_iterator node
= win
->GetChildren().GetFirst();
442 wxWindow
*child
= node
->GetData();
443 if (SendIdleEvents(child
, event
))
446 node
= node
->GetNext();
452 void wxAppBase::OnIdle(wxIdleEvent
& WXUNUSED(event
))
454 // If there are pending events, we must process them: pending events
455 // are either events to the threads other than main or events posted
456 // with wxPostEvent() functions
457 // GRG: I have moved this here so that all pending events are processed
458 // before starting to delete any objects. This behaves better (in
459 // particular, wrt wxPostEvent) and is coherent with wxGTK's current
460 // behaviour. Changed Feb/2000 before 2.1.14
461 ProcessPendingEvents();
463 // 'Garbage' collection of windows deleted with Close().
464 DeletePendingObjects();
467 // flush the logged messages if any
468 wxLog::FlushActive();
473 // ----------------------------------------------------------------------------
474 // wxGUIAppTraitsBase
475 // ----------------------------------------------------------------------------
479 wxLog
*wxGUIAppTraitsBase::CreateLogTarget()
484 // wem ust have something!
485 return new wxLogStderr
;
491 wxMessageOutput
*wxGUIAppTraitsBase::CreateMessageOutput()
493 // The standard way of printing help on command line arguments (app --help)
494 // is (according to common practice):
495 // - console apps: to stderr (on any platform)
496 // - GUI apps: stderr on Unix platforms (!)
497 // message box under Windows and others
499 return new wxMessageOutputStderr
;
501 // wxMessageOutputMessageBox doesn't work under Motif
503 return new wxMessageOutputLog
;
505 return new wxMessageOutputMessageBox
;
507 #endif // __UNIX__/!__UNIX__
512 wxFontMapper
*wxGUIAppTraitsBase::CreateFontMapper()
514 return new wxFontMapper
;
517 #endif // wxUSE_FONTMAP
519 wxRendererNative
*wxGUIAppTraitsBase::CreateRenderer()
521 // use the default native renderer by default
527 bool wxGUIAppTraitsBase::ShowAssertDialog(const wxString
& msg
)
529 // under MSW we prefer to use the base class version using ::MessageBox()
530 // even if wxMessageBox() is available because it has less chances to
531 // double fault our app than our wxMessageBox()
532 #if defined(__WXMSW__) || !wxUSE_MSGDLG
533 return wxAppTraitsBase::ShowAssertDialog(msg
);
534 #else // wxUSE_MSGDLG
535 // this message is intentionally not translated -- it is for
537 wxString
msgDlg(msg
);
538 msgDlg
+= wxT("\nDo you want to stop the program?\n")
539 wxT("You can also choose [Cancel] to suppress ")
540 wxT("further warnings.");
542 switch ( wxMessageBox(msgDlg
, wxT("wxWidgets Debug Alert"),
543 wxYES_NO
| wxCANCEL
| wxICON_STOP
) )
553 //case wxNO: nothing to do
557 #endif // !wxUSE_MSGDLG/wxUSE_MSGDLG
560 #endif // __WXDEBUG__
562 bool wxGUIAppTraitsBase::HasStderr()
564 // we consider that under Unix stderr always goes somewhere, even if the
565 // user doesn't always see it under GUI desktops
573 void wxGUIAppTraitsBase::ScheduleForDestroy(wxObject
*object
)
575 if ( !wxPendingDelete
.Member(object
) )
576 wxPendingDelete
.Append(object
);
579 void wxGUIAppTraitsBase::RemoveFromPendingDelete(wxObject
*object
)
581 wxPendingDelete
.DeleteObject(object
);
586 #if defined(__UNIX__) || defined(__DARWIN__) || defined(__OS2__)
587 #include "wx/unix/gsockunx.h"
588 #elif defined(__WINDOWS__)
589 #include "wx/msw/gsockmsw.h"
590 #elif defined(__WXMAC__)
591 #include <MacHeaders.c>
592 #define OTUNIXERRORS 1
593 #include <OpenTransport.h>
594 #include <OpenTransportProviders.h>
595 #include <OpenTptInternet.h>
597 #include "wx/mac/gsockmac.h"
599 #error "Must include correct GSocket header here"
602 GSocketGUIFunctionsTable
* wxGUIAppTraitsBase::GetSocketGUIFunctionsTable()
604 #if defined(__WXMAC__) && !defined(__DARWIN__)
605 // NB: wxMac CFM does not have any GUI-specific functions in gsocket.c and
606 // so it doesn't need this table at all
608 #else // !__WXMAC__ || __DARWIN__
609 static GSocketGUIFunctionsTableConcrete table
;
611 #endif // !__WXMAC__ || __DARWIN__