]>
Commit | Line | Data |
---|---|---|
72cdf4c9 | 1 | ///////////////////////////////////////////////////////////////////////////// |
127eab18 | 2 | // Name: src/common/appcmn.cpp |
e2478fde | 3 | // Purpose: wxAppConsole and wxAppBase methods common to all platforms |
72cdf4c9 VZ |
4 | // Author: Vadim Zeitlin |
5 | // Modified by: | |
6 | // Created: 18.10.99 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Vadim Zeitlin | |
65571936 | 9 | // Licence: wxWindows licence |
72cdf4c9 VZ |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
12 | // ============================================================================ | |
13 | // declarations | |
14 | // ============================================================================ | |
15 | ||
16 | // --------------------------------------------------------------------------- | |
17 | // headers | |
18 | // --------------------------------------------------------------------------- | |
19 | ||
72cdf4c9 VZ |
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 | |
8ecff181 | 28 | #include "wx/list.h" |
72cdf4c9 | 29 | #include "wx/app.h" |
b2e972ec | 30 | #include "wx/bitmap.h" |
bf188f1a | 31 | #include "wx/intl.h" |
46446cc2 | 32 | #include "wx/log.h" |
e2478fde | 33 | #include "wx/msgdlg.h" |
b3dfbbc9 MB |
34 | #include "wx/bitmap.h" |
35 | #include "wx/confbase.h" | |
de6185e2 | 36 | #include "wx/utils.h" |
72cdf4c9 VZ |
37 | #endif |
38 | ||
e2478fde | 39 | #include "wx/apptrait.h" |
b913d3ed | 40 | #include "wx/cmdline.h" |
1bf77ee5 | 41 | #include "wx/evtloop.h" |
e2478fde | 42 | #include "wx/msgout.h" |
72cdf4c9 | 43 | #include "wx/thread.h" |
1bf77ee5 | 44 | #include "wx/ptr_scpd.h" |
a5f1fd3e | 45 | |
82ef81ed WS |
46 | #if defined(__WXMSW__) |
47 | #include "wx/msw/private.h" // includes windows.h for LOGFONT | |
1c193821 JS |
48 | #endif |
49 | ||
50 | #if wxUSE_FONTMAP | |
51 | #include "wx/fontmap.h" | |
52 | #endif // wxUSE_FONTMAP | |
53 | ||
34fdf762 VS |
54 | // DLL options compatibility check: |
55 | #include "wx/build.h" | |
56 | WX_CHECK_BUILD_OPTIONS("wxCore") | |
57 | ||
1bf77ee5 VZ |
58 | |
59 | // ---------------------------------------------------------------------------- | |
60 | // wxEventLoopPtr | |
61 | // ---------------------------------------------------------------------------- | |
62 | ||
63 | // this defines wxEventLoopPtr | |
259c43f6 | 64 | wxDEFINE_TIED_SCOPED_PTR_TYPE(wxEventLoop) |
1bf77ee5 | 65 | |
e2478fde VZ |
66 | // ============================================================================ |
67 | // wxAppBase implementation | |
68 | // ============================================================================ | |
d54598dd | 69 | |
bf188f1a | 70 | // ---------------------------------------------------------------------------- |
94826170 | 71 | // initialization |
bf188f1a VZ |
72 | // ---------------------------------------------------------------------------- |
73 | ||
090a6d7a | 74 | wxAppBase::wxAppBase() |
697c5f51 | 75 | { |
1e6feb95 | 76 | m_topWindow = (wxWindow *)NULL; |
4629016d WS |
77 | m_useBestVisual = false; |
78 | m_isActive = true; | |
1cbee0b4 | 79 | |
1bf77ee5 VZ |
80 | m_mainLoop = NULL; |
81 | ||
1cbee0b4 VZ |
82 | // We don't want to exit the app if the user code shows a dialog from its |
83 | // OnInit() -- but this is what would happen if we set m_exitOnFrameDelete | |
84 | // to Yes initially as this dialog would be the last top level window. | |
85 | // OTOH, if we set it to No initially we'll have to overwrite it with Yes | |
86 | // when we enter our OnRun() because we do want the default behaviour from | |
87 | // then on. But this would be a problem if the user code calls | |
4629016d | 88 | // SetExitOnFrameDelete(false) from OnInit(). |
1cbee0b4 VZ |
89 | // |
90 | // So we use the special "Later" value which is such that | |
4629016d | 91 | // GetExitOnFrameDelete() returns false for it but which we know we can |
1cbee0b4 VZ |
92 | // safely (i.e. without losing the effect of the users SetExitOnFrameDelete |
93 | // call) overwrite in OnRun() | |
94 | m_exitOnFrameDelete = Later; | |
1e6feb95 VZ |
95 | } |
96 | ||
a54930e0 | 97 | bool wxAppBase::Initialize(int& argcOrig, wxChar **argvOrig) |
94826170 | 98 | { |
a54930e0 | 99 | if ( !wxAppConsole::Initialize(argcOrig, argvOrig) ) |
94826170 VZ |
100 | return false; |
101 | ||
94826170 VZ |
102 | #if wxUSE_THREADS |
103 | wxPendingEventsLocker = new wxCriticalSection; | |
104 | #endif | |
105 | ||
94826170 | 106 | wxInitializeStockLists(); |
94826170 VZ |
107 | |
108 | wxBitmap::InitStandardHandlers(); | |
109 | ||
110 | return true; | |
111 | } | |
112 | ||
113 | // ---------------------------------------------------------------------------- | |
114 | // cleanup | |
115 | // ---------------------------------------------------------------------------- | |
116 | ||
799ea011 GD |
117 | wxAppBase::~wxAppBase() |
118 | { | |
119 | // this destructor is required for Darwin | |
120 | } | |
121 | ||
94826170 VZ |
122 | void wxAppBase::CleanUp() |
123 | { | |
07460370 | 124 | // clean up all the pending objects |
94826170 VZ |
125 | DeletePendingObjects(); |
126 | ||
07460370 VZ |
127 | // and any remaining TLWs (they remove themselves from wxTopLevelWindows |
128 | // when destroyed, so iterate until none are left) | |
129 | while ( !wxTopLevelWindows.empty() ) | |
130 | { | |
131 | // do not use Destroy() here as it only puts the TLW in pending list | |
132 | // but we want to delete them now | |
133 | delete wxTopLevelWindows.GetFirst()->GetData(); | |
134 | } | |
4055ed82 | 135 | |
07460370 | 136 | // undo everything we did in Initialize() above |
94826170 VZ |
137 | wxBitmap::CleanUpHandlers(); |
138 | ||
f516d986 | 139 | wxStockGDI::DeleteAll(); |
94826170 VZ |
140 | |
141 | wxDeleteStockLists(); | |
142 | ||
143 | delete wxTheColourDatabase; | |
144 | wxTheColourDatabase = NULL; | |
145 | ||
94826170 VZ |
146 | delete wxPendingEvents; |
147 | wxPendingEvents = NULL; | |
148 | ||
c8b1e804 | 149 | #if wxUSE_THREADS |
94826170 VZ |
150 | delete wxPendingEventsLocker; |
151 | wxPendingEventsLocker = NULL; | |
152 | ||
b913d3ed VZ |
153 | #if wxUSE_VALIDATORS |
154 | // If we don't do the following, we get an apparent memory leak. | |
155 | ((wxEvtHandler&) wxDefaultValidator).ClearEventLocker(); | |
156 | #endif // wxUSE_VALIDATORS | |
94826170 VZ |
157 | #endif // wxUSE_THREADS |
158 | } | |
159 | ||
b913d3ed VZ |
160 | #if wxUSE_CMDLINE_PARSER |
161 | ||
162 | // ---------------------------------------------------------------------------- | |
163 | // GUI-specific command line options handling | |
164 | // ---------------------------------------------------------------------------- | |
165 | ||
166 | #define OPTION_THEME _T("theme") | |
167 | #define OPTION_MODE _T("mode") | |
168 | ||
169 | void wxAppBase::OnInitCmdLine(wxCmdLineParser& parser) | |
170 | { | |
9c13e5ef VZ |
171 | // first add the standard non GUI options |
172 | wxAppConsole::OnInitCmdLine(parser); | |
173 | ||
b913d3ed VZ |
174 | // the standard command line options |
175 | static const wxCmdLineEntryDesc cmdLineGUIDesc[] = | |
176 | { | |
177 | #ifdef __WXUNIVERSAL__ | |
178 | { | |
179 | wxCMD_LINE_OPTION, | |
b494c48b | 180 | wxEmptyString, |
b913d3ed VZ |
181 | OPTION_THEME, |
182 | gettext_noop("specify the theme to use"), | |
183 | wxCMD_LINE_VAL_STRING, | |
184 | 0x0 | |
185 | }, | |
186 | #endif // __WXUNIVERSAL__ | |
187 | ||
188 | #if defined(__WXMGL__) | |
189 | // VS: this is not specific to wxMGL, all fullscreen (framebuffer) ports | |
190 | // should provide this option. That's why it is in common/appcmn.cpp | |
191 | // and not mgl/app.cpp | |
192 | { | |
193 | wxCMD_LINE_OPTION, | |
b494c48b | 194 | wxEmptyString, |
b913d3ed VZ |
195 | OPTION_MODE, |
196 | gettext_noop("specify display mode to use (e.g. 640x480-16)"), | |
197 | wxCMD_LINE_VAL_STRING, | |
198 | 0x0 | |
199 | }, | |
200 | #endif // __WXMGL__ | |
201 | ||
202 | // terminator | |
203 | { | |
204 | wxCMD_LINE_NONE, | |
b494c48b WS |
205 | wxEmptyString, |
206 | wxEmptyString, | |
207 | wxEmptyString, | |
b913d3ed VZ |
208 | wxCMD_LINE_VAL_NONE, |
209 | 0x0 | |
210 | } | |
211 | }; | |
212 | ||
213 | parser.SetDesc(cmdLineGUIDesc); | |
214 | } | |
215 | ||
216 | bool wxAppBase::OnCmdLineParsed(wxCmdLineParser& parser) | |
217 | { | |
218 | #ifdef __WXUNIVERSAL__ | |
219 | wxString themeName; | |
220 | if ( parser.Found(OPTION_THEME, &themeName) ) | |
221 | { | |
222 | wxTheme *theme = wxTheme::Create(themeName); | |
223 | if ( !theme ) | |
224 | { | |
225 | wxLogError(_("Unsupported theme '%s'."), themeName.c_str()); | |
4629016d | 226 | return false; |
b913d3ed VZ |
227 | } |
228 | ||
229 | // Delete the defaultly created theme and set the new theme. | |
230 | delete wxTheme::Get(); | |
231 | wxTheme::Set(theme); | |
232 | } | |
233 | #endif // __WXUNIVERSAL__ | |
234 | ||
235 | #if defined(__WXMGL__) | |
236 | wxString modeDesc; | |
237 | if ( parser.Found(OPTION_MODE, &modeDesc) ) | |
238 | { | |
239 | unsigned w, h, bpp; | |
240 | if ( wxSscanf(modeDesc.c_str(), _T("%ux%u-%u"), &w, &h, &bpp) != 3 ) | |
241 | { | |
242 | wxLogError(_("Invalid display mode specification '%s'."), modeDesc.c_str()); | |
4629016d | 243 | return false; |
b913d3ed VZ |
244 | } |
245 | ||
1c53456f | 246 | if ( !SetDisplayMode(wxVideoMode(w, h, bpp)) ) |
4629016d | 247 | return false; |
b913d3ed VZ |
248 | } |
249 | #endif // __WXMGL__ | |
250 | ||
251 | return wxAppConsole::OnCmdLineParsed(parser); | |
252 | } | |
253 | ||
254 | #endif // wxUSE_CMDLINE_PARSER | |
255 | ||
1bf77ee5 VZ |
256 | // ---------------------------------------------------------------------------- |
257 | // main event loop implementation | |
258 | // ---------------------------------------------------------------------------- | |
259 | ||
260 | int wxAppBase::MainLoop() | |
261 | { | |
efbfda9d | 262 | wxEventLoopTiedPtr mainLoop(&m_mainLoop, new wxEventLoop); |
1bf77ee5 VZ |
263 | |
264 | return m_mainLoop->Run(); | |
265 | } | |
266 | ||
267 | void wxAppBase::ExitMainLoop() | |
268 | { | |
269 | // we should exit from the main event loop, not just any currently active | |
270 | // (e.g. modal dialog) event loop | |
dd435a79 | 271 | if ( m_mainLoop && m_mainLoop->IsRunning() ) |
1bf77ee5 VZ |
272 | { |
273 | m_mainLoop->Exit(0); | |
274 | } | |
275 | } | |
276 | ||
277 | bool wxAppBase::Pending() | |
278 | { | |
279 | // use the currently active message loop here, not m_mainLoop, because if | |
280 | // we're showing a modal dialog (with its own event loop) currently the | |
281 | // main event loop is not running anyhow | |
282 | wxEventLoop * const loop = wxEventLoop::GetActive(); | |
283 | ||
284 | return loop && loop->Pending(); | |
285 | } | |
286 | ||
287 | bool wxAppBase::Dispatch() | |
288 | { | |
289 | // see comment in Pending() | |
290 | wxEventLoop * const loop = wxEventLoop::GetActive(); | |
291 | ||
d1fc6f06 | 292 | return loop && loop->Dispatch(); |
1bf77ee5 VZ |
293 | } |
294 | ||
94826170 VZ |
295 | // ---------------------------------------------------------------------------- |
296 | // OnXXX() hooks | |
297 | // ---------------------------------------------------------------------------- | |
298 | ||
1e6feb95 VZ |
299 | bool wxAppBase::OnInitGui() |
300 | { | |
301 | #ifdef __WXUNIVERSAL__ | |
bf188f1a | 302 | if ( !wxTheme::Get() && !wxTheme::CreateDefault() ) |
4629016d | 303 | return false; |
1e6feb95 VZ |
304 | #endif // __WXUNIVERSAL__ |
305 | ||
4629016d | 306 | return true; |
1e6feb95 | 307 | } |
1e6feb95 | 308 | |
1cbee0b4 VZ |
309 | int wxAppBase::OnRun() |
310 | { | |
311 | // see the comment in ctor: if the initial value hasn't been changed, use | |
312 | // the default Yes from now on | |
313 | if ( m_exitOnFrameDelete == Later ) | |
314 | { | |
315 | m_exitOnFrameDelete = Yes; | |
316 | } | |
317 | //else: it has been changed, assume the user knows what he is doing | |
318 | ||
319 | return MainLoop(); | |
320 | } | |
321 | ||
b913d3ed VZ |
322 | int wxAppBase::OnExit() |
323 | { | |
324 | #ifdef __WXUNIVERSAL__ | |
325 | delete wxTheme::Set(NULL); | |
326 | #endif // __WXUNIVERSAL__ | |
327 | ||
328 | return wxAppConsole::OnExit(); | |
329 | } | |
330 | ||
e2478fde | 331 | void wxAppBase::Exit() |
1e6feb95 | 332 | { |
e2478fde | 333 | ExitMainLoop(); |
1e6feb95 VZ |
334 | } |
335 | ||
e2478fde | 336 | wxAppTraits *wxAppBase::CreateTraits() |
a69be60b | 337 | { |
7843d11b | 338 | return new wxGUIAppTraits; |
72cdf4c9 VZ |
339 | } |
340 | ||
1e6feb95 VZ |
341 | // ---------------------------------------------------------------------------- |
342 | // misc | |
343 | // ---------------------------------------------------------------------------- | |
344 | ||
6e169cf3 | 345 | void wxAppBase::SetActive(bool active, wxWindow * WXUNUSED(lastFocus)) |
7beba2fc | 346 | { |
66dfed9b VZ |
347 | if ( active == m_isActive ) |
348 | return; | |
349 | ||
1e6feb95 | 350 | m_isActive = active; |
66dfed9b VZ |
351 | |
352 | wxActivateEvent event(wxEVT_ACTIVATE_APP, active); | |
353 | event.SetEventObject(this); | |
354 | ||
355 | (void)ProcessEvent(event); | |
7beba2fc | 356 | } |
1e6feb95 | 357 | |
2dc62891 VZ |
358 | // ---------------------------------------------------------------------------- |
359 | // idle handling | |
360 | // ---------------------------------------------------------------------------- | |
361 | ||
94826170 VZ |
362 | void wxAppBase::DeletePendingObjects() |
363 | { | |
222ed1d6 | 364 | wxList::compatibility_iterator node = wxPendingDelete.GetFirst(); |
94826170 VZ |
365 | while (node) |
366 | { | |
367 | wxObject *obj = node->GetData(); | |
368 | ||
369 | delete obj; | |
370 | ||
371 | if (wxPendingDelete.Member(obj)) | |
222ed1d6 | 372 | wxPendingDelete.Erase(node); |
94826170 VZ |
373 | |
374 | // Deleting one object may have deleted other pending | |
375 | // objects, so start from beginning of list again. | |
376 | node = wxPendingDelete.GetFirst(); | |
377 | } | |
378 | } | |
379 | ||
4629016d | 380 | // Returns true if more time is needed. |
e39af974 JS |
381 | bool wxAppBase::ProcessIdle() |
382 | { | |
5109ae5d | 383 | wxIdleEvent event; |
4629016d | 384 | bool needMore = false; |
222ed1d6 | 385 | wxWindowList::compatibility_iterator node = wxTopLevelWindows.GetFirst(); |
e39af974 JS |
386 | while (node) |
387 | { | |
388 | wxWindow* win = node->GetData(); | |
5109ae5d | 389 | if (SendIdleEvents(win, event)) |
4629016d | 390 | needMore = true; |
e39af974 JS |
391 | node = node->GetNext(); |
392 | } | |
393 | ||
e39af974 | 394 | event.SetEventObject(this); |
5109ae5d JS |
395 | (void) ProcessEvent(event); |
396 | if (event.MoreRequested()) | |
4629016d | 397 | needMore = true; |
e39af974 JS |
398 | |
399 | wxUpdateUIEvent::ResetUpdateTime(); | |
4629016d | 400 | |
5109ae5d | 401 | return needMore; |
e39af974 JS |
402 | } |
403 | ||
e39af974 | 404 | // Send idle event to window and all subwindows |
5109ae5d | 405 | bool wxAppBase::SendIdleEvents(wxWindow* win, wxIdleEvent& event) |
e39af974 | 406 | { |
4629016d | 407 | bool needMore = false; |
42d11c8e | 408 | |
5109ae5d | 409 | win->OnInternalIdle(); |
42d11c8e | 410 | |
e39af974 JS |
411 | if (wxIdleEvent::CanSend(win)) |
412 | { | |
e39af974 JS |
413 | event.SetEventObject(win); |
414 | win->GetEventHandler()->ProcessEvent(event); | |
415 | ||
5109ae5d | 416 | if (event.MoreRequested()) |
4629016d | 417 | needMore = true; |
e39af974 | 418 | } |
222ed1d6 | 419 | wxWindowList::compatibility_iterator node = win->GetChildren().GetFirst(); |
e39af974 JS |
420 | while ( node ) |
421 | { | |
529b7f71 JS |
422 | wxWindow *child = node->GetData(); |
423 | if (SendIdleEvents(child, event)) | |
4629016d | 424 | needMore = true; |
e39af974 JS |
425 | |
426 | node = node->GetNext(); | |
427 | } | |
428 | ||
429 | return needMore; | |
430 | } | |
431 | ||
fc7a2a60 | 432 | void wxAppBase::OnIdle(wxIdleEvent& WXUNUSED(event)) |
955a9197 JS |
433 | { |
434 | // If there are pending events, we must process them: pending events | |
435 | // are either events to the threads other than main or events posted | |
436 | // with wxPostEvent() functions | |
437 | // GRG: I have moved this here so that all pending events are processed | |
438 | // before starting to delete any objects. This behaves better (in | |
439 | // particular, wrt wxPostEvent) and is coherent with wxGTK's current | |
440 | // behaviour. Changed Feb/2000 before 2.1.14 | |
441 | ProcessPendingEvents(); | |
442 | ||
443 | // 'Garbage' collection of windows deleted with Close(). | |
444 | DeletePendingObjects(); | |
445 | ||
446 | #if wxUSE_LOG | |
447 | // flush the logged messages if any | |
448 | wxLog::FlushActive(); | |
449 | #endif // wxUSE_LOG | |
450 | ||
451 | } | |
e39af974 | 452 | |
2dc62891 VZ |
453 | // ---------------------------------------------------------------------------- |
454 | // exceptions support | |
455 | // ---------------------------------------------------------------------------- | |
456 | ||
457 | #if wxUSE_EXCEPTIONS | |
458 | ||
459 | bool wxAppBase::OnExceptionInMainLoop() | |
460 | { | |
461 | throw; | |
462 | ||
463 | // some compilers are too stupid to know that we never return after throw | |
464 | #if defined(__DMC__) || (defined(_MSC_VER) && _MSC_VER < 1200) | |
465 | return false; | |
466 | #endif | |
467 | } | |
468 | ||
469 | #endif // wxUSE_EXCEPTIONS | |
470 | ||
bf188f1a | 471 | // ---------------------------------------------------------------------------- |
e2478fde | 472 | // wxGUIAppTraitsBase |
bf188f1a VZ |
473 | // ---------------------------------------------------------------------------- |
474 | ||
bf188f1a | 475 | #if wxUSE_LOG |
bf188f1a | 476 | |
e2478fde VZ |
477 | wxLog *wxGUIAppTraitsBase::CreateLogTarget() |
478 | { | |
461dae94 | 479 | #if wxUSE_LOGGUI |
e2478fde | 480 | return new wxLogGui; |
461dae94 | 481 | #else |
fa6416df | 482 | // we must have something! |
461dae94 VZ |
483 | return new wxLogStderr; |
484 | #endif | |
bf188f1a VZ |
485 | } |
486 | ||
bf188f1a VZ |
487 | #endif // wxUSE_LOG |
488 | ||
e2478fde | 489 | wxMessageOutput *wxGUIAppTraitsBase::CreateMessageOutput() |
bf188f1a | 490 | { |
e2478fde VZ |
491 | // The standard way of printing help on command line arguments (app --help) |
492 | // is (according to common practice): | |
493 | // - console apps: to stderr (on any platform) | |
494 | // - GUI apps: stderr on Unix platforms (!) | |
495 | // message box under Windows and others | |
496 | #ifdef __UNIX__ | |
497 | return new wxMessageOutputStderr; | |
498 | #else // !__UNIX__ | |
499 | // wxMessageOutputMessageBox doesn't work under Motif | |
500 | #ifdef __WXMOTIF__ | |
501 | return new wxMessageOutputLog; | |
502 | #else | |
503 | return new wxMessageOutputMessageBox; | |
504 | #endif | |
505 | #endif // __UNIX__/!__UNIX__ | |
bf188f1a VZ |
506 | } |
507 | ||
e2478fde | 508 | #if wxUSE_FONTMAP |
bf188f1a | 509 | |
e2478fde VZ |
510 | wxFontMapper *wxGUIAppTraitsBase::CreateFontMapper() |
511 | { | |
512 | return new wxFontMapper; | |
bf188f1a VZ |
513 | } |
514 | ||
e2478fde | 515 | #endif // wxUSE_FONTMAP |
bf188f1a | 516 | |
f0244295 VZ |
517 | wxRendererNative *wxGUIAppTraitsBase::CreateRenderer() |
518 | { | |
519 | // use the default native renderer by default | |
520 | return NULL; | |
521 | } | |
522 | ||
090a6d7a | 523 | #ifdef __WXDEBUG__ |
e6e6fcc9 | 524 | |
e2478fde VZ |
525 | bool wxGUIAppTraitsBase::ShowAssertDialog(const wxString& msg) |
526 | { | |
527 | // under MSW we prefer to use the base class version using ::MessageBox() | |
528 | // even if wxMessageBox() is available because it has less chances to | |
529 | // double fault our app than our wxMessageBox() | |
530 | #if defined(__WXMSW__) || !wxUSE_MSGDLG | |
531 | return wxAppTraitsBase::ShowAssertDialog(msg); | |
532 | #else // wxUSE_MSGDLG | |
533 | // this message is intentionally not translated -- it is for | |
534 | // developpers only | |
535 | wxString msgDlg(msg); | |
536 | msgDlg += wxT("\nDo you want to stop the program?\n") | |
537 | wxT("You can also choose [Cancel] to suppress ") | |
538 | wxT("further warnings."); | |
539 | ||
77ffb593 | 540 | switch ( wxMessageBox(msgDlg, wxT("wxWidgets Debug Alert"), |
e2478fde VZ |
541 | wxYES_NO | wxCANCEL | wxICON_STOP ) ) |
542 | { | |
543 | case wxYES: | |
544 | wxTrap(); | |
545 | break; | |
090a6d7a | 546 | |
e2478fde VZ |
547 | case wxCANCEL: |
548 | // no more asserts | |
549 | return true; | |
a5f1fd3e | 550 | |
e2478fde | 551 | //case wxNO: nothing to do |
090a6d7a | 552 | } |
090a6d7a | 553 | |
e2478fde VZ |
554 | return false; |
555 | #endif // !wxUSE_MSGDLG/wxUSE_MSGDLG | |
a5f1fd3e VZ |
556 | } |
557 | ||
e2478fde VZ |
558 | #endif // __WXDEBUG__ |
559 | ||
560 | bool wxGUIAppTraitsBase::HasStderr() | |
a5f1fd3e | 561 | { |
e2478fde VZ |
562 | // we consider that under Unix stderr always goes somewhere, even if the |
563 | // user doesn't always see it under GUI desktops | |
564 | #ifdef __UNIX__ | |
565 | return true; | |
a5f1fd3e | 566 | #else |
e2478fde | 567 | return false; |
a5f1fd3e | 568 | #endif |
a5f1fd3e VZ |
569 | } |
570 | ||
e2478fde | 571 | void wxGUIAppTraitsBase::ScheduleForDestroy(wxObject *object) |
a5f1fd3e | 572 | { |
e2478fde VZ |
573 | if ( !wxPendingDelete.Member(object) ) |
574 | wxPendingDelete.Append(object); | |
a5f1fd3e VZ |
575 | } |
576 | ||
e2478fde | 577 | void wxGUIAppTraitsBase::RemoveFromPendingDelete(wxObject *object) |
a5f1fd3e | 578 | { |
e2478fde | 579 | wxPendingDelete.DeleteObject(object); |
a5f1fd3e VZ |
580 | } |
581 | ||
38bb138f VS |
582 | #if wxUSE_SOCKETS |
583 | ||
ae3036a2 | 584 | #if defined(__WINDOWS__) |
38bb138f | 585 | #include "wx/msw/gsockmsw.h" |
ae3036a2 RN |
586 | #elif defined(__UNIX__) || defined(__DARWIN__) || defined(__OS2__) |
587 | #include "wx/unix/gsockunx.h" | |
69aa21ac | 588 | #elif defined(__WXMAC__) |
127eab18 WS |
589 | #include <MacHeaders.c> |
590 | #define OTUNIXERRORS 1 | |
591 | #include <OpenTransport.h> | |
592 | #include <OpenTransportProviders.h> | |
593 | #include <OpenTptInternet.h> | |
69aa21ac | 594 | |
127eab18 | 595 | #include "wx/mac/gsockmac.h" |
38bb138f VS |
596 | #else |
597 | #error "Must include correct GSocket header here" | |
598 | #endif | |
599 | ||
600 | GSocketGUIFunctionsTable* wxGUIAppTraitsBase::GetSocketGUIFunctionsTable() | |
601 | { | |
27a52ff9 GD |
602 | #if defined(__WXMAC__) && !defined(__DARWIN__) |
603 | // NB: wxMac CFM does not have any GUI-specific functions in gsocket.c and | |
14a39351 VS |
604 | // so it doesn't need this table at all |
605 | return NULL; | |
27a52ff9 | 606 | #else // !__WXMAC__ || __DARWIN__ |
1d2ec8e5 DE |
607 | static GSocketGUIFunctionsTableConcrete table; |
608 | return &table; | |
1d2ec8e5 | 609 | #endif // !__WXMAC__ || __DARWIN__ |
38bb138f VS |
610 | } |
611 | ||
612 | #endif |