1 /////////////////////////////////////////////////////////////////////////////
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
13 #pragma implementation "app.h"
19 #include "wx/gdicmn.h"
21 #include "wx/dialog.h"
23 #include "wx/module.h"
24 #include "wx/memory.h"
27 #include "wx/evtloop.h"
29 #include "wx/univ/theme.h"
30 #include "wx/univ/renderer.h"
33 #include "wx/thread.h"
36 #if wxUSE_WX_RESOURCES
37 #include "wx/resource.h"
40 #include "wx/x11/private.h"
44 //------------------------------------------------------------------------
46 //------------------------------------------------------------------------
48 extern wxList wxPendingDelete
;
50 wxHashTable
*wxWidgetHashTable
= NULL
;
52 wxApp
*wxTheApp
= NULL
;
54 // This is set within wxEntryStart -- too early on
55 // to put these in wxTheApp
56 static int g_newArgc
= 0;
57 static wxChar
** g_newArgv
= NULL
;
58 static bool g_showIconic
= FALSE
;
59 static wxSize g_initialSize
= wxDefaultSize
;
61 // This is required for wxFocusEvent::SetWindow(). It will only
62 // work for focus events which we provoke ourselves (by calling
63 // SetFocus()). It will not work for those events, which X11
65 static wxWindow
*g_nextFocus
= NULL
;
66 static wxWindow
*g_prevFocus
= NULL
;
68 //------------------------------------------------------------------------
70 //------------------------------------------------------------------------
73 typedef int (*XErrorHandlerFunc
)(Display
*, XErrorEvent
*);
75 XErrorHandlerFunc gs_pfnXErrorHandler
= 0;
77 static int wxXErrorHandler(Display
*dpy
, XErrorEvent
*xevent
)
79 // just forward to the default handler for now
80 if (gs_pfnXErrorHandler
)
81 return gs_pfnXErrorHandler(dpy
, xevent
);
87 //------------------------------------------------------------------------
89 //------------------------------------------------------------------------
91 long wxApp::sm_lastMessageTime
= 0;
92 WXDisplay
*wxApp::ms_display
= NULL
;
94 IMPLEMENT_DYNAMIC_CLASS(wxApp
, wxEvtHandler
)
96 BEGIN_EVENT_TABLE(wxApp
, wxEvtHandler
)
97 EVT_IDLE(wxApp::OnIdle
)
100 bool wxApp::Initialize()
102 wxClassInfo::InitializeClasses();
104 // GL: I'm annoyed ... I don't know where to put this and I don't want to
105 // create a module for that as it's part of the core.
107 wxPendingEventsLocker
= new wxCriticalSection();
110 wxTheColourDatabase
= new wxColourDatabase(wxKEY_STRING
);
111 wxTheColourDatabase
->Initialize();
113 wxInitializeStockLists();
114 wxInitializeStockObjects();
116 #if wxUSE_WX_RESOURCES
117 wxInitializeResourceSystem();
120 wxWidgetHashTable
= new wxHashTable(wxKEY_INTEGER
);
122 wxModule::RegisterModules();
123 if (!wxModule::InitializeModules()) return FALSE
;
128 void wxApp::CleanUp()
134 delete wxWidgetHashTable
;
135 wxWidgetHashTable
= NULL
;
137 wxModule::CleanUpModules();
139 #if wxUSE_WX_RESOURCES
140 wxCleanUpResourceSystem();
143 delete wxTheColourDatabase
;
144 wxTheColourDatabase
= NULL
;
146 wxDeleteStockObjects();
148 wxDeleteStockLists();
153 wxClassInfo::CleanUpClasses();
156 delete wxPendingEvents
;
157 delete wxPendingEventsLocker
;
160 #if (defined(__WXDEBUG__) && wxUSE_MEMORY_TRACING) || wxUSE_DEBUG_CONTEXT
161 // At this point we want to check if there are any memory
162 // blocks that aren't part of the wxDebugContext itself,
163 // as a special case. Then when dumping we need to ignore
164 // wxDebugContext, too.
165 if (wxDebugContext::CountObjectsLeft(TRUE
) > 0)
167 wxLogDebug("There were memory leaks.");
168 wxDebugContext::Dump();
169 wxDebugContext::PrintStatistics();
173 // do it as the very last thing because everything else can log messages
174 wxLog::DontCreateOnDemand();
175 // do it as the very last thing because everything else can log messages
176 delete wxLog::SetActiveTarget(NULL
);
179 // NB: argc and argv may be changed here, pass by reference!
180 int wxEntryStart( int& argc
, char *argv
[] )
184 // install the X error handler
185 gs_pfnXErrorHandler
= XSetErrorHandler( wxXErrorHandler
);
187 #endif // __WXDEBUG__
189 wxString displayName
;
190 bool syncDisplay
= FALSE
;
192 // Parse the arguments.
193 // We can't use wxCmdLineParser or OnInitCmdLine and friends because
194 // we have to create the Display earlier. If we can find a way to
195 // use the wxAppBase API then I'll be quite happy to change it.
196 g_newArgv
= new wxChar
*[argc
];
199 for (i
= 0; i
< argc
; i
++)
201 wxString
arg(argv
[i
]);
202 if (arg
== wxT("-display"))
207 displayName
= argv
[i
];
211 else if (arg
== wxT("-geometry"))
216 wxString windowGeometry
= argv
[i
];
218 if (wxSscanf(windowGeometry
.c_str(), _T("%dx%d"), &w
, &h
) != 2)
220 wxLogError(_("Invalid geometry specification '%s'"), windowGeometry
.c_str());
224 g_initialSize
= wxSize(w
, h
);
229 else if (arg
== wxT("-sync"))
234 else if (arg
== wxT("-iconic"))
241 // Not eaten by wxWindows, so pass through
242 g_newArgv
[g_newArgc
] = argv
[i
];
246 Display
* xdisplay
= NULL
;
247 if (displayName
.IsEmpty())
248 xdisplay
= XOpenDisplay(NULL
);
250 xdisplay
= XOpenDisplay((char*) displayName
.c_str());
254 wxLogError( _("wxWindows could not open display. Exiting.") );
260 XSynchronize(xdisplay
, True
);
263 wxApp::ms_display
= (WXDisplay
*) xdisplay
;
265 XSelectInput( xdisplay
, XDefaultRootWindow(xdisplay
), PropertyChangeMask
);
267 wxSetDetectableAutoRepeat( TRUE
);
269 if (!wxApp::Initialize())
279 if ( !wxTheApp
->OnInitGui() )
286 int wxEntry( int argc
, char *argv
[] )
288 #if (defined(__WXDEBUG__) && wxUSE_MEMORY_TRACING) || wxUSE_DEBUG_CONTEXT
289 // This seems to be necessary since there are 'rogue'
290 // objects present at this point (perhaps global objects?)
291 // Setting a checkpoint will ignore them as far as the
292 // memory checking facility is concerned.
293 // Of course you may argue that memory allocated in globals should be
294 // checked, but this is a reasonable compromise.
295 wxDebugContext::SetCheckpoint();
297 int err
= wxEntryStart(argc
, argv
);
303 if (!wxApp::GetInitializerFunction())
305 printf( "wxWindows error: No initializer - use IMPLEMENT_APP macro.\n" );
309 wxTheApp
= (wxApp
*) (* wxApp::GetInitializerFunction()) ();
314 printf( "wxWindows error: wxTheApp == NULL\n" );
318 wxTheApp
->SetClassName(wxFileNameFromPath(argv
[0]));
319 wxTheApp
->SetAppName(wxFileNameFromPath(argv
[0]));
321 // The command line may have been changed
322 // by stripping out -display etc.
325 wxTheApp
->argc
= g_newArgc
;
326 wxTheApp
->argv
= g_newArgv
;
330 wxTheApp
->argc
= argc
;
331 wxTheApp
->argv
= argv
;
333 wxTheApp
->m_showIconic
= g_showIconic
;
334 wxTheApp
->m_initialSize
= g_initialSize
;
337 retValue
= wxEntryInitGui();
339 // Here frames insert themselves automatically into wxTopLevelWindows by
340 // getting created in OnInit().
343 if ( !wxTheApp
->OnInit() )
349 if (wxTheApp
->Initialized()) retValue
= wxTheApp
->OnRun();
352 // flush the logged messages if any
353 wxLog
*pLog
= wxLog::GetActiveTarget();
354 if ( pLog
!= NULL
&& pLog
->HasPendingMessages() )
357 delete wxLog::SetActiveTarget(new wxLogStderr
); // So dialog boxes aren't used
358 // for further messages
360 if (wxTheApp
->GetTopWindow())
362 delete wxTheApp
->GetTopWindow();
363 wxTheApp
->SetTopWindow(NULL
);
366 wxTheApp
->DeletePendingObjects();
375 // Static member initialization
376 wxAppInitializerFunction
wxAppBase::m_appInitFn
= (wxAppInitializerFunction
) NULL
;
383 m_wantDebugOutput
= TRUE
;
387 m_exitOnFrameDelete
= TRUE
;
388 m_mainColormap
= (WXColormap
) NULL
;
389 m_topLevelWidget
= (WXWindow
) NULL
;
390 m_maxRequestSize
= 0;
392 m_showIconic
= FALSE
;
393 m_initialSize
= wxDefaultSize
;
396 bool wxApp::Initialized()
404 int wxApp::MainLoop()
407 m_mainLoop
= new wxEventLoop
;
409 rt
= m_mainLoop
->Run();
417 //-----------------------------------------------------------------------
418 // X11 predicate function for exposure compression
419 //-----------------------------------------------------------------------
424 Bool found_non_matching
;
427 static Bool
expose_predicate (Display
*display
, XEvent
*xevent
, XPointer arg
)
429 wxExposeInfo
*info
= (wxExposeInfo
*) arg
;
431 if (info
->found_non_matching
)
434 if (xevent
->xany
.type
!= Expose
)
436 info
->found_non_matching
= TRUE
;
440 if (xevent
->xexpose
.window
!= info
->window
)
442 info
->found_non_matching
= TRUE
;
451 //-----------------------------------------------------------------------
452 // Processes an X event, returning TRUE if the event was processed.
453 //-----------------------------------------------------------------------
455 bool wxApp::ProcessXEvent(WXEvent
* _event
)
457 XEvent
* event
= (XEvent
*) _event
;
459 wxWindow
* win
= NULL
;
460 Window window
= XEventGetWindow(event
);
461 Window actualWindow
= window
;
463 // Find the first wxWindow that corresponds to this event window
464 // Because we're receiving events after a window
465 // has been destroyed, assume a 1:1 match between
466 // Window and wxWindow, so if it's not in the table,
467 // it must have been destroyed.
469 win
= wxGetWindowFromTable(window
);
474 wxString windowClass
= win
->GetClassInfo()->GetClassName();
481 if (!win
->IsEnabled())
484 wxKeyEvent
keyEvent(wxEVT_KEY_DOWN
);
485 wxTranslateKeyEvent(keyEvent
, win
, window
, event
);
487 // wxLogDebug( "OnKey from %s", win->GetName().c_str() );
489 // We didn't process wxEVT_KEY_DOWN, so send wxEVT_CHAR
490 if (win
->GetEventHandler()->ProcessEvent( keyEvent
))
493 keyEvent
.SetEventType(wxEVT_CHAR
);
494 if (win
->GetEventHandler()->ProcessEvent( keyEvent
))
497 if ( (keyEvent
.m_keyCode
== WXK_TAB
) &&
498 win
->GetParent() && (win
->GetParent()->HasFlag( wxTAB_TRAVERSAL
)) )
500 wxNavigationKeyEvent new_event
;
501 new_event
.SetEventObject( win
->GetParent() );
502 /* GDK reports GDK_ISO_Left_Tab for SHIFT-TAB */
503 new_event
.SetDirection( (keyEvent
.m_keyCode
== WXK_TAB
) );
504 /* CTRL-TAB changes the (parent) window, i.e. switch notebook page */
505 new_event
.SetWindowChange( keyEvent
.ControlDown() );
506 new_event
.SetCurrentFocus( win
);
507 return win
->GetParent()->GetEventHandler()->ProcessEvent( new_event
);
514 if (!win
->IsEnabled())
517 wxKeyEvent
keyEvent(wxEVT_KEY_UP
);
518 wxTranslateKeyEvent(keyEvent
, win
, window
, event
);
520 return win
->GetEventHandler()->ProcessEvent( keyEvent
);
522 case ConfigureNotify
:
525 if (event
->update
.utype
== GR_UPDATE_SIZE
)
528 //wxLogDebug("ConfigureNotify: %s", windowClass.c_str());
529 wxSizeEvent
sizeEvent( wxSize(XConfigureEventGetWidth(event
), XConfigureEventGetHeight(event
)), win
->GetId() );
530 sizeEvent
.SetEventObject( win
);
532 return win
->GetEventHandler()->ProcessEvent( sizeEvent
);
540 //wxLogDebug("PropertyNotify: %s", windowClass.c_str());
541 return HandlePropertyChange(_event
);
545 if (!win
->IsEnabled())
548 Atom wm_delete_window
= XInternAtom(wxGlobalDisplay(), "WM_DELETE_WINDOW", True
);
549 Atom wm_protocols
= XInternAtom(wxGlobalDisplay(), "WM_PROTOCOLS", True
);
551 if (event
->xclient
.message_type
== wm_protocols
)
553 if ((Atom
) (event
->xclient
.data
.l
[0]) == wm_delete_window
)
565 * If resize event, don't resize until the last resize event for this
566 * window is recieved. Prevents flicker as windows are resized.
569 Display
*disp
= (Display
*) wxGetDisplay();
574 while( XCheckTypedWindowEvent (disp
, actualWindow
, ResizeRequest
, &report
));
576 wxSize sz
= win
->GetSize();
577 wxSizeEvent
sizeEvent(sz
, win
->GetId());
578 sizeEvent
.SetEventObject(win
);
580 return win
->GetEventHandler()->ProcessEvent( sizeEvent
);
585 case GR_EVENT_TYPE_CLOSE_REQ
:
598 //wxLogDebug("Expose: %s", windowClass.c_str());
599 win
->GetUpdateRegion().Union( XExposeEventGetX(event
), XExposeEventGetY(event
),
600 XExposeEventGetWidth(event
), XExposeEventGetHeight(event
));
602 win
->GetClearRegion().Union( XExposeEventGetX(event
), XExposeEventGetY(event
),
603 XExposeEventGetWidth(event
), XExposeEventGetHeight(event
));
609 info
.window
= event
->xexpose
.window
;
610 info
.found_non_matching
= FALSE
;
611 while (XCheckIfEvent( wxGlobalDisplay(), &tmp_event
, expose_predicate
, (XPointer
) &info
))
613 win
->GetUpdateRegion().Union( tmp_event
.xexpose
.x
, tmp_event
.xexpose
.y
,
614 tmp_event
.xexpose
.width
, tmp_event
.xexpose
.height
);
616 win
->GetClearRegion().Union( tmp_event
.xexpose
.x
, tmp_event
.xexpose
.y
,
617 tmp_event
.xexpose
.width
, tmp_event
.xexpose
.height
);
621 // Only erase background, paint in idle time.
622 win
->SendEraseEvents();
629 // wxLogDebug( "GraphicsExpose from %s", win->GetName().c_str(),
630 // event->xgraphicsexpose.x, event->xgraphicsexpose.y,
631 // event->xgraphicsexpose.width, event->xgraphicsexpose.height);
633 win
->GetUpdateRegion().Union( event
->xgraphicsexpose
.x
, event
->xgraphicsexpose
.y
,
634 event
->xgraphicsexpose
.width
, event
->xgraphicsexpose
.height
);
636 win
->GetClearRegion().Union( event
->xgraphicsexpose
.x
, event
->xgraphicsexpose
.y
,
637 event
->xgraphicsexpose
.width
, event
->xgraphicsexpose
.height
);
639 if (event
->xgraphicsexpose
.count
== 0)
641 // Only erase background, paint in idle time.
642 win
->SendEraseEvents();
654 if (!win
->IsEnabled())
657 // Here we check if the top level window is
658 // disabled, which is one aspect of modality.
660 while (tlw
&& !tlw
->IsTopLevel())
661 tlw
= tlw
->GetParent();
662 if (tlw
&& !tlw
->IsEnabled())
665 if (event
->type
== ButtonPress
)
667 if ((win
!= wxWindow::FindFocus()) && win
->AcceptsFocus())
669 // This might actually be done in wxWindow::SetFocus()
670 // and not here. TODO.
671 g_prevFocus
= wxWindow::FindFocus();
679 if (event
->type
== LeaveNotify
|| event
->type
== EnterNotify
)
681 // Throw out NotifyGrab and NotifyUngrab
682 if (event
->xcrossing
.mode
!= NotifyNormal
)
686 wxMouseEvent wxevent
;
687 wxTranslateMouseEvent(wxevent
, win
, window
, event
);
688 return win
->GetEventHandler()->ProcessEvent( wxevent
);
693 if ((event
->xfocus
.detail
!= NotifyPointer
) &&
694 (event
->xfocus
.mode
== NotifyNormal
))
697 // wxLogDebug( "FocusIn from %s of type %s", win->GetName().c_str(), win->GetClassInfo()->GetClassName() );
699 wxFocusEvent
focusEvent(wxEVT_SET_FOCUS
, win
->GetId());
700 focusEvent
.SetEventObject(win
);
701 focusEvent
.SetWindow( g_prevFocus
);
704 return win
->GetEventHandler()->ProcessEvent(focusEvent
);
712 if ((event
->xfocus
.detail
!= NotifyPointer
) &&
713 (event
->xfocus
.mode
== NotifyNormal
))
716 // wxLogDebug( "FocusOut from %s of type %s", win->GetName().c_str(), win->GetClassInfo()->GetClassName() );
718 wxFocusEvent
focusEvent(wxEVT_KILL_FOCUS
, win
->GetId());
719 focusEvent
.SetEventObject(win
);
720 focusEvent
.SetWindow( g_nextFocus
);
722 return win
->GetEventHandler()->ProcessEvent(focusEvent
);
730 // Do we want to process this (for top-level windows)?
731 // But we want to be able to veto closes, anyway
739 //wxString eventName = wxGetXEventName(XEvent& event);
740 //wxLogDebug(wxT("Event %s not handled"), eventName.c_str());
749 // Returns TRUE if more time is needed.
750 // Note that this duplicates wxEventLoopImpl::SendIdleEvent
751 // but ProcessIdle may be needed by apps, so is kept.
752 bool wxApp::ProcessIdle()
755 event
.SetEventObject(this);
758 return event
.MoreRequested();
761 void wxApp::ExitMainLoop()
767 // Is a message/event pending?
768 bool wxApp::Pending()
770 return wxEventLoop::GetActive()->Pending();
773 // Dispatch a message.
774 void wxApp::Dispatch()
776 wxEventLoop::GetActive()->Dispatch();
779 // This should be redefined in a derived class for
780 // handling property change events for XAtom IPC.
781 bool wxApp::HandlePropertyChange(WXEvent
*event
)
783 // by default do nothing special
784 // TODO: what to do for X11
785 // XtDispatchEvent((XEvent*) event);
789 void wxApp::OnIdle(wxIdleEvent
& event
)
791 static bool s_inOnIdle
= FALSE
;
793 // Avoid recursion (via ProcessEvent default case)
799 // Resend in the main thread events which have been prepared in other
801 ProcessPendingEvents();
803 // 'Garbage' collection of windows deleted with Close()
804 DeletePendingObjects();
806 // Send OnIdle events to all windows
807 bool needMore
= SendIdleEvents();
810 event
.RequestMore(TRUE
);
817 // **** please implement me! ****
818 // Wake up the idle handler processor, even if it is in another thread...
822 // Send idle event to all top-level windows
823 bool wxApp::SendIdleEvents()
825 bool needMore
= FALSE
;
827 wxWindowList::Node
* node
= wxTopLevelWindows
.GetFirst();
830 wxWindow
* win
= node
->GetData();
831 if (SendIdleEvents(win
))
833 node
= node
->GetNext();
839 // Send idle event to window and all subwindows
840 bool wxApp::SendIdleEvents(wxWindow
* win
)
842 bool needMore
= FALSE
;
845 event
.SetEventObject(win
);
847 win
->GetEventHandler()->ProcessEvent(event
);
849 win
->OnInternalIdle();
851 if (event
.MoreRequested())
854 wxNode
* node
= win
->GetChildren().First();
857 wxWindow
* win
= (wxWindow
*) node
->Data();
858 if (SendIdleEvents(win
))
867 void wxApp::DeletePendingObjects()
869 wxNode
*node
= wxPendingDelete
.First();
872 wxObject
*obj
= (wxObject
*)node
->Data();
876 if (wxPendingDelete
.Member(obj
))
879 // Deleting one object may have deleted other pending
880 // objects, so start from beginning of list again.
881 node
= wxPendingDelete
.First();
885 // Create display, and other initialization
886 bool wxApp::OnInitGui()
888 // Eventually this line will be removed, but for
889 // now we don't want to try popping up a dialog
890 // for error messages.
891 delete wxLog::SetActiveTarget(new wxLogStderr
);
893 if (!wxAppBase::OnInitGui())
896 GetMainColormap( wxApp::GetDisplay() );
898 m_maxRequestSize
= XMaxRequestSize( (Display
*) wxApp::GetDisplay() );
903 WXColormap
wxApp::GetMainColormap(WXDisplay
* display
)
905 if (!display
) /* Must be called first with non-NULL display */
906 return m_mainColormap
;
908 int defaultScreen
= DefaultScreen((Display
*) display
);
909 Screen
* screen
= XScreenOfDisplay((Display
*) display
, defaultScreen
);
911 Colormap c
= DefaultColormapOfScreen(screen
);
914 m_mainColormap
= (WXColormap
) c
;
916 return (WXColormap
) c
;
919 Window
wxGetWindowParent(Window window
)
921 wxASSERT_MSG( window
, "invalid window" );
925 Window parent
, root
= 0;
929 unsigned int noChildren
= 0;
931 Window
* children
= NULL
;
933 // #define XQueryTree(d,w,r,p,c,nc) GrQueryTree(w,p,c,nc)
938 XQueryTree((Display
*) wxGetDisplay(), window
, & root
, & parent
,
939 & children
, & noChildren
);
952 retValue
= wxTheApp
->OnExit();
956 * Exit in some platform-specific way. Not recommended that the app calls this:
957 * only for emergencies.
962 // Yield to other processes
964 bool wxApp::Yield(bool onlyIfNeeded
)
966 bool s_inYield
= FALSE
;
972 wxFAIL_MSG( wxT("wxYield called recursively" ) );
980 while (wxTheApp
&& wxTheApp
->Pending())
981 wxTheApp
->Dispatch();
988 wxIcon
wxApp::GetStdIcon(int which
) const
990 return wxTheme::Get()->GetRenderer()->GetStdIcon(which
);
993 void wxApp::OnAssert(const wxChar
*file
, int line
, const wxChar
*msg
)
995 // While the GUI isn't working that well, just print out the
998 wxAppBase::OnAssert(file
, line
, msg
);
1001 msg2
.Printf("At file %s:%d: %s", file
, line
, msg
);