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"
50 #if defined(__WXMSW__)
51 #include "wx/msw/private.h" // includes windows.h for LOGFONT
55 #include "wx/fontmap.h"
56 #endif // wxUSE_FONTMAP
58 // DLL options compatibility check:
60 WX_CHECK_BUILD_OPTIONS("wxCore")
63 // ----------------------------------------------------------------------------
65 // ----------------------------------------------------------------------------
67 // this defines wxEventLoopPtr
68 wxDEFINE_TIED_SCOPED_PTR_TYPE(wxEventLoop
);
70 // ============================================================================
71 // wxAppBase implementation
72 // ============================================================================
74 // ----------------------------------------------------------------------------
76 // ----------------------------------------------------------------------------
78 wxAppBase::wxAppBase()
80 m_topWindow
= (wxWindow
*)NULL
;
81 m_useBestVisual
= FALSE
;
84 #if wxUSE_EVTLOOP_IN_APP
86 #endif // wxUSE_EVTLOOP_IN_APP
88 // We don't want to exit the app if the user code shows a dialog from its
89 // OnInit() -- but this is what would happen if we set m_exitOnFrameDelete
90 // to Yes initially as this dialog would be the last top level window.
91 // OTOH, if we set it to No initially we'll have to overwrite it with Yes
92 // when we enter our OnRun() because we do want the default behaviour from
93 // then on. But this would be a problem if the user code calls
94 // SetExitOnFrameDelete(FALSE) from OnInit().
96 // So we use the special "Later" value which is such that
97 // GetExitOnFrameDelete() returns FALSE for it but which we know we can
98 // safely (i.e. without losing the effect of the users SetExitOnFrameDelete
99 // call) overwrite in OnRun()
100 m_exitOnFrameDelete
= Later
;
103 bool wxAppBase::Initialize(int& argc
, wxChar
**argv
)
105 if ( !wxAppConsole::Initialize(argc
, argv
) )
109 wxPendingEventsLocker
= new wxCriticalSection
;
112 wxInitializeStockLists();
113 wxInitializeStockObjects();
115 wxBitmap::InitStandardHandlers();
120 // ----------------------------------------------------------------------------
122 // ----------------------------------------------------------------------------
124 wxAppBase::~wxAppBase()
126 // this destructor is required for Darwin
129 void wxAppBase::CleanUp()
131 // one last chance for pending objects to be cleaned up
132 DeletePendingObjects();
134 wxBitmap::CleanUpHandlers();
136 wxDeleteStockObjects();
138 wxDeleteStockLists();
140 delete wxTheColourDatabase
;
141 wxTheColourDatabase
= NULL
;
143 delete wxPendingEvents
;
144 wxPendingEvents
= NULL
;
147 delete wxPendingEventsLocker
;
148 wxPendingEventsLocker
= NULL
;
151 // If we don't do the following, we get an apparent memory leak.
152 ((wxEvtHandler
&) wxDefaultValidator
).ClearEventLocker();
153 #endif // wxUSE_VALIDATORS
154 #endif // wxUSE_THREADS
157 #if wxUSE_CMDLINE_PARSER
159 // ----------------------------------------------------------------------------
160 // GUI-specific command line options handling
161 // ----------------------------------------------------------------------------
163 #define OPTION_THEME _T("theme")
164 #define OPTION_MODE _T("mode")
166 void wxAppBase::OnInitCmdLine(wxCmdLineParser
& parser
)
168 // first add the standard non GUI options
169 wxAppConsole::OnInitCmdLine(parser
);
171 // the standard command line options
172 static const wxCmdLineEntryDesc cmdLineGUIDesc
[] =
174 #ifdef __WXUNIVERSAL__
179 gettext_noop("specify the theme to use"),
180 wxCMD_LINE_VAL_STRING
,
183 #endif // __WXUNIVERSAL__
185 #if defined(__WXMGL__)
186 // VS: this is not specific to wxMGL, all fullscreen (framebuffer) ports
187 // should provide this option. That's why it is in common/appcmn.cpp
188 // and not mgl/app.cpp
193 gettext_noop("specify display mode to use (e.g. 640x480-16)"),
194 wxCMD_LINE_VAL_STRING
,
210 parser
.SetDesc(cmdLineGUIDesc
);
213 bool wxAppBase::OnCmdLineParsed(wxCmdLineParser
& parser
)
215 #ifdef __WXUNIVERSAL__
217 if ( parser
.Found(OPTION_THEME
, &themeName
) )
219 wxTheme
*theme
= wxTheme::Create(themeName
);
222 wxLogError(_("Unsupported theme '%s'."), themeName
.c_str());
226 // Delete the defaultly created theme and set the new theme.
227 delete wxTheme::Get();
230 #endif // __WXUNIVERSAL__
232 #if defined(__WXMGL__)
234 if ( parser
.Found(OPTION_MODE
, &modeDesc
) )
237 if ( wxSscanf(modeDesc
.c_str(), _T("%ux%u-%u"), &w
, &h
, &bpp
) != 3 )
239 wxLogError(_("Invalid display mode specification '%s'."), modeDesc
.c_str());
243 if ( !SetDisplayMode(wxVideoMode(w
, h
, bpp
)) )
248 return wxAppConsole::OnCmdLineParsed(parser
);
251 #endif // wxUSE_CMDLINE_PARSER
253 // ----------------------------------------------------------------------------
254 // main event loop implementation
255 // ----------------------------------------------------------------------------
257 int wxAppBase::MainLoop()
259 #if wxUSE_EVTLOOP_IN_APP
260 wxEventLoopTiedPtr
mainLoop(&m_mainLoop
, new wxEventLoop
);
262 return m_mainLoop
->Run();
263 #else // !wxUSE_EVTLOOP_IN_APP
265 #endif // wxUSE_EVTLOOP_IN_APP/!wxUSE_EVTLOOP_IN_APP
268 void wxAppBase::ExitMainLoop()
270 #if wxUSE_EVTLOOP_IN_APP
271 // we should exit from the main event loop, not just any currently active
272 // (e.g. modal dialog) event loop
273 if ( m_mainLoop
&& m_mainLoop
->IsRunning() )
277 #endif // wxUSE_EVTLOOP_IN_APP
280 bool wxAppBase::Pending()
282 #if wxUSE_EVTLOOP_IN_APP
283 // use the currently active message loop here, not m_mainLoop, because if
284 // we're showing a modal dialog (with its own event loop) currently the
285 // main event loop is not running anyhow
286 wxEventLoop
* const loop
= wxEventLoop::GetActive();
288 return loop
&& loop
->Pending();
289 #else // wxUSE_EVTLOOP_IN_APP
291 #endif // wxUSE_EVTLOOP_IN_APP/!wxUSE_EVTLOOP_IN_APP
294 bool wxAppBase::Dispatch()
296 #if wxUSE_EVTLOOP_IN_APP
297 // see comment in Pending()
298 wxEventLoop
* const loop
= wxEventLoop::GetActive();
300 return loop
&& loop
->Dispatch();
301 #else // wxUSE_EVTLOOP_IN_APP
303 #endif // wxUSE_EVTLOOP_IN_APP/!wxUSE_EVTLOOP_IN_APP
306 // ----------------------------------------------------------------------------
308 // ----------------------------------------------------------------------------
310 bool wxAppBase::OnInitGui()
312 #ifdef __WXUNIVERSAL__
313 if ( !wxTheme::Get() && !wxTheme::CreateDefault() )
315 #endif // __WXUNIVERSAL__
320 int wxAppBase::OnRun()
322 // see the comment in ctor: if the initial value hasn't been changed, use
323 // the default Yes from now on
324 if ( m_exitOnFrameDelete
== Later
)
326 m_exitOnFrameDelete
= Yes
;
328 //else: it has been changed, assume the user knows what he is doing
333 int wxAppBase::OnExit()
335 #ifdef __WXUNIVERSAL__
336 delete wxTheme::Set(NULL
);
337 #endif // __WXUNIVERSAL__
339 return wxAppConsole::OnExit();
342 void wxAppBase::Exit()
347 wxAppTraits
*wxAppBase::CreateTraits()
349 return new wxGUIAppTraits
;
352 // ----------------------------------------------------------------------------
354 // ----------------------------------------------------------------------------
356 void wxAppBase::SetActive(bool active
, wxWindow
* WXUNUSED(lastFocus
))
358 if ( active
== m_isActive
)
363 wxActivateEvent
event(wxEVT_ACTIVATE_APP
, active
);
364 event
.SetEventObject(this);
366 (void)ProcessEvent(event
);
369 void wxAppBase::DeletePendingObjects()
371 wxList::compatibility_iterator node
= wxPendingDelete
.GetFirst();
374 wxObject
*obj
= node
->GetData();
378 if (wxPendingDelete
.Member(obj
))
379 wxPendingDelete
.Erase(node
);
381 // Deleting one object may have deleted other pending
382 // objects, so start from beginning of list again.
383 node
= wxPendingDelete
.GetFirst();
387 // Returns TRUE if more time is needed.
388 bool wxAppBase::ProcessIdle()
391 bool needMore
= FALSE
;
392 wxWindowList::compatibility_iterator node
= wxTopLevelWindows
.GetFirst();
395 wxWindow
* win
= node
->GetData();
396 if (SendIdleEvents(win
, event
))
398 node
= node
->GetNext();
401 event
.SetEventObject(this);
402 (void) ProcessEvent(event
);
403 if (event
.MoreRequested())
406 wxUpdateUIEvent::ResetUpdateTime();
411 // Send idle event to window and all subwindows
412 bool wxAppBase::SendIdleEvents(wxWindow
* win
, wxIdleEvent
& event
)
414 bool needMore
= FALSE
;
416 win
->OnInternalIdle();
418 if (wxIdleEvent::CanSend(win
))
420 event
.SetEventObject(win
);
421 win
->GetEventHandler()->ProcessEvent(event
);
423 if (event
.MoreRequested())
426 wxWindowList::compatibility_iterator node
= win
->GetChildren().GetFirst();
429 wxWindow
*child
= node
->GetData();
430 if (SendIdleEvents(child
, event
))
433 node
= node
->GetNext();
439 void wxAppBase::OnIdle(wxIdleEvent
& WXUNUSED(event
))
441 // If there are pending events, we must process them: pending events
442 // are either events to the threads other than main or events posted
443 // with wxPostEvent() functions
444 // GRG: I have moved this here so that all pending events are processed
445 // before starting to delete any objects. This behaves better (in
446 // particular, wrt wxPostEvent) and is coherent with wxGTK's current
447 // behaviour. Changed Feb/2000 before 2.1.14
448 ProcessPendingEvents();
450 // 'Garbage' collection of windows deleted with Close().
451 DeletePendingObjects();
454 // flush the logged messages if any
455 wxLog::FlushActive();
460 // ----------------------------------------------------------------------------
461 // wxGUIAppTraitsBase
462 // ----------------------------------------------------------------------------
466 wxLog
*wxGUIAppTraitsBase::CreateLogTarget()
471 // wem ust have something!
472 return new wxLogStderr
;
478 wxMessageOutput
*wxGUIAppTraitsBase::CreateMessageOutput()
480 // The standard way of printing help on command line arguments (app --help)
481 // is (according to common practice):
482 // - console apps: to stderr (on any platform)
483 // - GUI apps: stderr on Unix platforms (!)
484 // message box under Windows and others
486 return new wxMessageOutputStderr
;
488 // wxMessageOutputMessageBox doesn't work under Motif
490 return new wxMessageOutputLog
;
492 return new wxMessageOutputMessageBox
;
494 #endif // __UNIX__/!__UNIX__
499 wxFontMapper
*wxGUIAppTraitsBase::CreateFontMapper()
501 return new wxFontMapper
;
504 #endif // wxUSE_FONTMAP
506 wxRendererNative
*wxGUIAppTraitsBase::CreateRenderer()
508 // use the default native renderer by default
514 bool wxGUIAppTraitsBase::ShowAssertDialog(const wxString
& msg
)
516 // under MSW we prefer to use the base class version using ::MessageBox()
517 // even if wxMessageBox() is available because it has less chances to
518 // double fault our app than our wxMessageBox()
519 #if defined(__WXMSW__) || !wxUSE_MSGDLG
520 return wxAppTraitsBase::ShowAssertDialog(msg
);
521 #else // wxUSE_MSGDLG
522 // this message is intentionally not translated -- it is for
524 wxString
msgDlg(msg
);
525 msgDlg
+= wxT("\nDo you want to stop the program?\n")
526 wxT("You can also choose [Cancel] to suppress ")
527 wxT("further warnings.");
529 switch ( wxMessageBox(msgDlg
, wxT("wxWindows Debug Alert"),
530 wxYES_NO
| wxCANCEL
| wxICON_STOP
) )
540 //case wxNO: nothing to do
544 #endif // !wxUSE_MSGDLG/wxUSE_MSGDLG
547 #endif // __WXDEBUG__
549 bool wxGUIAppTraitsBase::HasStderr()
551 // we consider that under Unix stderr always goes somewhere, even if the
552 // user doesn't always see it under GUI desktops
560 void wxGUIAppTraitsBase::ScheduleForDestroy(wxObject
*object
)
562 if ( !wxPendingDelete
.Member(object
) )
563 wxPendingDelete
.Append(object
);
566 void wxGUIAppTraitsBase::RemoveFromPendingDelete(wxObject
*object
)
568 wxPendingDelete
.DeleteObject(object
);
573 #if defined(__UNIX__) || defined(__DARWIN__) || defined(__OS2__)
574 #include "wx/unix/gsockunx.h"
575 #elif defined(__WINDOWS__)
576 #include "wx/msw/gsockmsw.h"
577 #elif defined(__WXMAC__)
578 #include <MacHeaders.c>
579 #define OTUNIXERRORS 1
580 #include <OpenTransport.h>
581 #include <OpenTransportProviders.h>
582 #include <OpenTptInternet.h>
584 #include "wx/mac/gsockmac.h"
586 #error "Must include correct GSocket header here"
589 GSocketGUIFunctionsTable
* wxGUIAppTraitsBase::GetSocketGUIFunctionsTable()
591 #if defined(__WXMAC__) && !defined(__DARWIN__)
592 // NB: wxMac CFM does not have any GUI-specific functions in gsocket.c and
593 // so it doesn't need this table at all
595 #else // !__WXMAC__ || __DARWIN__
596 static GSocketGUIFunctionsTable table
=
599 _GSocket_GUI_Cleanup
,
600 _GSocket_GUI_Init_Socket
,
601 _GSocket_GUI_Destroy_Socket
,
603 _GSocket_Install_Callback
,
604 _GSocket_Uninstall_Callback
,
606 _GSocket_Enable_Events
,
607 _GSocket_Disable_Events
610 #endif // !__WXMAC__ || __DARWIN__