]> git.saurik.com Git - wxWidgets.git/blob - src/x11/app.cpp
compilation fix
[wxWidgets.git] / src / x11 / app.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: app.cpp
3 // Purpose: wxApp
4 // Author: Julian Smart
5 // Modified by:
6 // Created: 17/09/98
7 // RCS-ID: $Id$
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
11
12 #ifdef __GNUG__
13 #pragma implementation "app.h"
14 #endif
15
16 #include "wx/frame.h"
17 #include "wx/app.h"
18 #include "wx/utils.h"
19 #include "wx/gdicmn.h"
20 #include "wx/icon.h"
21 #include "wx/dialog.h"
22 #include "wx/log.h"
23 #include "wx/module.h"
24 #include "wx/memory.h"
25 #include "wx/log.h"
26 #include "wx/intl.h"
27 #include "wx/evtloop.h"
28
29 #include "wx/univ/theme.h"
30 #include "wx/univ/renderer.h"
31
32 #if wxUSE_THREADS
33 #include "wx/thread.h"
34 #endif
35
36 #if wxUSE_WX_RESOURCES
37 #include "wx/resource.h"
38 #endif
39
40 #ifdef __VMS__
41 #pragma message disable nosimpint
42 #endif
43 #include <X11/Xlib.h>
44 #include <X11/Xutil.h>
45 #include <X11/Xatom.h>
46
47 #ifdef __VMS__
48 #pragma message enable nosimpint
49 #endif
50
51 #include "wx/x11/private.h"
52
53 #include <string.h>
54
55 extern wxList wxPendingDelete;
56
57 wxApp *wxTheApp = NULL;
58
59 wxHashTable *wxWidgetHashTable = NULL;
60
61 IMPLEMENT_DYNAMIC_CLASS(wxApp, wxEvtHandler)
62
63 BEGIN_EVENT_TABLE(wxApp, wxEvtHandler)
64 EVT_IDLE(wxApp::OnIdle)
65 END_EVENT_TABLE()
66
67 #ifdef __WXDEBUG__
68 typedef int (*XErrorHandlerFunc)(Display *, XErrorEvent *);
69
70 XErrorHandlerFunc gs_pfnXErrorHandler = 0;
71
72 static int wxXErrorHandler(Display *dpy, XErrorEvent *xevent)
73 {
74 // just forward to the default handler for now
75 return gs_pfnXErrorHandler(dpy, xevent);
76 }
77 #endif // __WXDEBUG__
78
79 long wxApp::sm_lastMessageTime = 0;
80 WXDisplay *wxApp::ms_display = NULL;
81
82 // This is set within wxEntryStart -- too early on
83 // to put these in wxTheApp
84 static int g_newArgc = 0;
85 static wxChar** g_newArgv = NULL;
86 static bool g_showIconic = FALSE;
87 static wxSize g_initialSize = wxDefaultSize;
88
89 bool wxApp::Initialize()
90 {
91 wxClassInfo::InitializeClasses();
92
93 // GL: I'm annoyed ... I don't know where to put this and I don't want to
94 // create a module for that as it's part of the core.
95 #if wxUSE_THREADS
96 wxPendingEventsLocker = new wxCriticalSection();
97 #endif
98
99 wxTheColourDatabase = new wxColourDatabase(wxKEY_STRING);
100 wxTheColourDatabase->Initialize();
101
102 wxInitializeStockLists();
103 wxInitializeStockObjects();
104
105 #if wxUSE_WX_RESOURCES
106 wxInitializeResourceSystem();
107 #endif
108
109 wxWidgetHashTable = new wxHashTable(wxKEY_INTEGER);
110
111 wxModule::RegisterModules();
112 if (!wxModule::InitializeModules()) return FALSE;
113
114 return TRUE;
115 }
116
117 void wxApp::CleanUp()
118 {
119 if (g_newArgv)
120 delete[] g_newArgv;
121 g_newArgv = NULL;
122
123 delete wxWidgetHashTable;
124 wxWidgetHashTable = NULL;
125
126 wxModule::CleanUpModules();
127
128 #if wxUSE_WX_RESOURCES
129 wxCleanUpResourceSystem();
130 #endif
131
132 delete wxTheColourDatabase;
133 wxTheColourDatabase = NULL;
134
135 wxDeleteStockObjects();
136
137 wxDeleteStockLists();
138
139 delete wxTheApp;
140 wxTheApp = NULL;
141
142 wxClassInfo::CleanUpClasses();
143
144 #if wxUSE_THREADS
145 delete wxPendingEvents;
146 delete wxPendingEventsLocker;
147 #endif
148
149 #if (defined(__WXDEBUG__) && wxUSE_MEMORY_TRACING) || wxUSE_DEBUG_CONTEXT
150 // At this point we want to check if there are any memory
151 // blocks that aren't part of the wxDebugContext itself,
152 // as a special case. Then when dumping we need to ignore
153 // wxDebugContext, too.
154 if (wxDebugContext::CountObjectsLeft(TRUE) > 0)
155 {
156 wxLogDebug("There were memory leaks.");
157 wxDebugContext::Dump();
158 wxDebugContext::PrintStatistics();
159 }
160 #endif
161
162 // do it as the very last thing because everything else can log messages
163 wxLog::DontCreateOnDemand();
164 // do it as the very last thing because everything else can log messages
165 delete wxLog::SetActiveTarget(NULL);
166 }
167
168 // NB: argc and argv may be changed here, pass by reference!
169 int wxEntryStart( int& argc, char *argv[] )
170 {
171 #ifdef __WXDEBUG__
172 // install the X error handler
173 gs_pfnXErrorHandler = XSetErrorHandler( wxXErrorHandler );
174 #endif // __WXDEBUG__
175
176 wxString displayName;
177 bool syncDisplay = FALSE;
178
179 // Parse the arguments.
180 // We can't use wxCmdLineParser or OnInitCmdLine and friends because
181 // we have to create the Display earlier. If we can find a way to
182 // use the wxAppBase API then I'll be quite happy to change it.
183 g_newArgv = new wxChar*[argc];
184 g_newArgc = 0;
185 int i;
186 for (i = 0; i < argc; i++)
187 {
188 wxString arg(argv[i]);
189 if (arg == wxT("-display"))
190 {
191 if (i < (argc - 1))
192 {
193 i ++;
194 displayName = argv[i];
195 continue;
196 }
197 }
198 else if (arg == wxT("-geometry"))
199 {
200 if (i < (argc - 1))
201 {
202 i ++;
203 wxString windowGeometry = argv[i];
204 int w, h;
205 if (wxSscanf(windowGeometry.c_str(), _T("%dx%d"), &w, &h) != 2)
206 {
207 wxLogError(_("Invalid geometry specification '%s'"), windowGeometry.c_str());
208 }
209 else
210 {
211 g_initialSize = wxSize(w, h);
212 }
213 continue;
214 }
215 }
216 else if (arg == wxT("-sync"))
217 {
218 syncDisplay = TRUE;
219 continue;
220 }
221 else if (arg == wxT("-iconic"))
222 {
223 g_showIconic = TRUE;
224
225 continue;
226 }
227
228 // Not eaten by wxWindows, so pass through
229 g_newArgv[g_newArgc] = argv[i];
230 g_newArgc ++;
231 }
232
233 Display* xdisplay;
234 if (displayName.IsEmpty())
235 xdisplay = XOpenDisplay(NULL);
236 else
237 xdisplay = XOpenDisplay(displayName);
238
239 if (!xdisplay)
240 {
241 wxLogError( _("wxWindows could not open display. Exiting.") );
242 return -1;
243 }
244
245 if (syncDisplay)
246 {
247 XSynchronize(xdisplay, True);
248 }
249
250 wxApp::ms_display = (WXDisplay*) xdisplay;
251
252 XSelectInput( xdisplay, XDefaultRootWindow(xdisplay), PropertyChangeMask);
253
254 wxSetDetectableAutoRepeat( TRUE );
255
256 if (!wxApp::Initialize())
257 return -1;
258
259 return 0;
260 }
261
262 int wxEntryInitGui()
263 {
264 int retValue = 0;
265
266 if ( !wxTheApp->OnInitGui() )
267 retValue = -1;
268
269 return retValue;
270 }
271
272
273 int wxEntry( int argc, char *argv[] )
274 {
275 #if (defined(__WXDEBUG__) && wxUSE_MEMORY_TRACING) || wxUSE_DEBUG_CONTEXT
276 // This seems to be necessary since there are 'rogue'
277 // objects present at this point (perhaps global objects?)
278 // Setting a checkpoint will ignore them as far as the
279 // memory checking facility is concerned.
280 // Of course you may argue that memory allocated in globals should be
281 // checked, but this is a reasonable compromise.
282 wxDebugContext::SetCheckpoint();
283 #endif
284 int err = wxEntryStart(argc, argv);
285 if (err)
286 return err;
287
288 if (!wxTheApp)
289 {
290 if (!wxApp::GetInitializerFunction())
291 {
292 printf( "wxWindows error: No initializer - use IMPLEMENT_APP macro.\n" );
293 return 0;
294 };
295
296 wxTheApp = (wxApp*) (* wxApp::GetInitializerFunction()) ();
297 };
298
299 if (!wxTheApp)
300 {
301 printf( "wxWindows error: wxTheApp == NULL\n" );
302 return 0;
303 };
304
305 wxTheApp->SetClassName(wxFileNameFromPath(argv[0]));
306 wxTheApp->SetAppName(wxFileNameFromPath(argv[0]));
307
308 // The command line may have been changed
309 // by stripping out -display etc.
310 if (g_newArgc > 0)
311 {
312 wxTheApp->argc = g_newArgc;
313 wxTheApp->argv = g_newArgv;
314 }
315 else
316 {
317 wxTheApp->argc = argc;
318 wxTheApp->argv = argv;
319 }
320 wxTheApp->m_showIconic = g_showIconic;
321 wxTheApp->m_initialSize = g_initialSize;
322
323 int retValue;
324 retValue = wxEntryInitGui();
325
326 // Here frames insert themselves automatically into wxTopLevelWindows by
327 // getting created in OnInit().
328 if ( retValue == 0 )
329 {
330 if ( !wxTheApp->OnInit() )
331 retValue = -1;
332 }
333
334 if ( retValue == 0 )
335 {
336 if (wxTheApp->Initialized()) retValue = wxTheApp->OnRun();
337 }
338
339 // flush the logged messages if any
340 wxLog *pLog = wxLog::GetActiveTarget();
341 if ( pLog != NULL && pLog->HasPendingMessages() )
342 pLog->Flush();
343
344 delete wxLog::SetActiveTarget(new wxLogStderr); // So dialog boxes aren't used
345 // for further messages
346
347 if (wxTheApp->GetTopWindow())
348 {
349 delete wxTheApp->GetTopWindow();
350 wxTheApp->SetTopWindow(NULL);
351 }
352
353 wxTheApp->DeletePendingObjects();
354
355 wxTheApp->OnExit();
356
357 wxApp::CleanUp();
358
359 return retValue;
360 };
361
362 // Static member initialization
363 wxAppInitializerFunction wxAppBase::m_appInitFn = (wxAppInitializerFunction) NULL;
364
365 wxApp::wxApp()
366 {
367 m_topWindow = NULL;
368 wxTheApp = this;
369 m_className = "";
370 m_wantDebugOutput = TRUE ;
371 m_appName = "";
372 argc = 0;
373 argv = NULL;
374 m_exitOnFrameDelete = TRUE;
375 m_mainColormap = (WXColormap) NULL;
376 m_topLevelWidget = (WXWindow) NULL;
377 m_maxRequestSize = 0;
378 m_mainLoop = NULL;
379 m_showIconic = FALSE;
380 m_initialSize = wxDefaultSize;
381 }
382
383 bool wxApp::Initialized()
384 {
385 if (GetTopWindow())
386 return TRUE;
387 else
388 return FALSE;
389 }
390
391 int wxApp::MainLoop()
392 {
393 int rt;
394 m_mainLoop = new wxEventLoop;
395
396 rt = m_mainLoop->Run();
397
398 delete m_mainLoop;
399 m_mainLoop = NULL;
400 return rt;
401 }
402
403 // Processes an X event.
404 void wxApp::ProcessXEvent(WXEvent* _event)
405 {
406 XEvent* event = (XEvent*) _event;
407
408 wxWindow* win = NULL;
409 Window window = event->xany.window;
410 Window actualWindow = window;
411
412 // Find the first wxWindow that corresponds to this event window
413 // Because we're receiving events after a window
414 // has been destroyed, assume a 1:1 match between
415 // Window and wxWindow, so if it's not in the table,
416 // it must have been destroyed.
417
418 win = wxGetWindowFromTable(window);
419 if (!win)
420 return;
421
422 switch (event->type)
423 {
424 case KeyPress:
425 {
426 if (win && !win->IsEnabled())
427 return;
428
429 {
430 if (win)
431 {
432 wxKeyEvent keyEvent(wxEVT_KEY_DOWN);
433 wxTranslateKeyEvent(keyEvent, win, window, event);
434
435 wxLogDebug( "OnKey from %s", win->GetName().c_str() );
436
437 // We didn't process wxEVT_KEY_DOWN, so send
438 // wxEVT_CHAR
439 if (!win->GetEventHandler()->ProcessEvent( keyEvent ))
440 {
441 keyEvent.SetEventType(wxEVT_CHAR);
442 win->GetEventHandler()->ProcessEvent( keyEvent );
443 }
444
445 // We intercepted and processed the key down event
446 return;
447 }
448 }
449 return;
450 }
451 case KeyRelease:
452 {
453 if (win && !win->IsEnabled())
454 return;
455
456 if (win)
457 {
458 wxKeyEvent keyEvent(wxEVT_KEY_UP);
459 wxTranslateKeyEvent(keyEvent, win, window, event);
460
461 win->GetEventHandler()->ProcessEvent( keyEvent );
462 }
463 return;
464 }
465 case ConfigureNotify:
466 {
467 // Not clear if this is the same in NanoX
468 if (win)
469 {
470 wxSizeEvent sizeEvent( wxSize(event->xconfigure.width,event->xconfigure.height), win->GetId() );
471 sizeEvent.SetEventObject( win );
472
473 win->GetEventHandler()->ProcessEvent( sizeEvent );
474 }
475 }
476 #if !wxUSE_NANOX
477 case PropertyNotify:
478 {
479 HandlePropertyChange(_event);
480 return;
481 }
482 case ClientMessage:
483 {
484 if (win && !win->IsEnabled())
485 return;
486
487 Atom wm_delete_window = XInternAtom(wxGlobalDisplay(), "WM_DELETE_WINDOW", True);
488 Atom wm_protocols = XInternAtom(wxGlobalDisplay(), "WM_PROTOCOLS", True);
489
490 if (event->xclient.message_type == wm_protocols)
491 {
492 if ((Atom) (event->xclient.data.l[0]) == wm_delete_window)
493 {
494 if (win)
495 {
496 win->Close(FALSE);
497 }
498 }
499 }
500 return;
501 }
502 case ResizeRequest:
503 {
504 /*
505 * If resize event, don't resize until the last resize event for this
506 * window is recieved. Prevents flicker as windows are resized.
507 */
508
509 Display *disp = (Display*) wxGetDisplay();
510 XEvent report;
511
512 // to avoid flicker
513 report = * event;
514 while( XCheckTypedWindowEvent (disp, actualWindow, ResizeRequest, &report));
515
516 if (win)
517 {
518 wxSize sz = win->GetSize();
519 wxSizeEvent sizeEvent(sz, win->GetId());
520 sizeEvent.SetEventObject(win);
521
522 win->GetEventHandler()->ProcessEvent( sizeEvent );
523 }
524
525 return;
526 }
527 #endif
528 #if wxUSE_NANOX
529 case GR_EVENT_TYPE_CLOSE_REQ:
530 {
531 if (win)
532 {
533 win->Close(FALSE);
534 }
535 break;
536 }
537 #endif
538 case Expose:
539 {
540 if (win)
541 {
542 win->GetUpdateRegion().Union( event->xexpose.x, event->xexpose.y,
543 event->xexpose.width, event->xexpose.height);
544
545 win->GetClearRegion().Union( event->xexpose.x, event->xexpose.y,
546 event->xexpose.width, event->xexpose.height);
547
548 // if (event->xexpose.count == 0)
549 // win->Update();
550 }
551
552 return;
553 }
554 case GraphicsExpose:
555 {
556 if (win)
557 {
558 // wxLogDebug( "GraphicsExpose from %s", win->GetName().c_str(),
559 // event->xgraphicsexpose.x, event->xgraphicsexpose.y,
560 // event->xgraphicsexpose.width, event->xgraphicsexpose.height);
561
562 win->GetUpdateRegion().Union( event->xgraphicsexpose.x, event->xgraphicsexpose.y,
563 event->xgraphicsexpose.width, event->xgraphicsexpose.height);
564
565 win->GetClearRegion().Union( event->xgraphicsexpose.x, event->xgraphicsexpose.y,
566 event->xgraphicsexpose.width, event->xgraphicsexpose.height);
567
568 // if (event->xgraphicsexpose.count == 0)
569 // win->Update();
570 }
571
572 return;
573 }
574 case EnterNotify:
575 case LeaveNotify:
576 case ButtonPress:
577 case ButtonRelease:
578 case MotionNotify:
579 {
580 if (!win)
581 return;
582
583 if (!win->IsEnabled())
584 return;
585
586 #if 1
587 if (event->type == ButtonPress)
588 {
589 if ((win != wxWindow::FindFocus()) && win->AcceptsFocus())
590 win->SetFocus();
591 }
592 #endif
593
594 wxMouseEvent wxevent;
595 wxTranslateMouseEvent(wxevent, win, window, event);
596 win->GetEventHandler()->ProcessEvent( wxevent );
597 return;
598 }
599 case FocusIn:
600 {
601 #if !wxUSE_NANOX
602 if (win && event->xfocus.detail != NotifyPointer)
603 #endif
604 {
605 wxLogDebug( "FocusIn from %s", win->GetName().c_str() );
606
607 wxFocusEvent focusEvent(wxEVT_SET_FOCUS, win->GetId());
608 focusEvent.SetEventObject(win);
609 win->GetEventHandler()->ProcessEvent(focusEvent);
610 }
611 break;
612 }
613 case FocusOut:
614 {
615 #if !wxUSE_NANOX
616 if (win && event->xfocus.detail != NotifyPointer)
617 #endif
618 {
619 wxLogDebug( "FocusOut from %s", win->GetName().c_str() );
620
621 wxFocusEvent focusEvent(wxEVT_KILL_FOCUS, win->GetId());
622 focusEvent.SetEventObject(win);
623 win->GetEventHandler()->ProcessEvent(focusEvent);
624 }
625 break;
626 }
627 case DestroyNotify:
628 {
629 // Do we want to process this (for top-level windows)?
630 // But we want to be able to veto closes, anyway
631 break;
632 }
633 default:
634 {
635 #ifdef __WXDEBUG__
636 //wxString eventName = wxGetXEventName(XEvent& event);
637 //wxLogDebug(wxT("Event %s not handled"), eventName.c_str());
638 #endif
639 break;
640 }
641 }
642 }
643
644 // Returns TRUE if more time is needed.
645 // Note that this duplicates wxEventLoopImpl::SendIdleEvent
646 // but ProcessIdle may be needed by apps, so is kept.
647 bool wxApp::ProcessIdle()
648 {
649 wxIdleEvent event;
650 event.SetEventObject(this);
651 ProcessEvent(event);
652
653 return event.MoreRequested();
654 }
655
656 void wxApp::ExitMainLoop()
657 {
658 if (m_mainLoop)
659 m_mainLoop->Exit(0);
660 }
661
662 // Is a message/event pending?
663 bool wxApp::Pending()
664 {
665 return wxEventLoop::GetActive()->Pending();
666 }
667
668 // Dispatch a message.
669 void wxApp::Dispatch()
670 {
671 wxEventLoop::GetActive()->Dispatch();
672 }
673
674 // This should be redefined in a derived class for
675 // handling property change events for XAtom IPC.
676 void wxApp::HandlePropertyChange(WXEvent *event)
677 {
678 // by default do nothing special
679 // TODO: what to do for X11
680 // XtDispatchEvent((XEvent*) event);
681 }
682
683 void wxApp::OnIdle(wxIdleEvent& event)
684 {
685 static bool s_inOnIdle = FALSE;
686
687 // Avoid recursion (via ProcessEvent default case)
688 if (s_inOnIdle)
689 return;
690
691 s_inOnIdle = TRUE;
692
693 // Resend in the main thread events which have been prepared in other
694 // threads
695 ProcessPendingEvents();
696
697 // 'Garbage' collection of windows deleted with Close()
698 DeletePendingObjects();
699
700 // Send OnIdle events to all windows
701 bool needMore = SendIdleEvents();
702
703 if (needMore)
704 event.RequestMore(TRUE);
705
706 s_inOnIdle = FALSE;
707 }
708
709 void wxWakeUpIdle()
710 {
711 // **** please implement me! ****
712 // Wake up the idle handler processor, even if it is in another thread...
713 }
714
715
716 // Send idle event to all top-level windows
717 bool wxApp::SendIdleEvents()
718 {
719 bool needMore = FALSE;
720
721 wxWindowList::Node* node = wxTopLevelWindows.GetFirst();
722 while (node)
723 {
724 wxWindow* win = node->GetData();
725 if (SendIdleEvents(win))
726 needMore = TRUE;
727 node = node->GetNext();
728 }
729
730 return needMore;
731 }
732
733 // Send idle event to window and all subwindows
734 bool wxApp::SendIdleEvents(wxWindow* win)
735 {
736 bool needMore = FALSE;
737
738 wxIdleEvent event;
739 event.SetEventObject(win);
740
741 win->GetEventHandler()->ProcessEvent(event);
742
743 win->OnInternalIdle();
744
745 if (event.MoreRequested())
746 needMore = TRUE;
747
748 wxNode* node = win->GetChildren().First();
749 while (node)
750 {
751 wxWindow* win = (wxWindow*) node->Data();
752 if (SendIdleEvents(win))
753 needMore = TRUE;
754
755 node = node->Next();
756 }
757
758 return needMore;
759 }
760
761 void wxApp::DeletePendingObjects()
762 {
763 wxNode *node = wxPendingDelete.First();
764 while (node)
765 {
766 wxObject *obj = (wxObject *)node->Data();
767
768 delete obj;
769
770 if (wxPendingDelete.Member(obj))
771 delete node;
772
773 // Deleting one object may have deleted other pending
774 // objects, so start from beginning of list again.
775 node = wxPendingDelete.First();
776 }
777 }
778
779 // Create display, and other initialization
780 bool wxApp::OnInitGui()
781 {
782 // Eventually this line will be removed, but for
783 // now we don't want to try popping up a dialog
784 // for error messages.
785 delete wxLog::SetActiveTarget(new wxLogStderr);
786
787 if (!wxAppBase::OnInitGui())
788 return FALSE;
789
790 GetMainColormap( wxApp::GetDisplay() );
791
792 m_maxRequestSize = XMaxRequestSize( (Display*) wxApp::GetDisplay() );
793
794 return TRUE;
795 }
796
797 WXColormap wxApp::GetMainColormap(WXDisplay* display)
798 {
799 if (!display) /* Must be called first with non-NULL display */
800 return m_mainColormap;
801
802 int defaultScreen = DefaultScreen((Display*) display);
803 Screen* screen = XScreenOfDisplay((Display*) display, defaultScreen);
804
805 Colormap c = DefaultColormapOfScreen(screen);
806
807 if (!m_mainColormap)
808 m_mainColormap = (WXColormap) c;
809
810 return (WXColormap) c;
811 }
812
813 Window wxGetWindowParent(Window window)
814 {
815 wxASSERT_MSG( window, "invalid window" );
816
817 return (Window) 0;
818
819 Window parent, root = 0;
820 unsigned int noChildren = 0;
821 Window* children = NULL;
822 int res = XQueryTree((Display*) wxGetDisplay(), window, & root, & parent,
823 & children, & noChildren);
824 if (children)
825 XFree(children);
826 if (res)
827 return parent;
828 else
829 return (Window) 0;
830 }
831
832 void wxExit()
833 {
834 int retValue = 0;
835 if (wxTheApp)
836 retValue = wxTheApp->OnExit();
837
838 wxApp::CleanUp();
839 /*
840 * Exit in some platform-specific way. Not recommended that the app calls this:
841 * only for emergencies.
842 */
843 exit(retValue);
844 }
845
846 // Yield to other processes
847
848 bool wxApp::Yield(bool onlyIfNeeded)
849 {
850 bool s_inYield = FALSE;
851
852 if ( s_inYield )
853 {
854 if ( !onlyIfNeeded )
855 {
856 wxFAIL_MSG( wxT("wxYield called recursively" ) );
857 }
858
859 return FALSE;
860 }
861
862 s_inYield = TRUE;
863
864 while (wxTheApp && wxTheApp->Pending())
865 wxTheApp->Dispatch();
866
867 s_inYield = FALSE;
868
869 return TRUE;
870 }
871
872 wxIcon wxApp::GetStdIcon(int which) const
873 {
874 return wxTheme::Get()->GetRenderer()->GetStdIcon(which);
875 }
876
877 void wxApp::OnAssert(const wxChar *file, int line, const wxChar *msg)
878 {
879 // While the GUI isn't working that well, just print out the
880 // message.
881 #if 0
882 wxAppBase::OnAssert(file, line, msg);
883 #else
884 wxString msg2;
885 msg2.Printf("At file %s:%d: %s", file, line, msg);
886 wxLogDebug(msg2);
887 #endif
888 }
889