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