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"
22 #include "wx/cursor.h"
24 #include "wx/palette.h"
26 #include "wx/dialog.h"
27 #include "wx/msgdlg.h"
29 #include "wx/module.h"
30 #include "wx/memory.h"
33 #include "wx/evtloop.h"
36 #include "wx/thread.h"
39 #if wxUSE_WX_RESOURCES
40 #include "wx/resource.h"
44 #pragma message disable nosimpint
47 #include <X11/Xutil.h>
48 #include <X11/Xresource.h>
49 #include <X11/Xatom.h>
51 #pragma message enable nosimpint
54 #include "wx/x11/private.h"
58 extern char *wxBuffer
;
59 extern wxList wxPendingDelete
;
61 wxApp
*wxTheApp
= NULL
;
63 wxHashTable
*wxWidgetHashTable
= NULL
;
65 IMPLEMENT_DYNAMIC_CLASS(wxApp
, wxEvtHandler
)
67 BEGIN_EVENT_TABLE(wxApp
, wxEvtHandler
)
68 EVT_IDLE(wxApp::OnIdle
)
72 typedef int (*XErrorHandlerFunc
)(Display
*, XErrorEvent
*);
74 XErrorHandlerFunc gs_pfnXErrorHandler
= 0;
76 static int wxXErrorHandler(Display
*dpy
, XErrorEvent
*xevent
)
78 // just forward to the default handler for now
79 return gs_pfnXErrorHandler(dpy
, xevent
);
83 long wxApp::sm_lastMessageTime
= 0;
85 bool wxApp::Initialize()
87 wxBuffer
= new char[BUFSIZ
+ 512];
89 wxClassInfo::InitializeClasses();
91 // GL: I'm annoyed ... I don't know where to put this and I don't want to
92 // create a module for that as it's part of the core.
94 wxPendingEventsLocker
= new wxCriticalSection();
97 wxTheColourDatabase
= new wxColourDatabase(wxKEY_STRING
);
98 wxTheColourDatabase
->Initialize();
100 wxInitializeStockLists();
101 wxInitializeStockObjects();
103 #if wxUSE_WX_RESOURCES
104 wxInitializeResourceSystem();
107 wxBitmap::InitStandardHandlers();
109 wxWidgetHashTable
= new wxHashTable(wxKEY_INTEGER
);
111 wxModule::RegisterModules();
112 if (!wxModule::InitializeModules()) return FALSE
;
117 void wxApp::CleanUp()
119 delete wxWidgetHashTable
;
120 wxWidgetHashTable
= NULL
;
122 wxModule::CleanUpModules();
124 #if wxUSE_WX_RESOURCES
125 wxCleanUpResourceSystem();
128 wxDeleteStockObjects() ;
130 // Destroy all GDI lists, etc.
132 wxDeleteStockLists();
134 delete wxTheColourDatabase
;
135 wxTheColourDatabase
= NULL
;
137 wxBitmap::CleanUpHandlers();
142 wxClassInfo::CleanUpClasses();
147 // GL: I'm annoyed ... I don't know where to put this and I don't want to
148 // create a module for that as it's part of the core.
150 delete wxPendingEvents
;
151 delete wxPendingEventsLocker
;
154 #if (defined(__WXDEBUG__) && wxUSE_MEMORY_TRACING) || wxUSE_DEBUG_CONTEXT
155 // At this point we want to check if there are any memory
156 // blocks that aren't part of the wxDebugContext itself,
157 // as a special case. Then when dumping we need to ignore
158 // wxDebugContext, too.
159 if (wxDebugContext::CountObjectsLeft(TRUE
) > 0)
161 wxLogDebug("There were memory leaks.\n");
162 wxDebugContext::Dump();
163 wxDebugContext::PrintStatistics();
167 // do it as the very last thing because everything else can log messages
168 wxLog::DontCreateOnDemand();
169 // do it as the very last thing because everything else can log messages
170 delete wxLog::SetActiveTarget(NULL
);
173 int wxEntry( int argc
, char *argv
[] )
175 #if (defined(__WXDEBUG__) && wxUSE_MEMORY_TRACING) || wxUSE_DEBUG_CONTEXT
176 // This seems to be necessary since there are 'rogue'
177 // objects present at this point (perhaps global objects?)
178 // Setting a checkpoint will ignore them as far as the
179 // memory checking facility is concerned.
180 // Of course you may argue that memory allocated in globals should be
181 // checked, but this is a reasonable compromise.
182 wxDebugContext::SetCheckpoint();
185 if (!wxApp::Initialize())
190 if (!wxApp::GetInitializerFunction())
192 printf( "wxWindows error: No initializer - use IMPLEMENT_APP macro.\n" );
196 wxTheApp
= (wxApp
*) (* wxApp::GetInitializerFunction()) ();
201 printf( "wxWindows error: wxTheApp == NULL\n" );
205 wxTheApp
->SetClassName(wxFileNameFromPath(argv
[0]));
206 wxTheApp
->SetAppName(wxFileNameFromPath(argv
[0]));
208 wxTheApp
->argc
= argc
;
209 wxTheApp
->argv
= argv
;
211 // GUI-specific initialization, such as creating an app context.
212 wxTheApp
->OnInitGui();
214 // Here frames insert themselves automatically into wxTopLevelWindows by
215 // getting created in OnInit().
218 if (wxTheApp
->OnInit())
220 if (wxTheApp
->Initialized()) retValue
= wxTheApp
->OnRun();
223 // flush the logged messages if any
224 wxLog
*pLog
= wxLog::GetActiveTarget();
225 if ( pLog
!= NULL
&& pLog
->HasPendingMessages() )
228 delete wxLog::SetActiveTarget(new wxLogStderr
); // So dialog boxes aren't used
229 // for further messages
231 if (wxTheApp
->GetTopWindow())
233 delete wxTheApp
->GetTopWindow();
234 wxTheApp
->SetTopWindow(NULL
);
237 wxTheApp
->DeletePendingObjects();
246 // Static member initialization
247 wxAppInitializerFunction
wxAppBase::m_appInitFn
= (wxAppInitializerFunction
) NULL
;
254 m_wantDebugOutput
= TRUE
;
258 m_exitOnFrameDelete
= TRUE
;
259 m_mainColormap
= (WXColormap
) NULL
;
260 m_topLevelWidget
= (WXWindow
) NULL
;
261 m_maxRequestSize
= 0;
262 m_initialDisplay
= (WXDisplay
*) 0;
266 bool wxApp::Initialized()
274 int wxApp::MainLoop()
277 m_mainLoop
= new wxEventLoop
;
279 rt
= m_mainLoop
->Run();
286 // Processes an X event.
287 void wxApp::ProcessXEvent(WXEvent
* _event
)
289 XEvent
* event
= (XEvent
*) _event
;
291 wxWindow
* win
= NULL
;
292 Window window
= event
->xany
.window
;
293 Window actualWindow
= window
;
295 // Find the first wxWindow that corresponds to this event window
296 // TODO: may need to translate coordinates from actualWindow
297 // to window, if the receiving window != wxWindow window
298 while (window
&& !(win
= wxGetWindowFromTable(window
)))
299 window
= XGetParent(window
);
301 // TODO: shouldn't all the ProcessEvents below
302 // be win->GetEventHandler()->ProcessEvent?
307 if (CheckForAccelerator(_event
))
309 // Do nothing! We intercepted and processed the event as an
317 wxKeyEvent
keyEvent(wxEVT_KEY_DOWN
);
318 wxTranslateKeyEvent(keyEvent
, win
, window
, xEvent
);
320 // We didn't process wxEVT_KEY_DOWN, so send
322 if (!win
->ProcessEvent( keyEvent
))
324 keyEvent
.SetEventType(wxEVT_KEY_CHAR
);
325 win
->ProcessEvent( keyEvent
);
328 // We intercepted and processed the key down event
338 wxKeyEvent
keyEvent(wxEVT_KEY_UP
);
339 wxTranslateKeyEvent(keyEvent
, win
, window
, event
);
341 win
->ProcessEvent( keyEvent
);
347 HandlePropertyChange(_event
);
352 /* Terry Gitnick <terryg@scientech.com> - 1/21/98
353 * If resize event, don't resize until the last resize event for this
354 * window is recieved. Prevents flicker as windows are resized.
357 Display
*disp
= wxGetDisplay();
362 while( XCheckTypedWindowEvent (disp
, actualWindow
, ResizeRequest
, &report
));
364 // TODO: when implementing refresh optimization, we can use
365 // XtAddExposureToRegion to expand the window's paint region.
369 wxSize sz
= win
->GetSize();
370 wxSizeEvent
sizeEvent(sz
, win
->GetId());
371 sizeEvent
.SetEventObject(win
);
373 win
->ProcessEvent( wxevent
);
382 win
->AddUpdateRect(event
->xexpose
.x
, event
->xexpose
.y
,
383 event
->xexpose
.width
, event
->xexpose
.height
);
385 if (event
-> xexpose
.count
== 0)
388 win
->ClearUpdateRects();
402 wxMouseEvent wxevent
;
403 wxTranslateMouseEvent(wxevent
, win
, window
, event
);
404 win
->ProcessEvent( wxevent
);
410 if (win
&& event
->xfocus
.detail
!= NotifyPointer
)
412 wxFocusEvent
focusEvent(wxEVT_SET_FOCUS
, win
->GetId());
413 focusEvent
.SetEventObject(win
);
414 win
->ProcessEvent(focusEvent
);
420 if (win
&& event
->xfocus
.detail
!= NotifyPointer
)
422 wxFocusEvent
focusEvent(wxEVT_KILL_FOCUS
, win
->GetId());
423 focusEvent
.SetEventObject(win
);
424 win
->ProcessEvent(focusEvent
);
435 // Returns TRUE if more time is needed.
436 // Note that this duplicates wxEventLoopImpl::SendIdleEvent
437 // but ProcessIdle may be needed by apps, so is kept.
438 bool wxApp::ProcessIdle()
441 event
.SetEventObject(this);
444 return event
.MoreRequested();
447 void wxApp::ExitMainLoop()
453 // Is a message/event pending?
454 bool wxApp::Pending()
456 return wxEventLoop::GetActive()->Pending();
459 // Dispatch a message.
460 void wxApp::Dispatch()
462 wxEventLoop::GetActive()->Dispatch();
465 // This should be redefined in a derived class for
466 // handling property change events for XAtom IPC.
467 void wxApp::HandlePropertyChange(WXEvent
*event
)
469 // by default do nothing special
470 // TODO: what to do for X11
471 // XtDispatchEvent((XEvent*) event); /* let Motif do the work */
474 void wxApp::OnIdle(wxIdleEvent
& event
)
476 static bool inOnIdle
= FALSE
;
478 // Avoid recursion (via ProcessEvent default case)
484 // If there are pending events, we must process them: pending events
485 // are either events to the threads other than main or events posted
486 // with wxPostEvent() functions
487 // GRG: I have moved this here so that all pending events are processed
488 // before starting to delete any objects. This behaves better (in
489 // particular, wrt wxPostEvent) and is coherent with wxGTK's current
490 // behaviour. Also removed the '#if wxUSE_THREADS' around it.
491 // Changed Mar/2000 before 2.1.14
493 // Flush pending events.
494 ProcessPendingEvents();
496 // 'Garbage' collection of windows deleted with Close().
497 DeletePendingObjects();
499 // flush the logged messages if any
500 wxLog
*pLog
= wxLog::GetActiveTarget();
501 if ( pLog
!= NULL
&& pLog
->HasPendingMessages() )
504 // Send OnIdle events to all windows
505 bool needMore
= SendIdleEvents();
508 event
.RequestMore(TRUE
);
515 // **** please implement me! ****
516 // Wake up the idle handler processor, even if it is in another thread...
520 // Send idle event to all top-level windows
521 bool wxApp::SendIdleEvents()
523 bool needMore
= FALSE
;
525 wxWindowList::Node
* node
= wxTopLevelWindows
.GetFirst();
528 wxWindow
* win
= node
->GetData();
529 if (SendIdleEvents(win
))
531 node
= node
->GetNext();
537 // Send idle event to window and all subwindows
538 bool wxApp::SendIdleEvents(wxWindow
* win
)
540 bool needMore
= FALSE
;
543 event
.SetEventObject(win
);
544 win
->ProcessEvent(event
);
546 if (event
.MoreRequested())
549 wxNode
* node
= win
->GetChildren().First();
552 wxWindow
* win
= (wxWindow
*) node
->Data();
553 if (SendIdleEvents(win
))
561 void wxApp::DeletePendingObjects()
563 wxNode
*node
= wxPendingDelete
.First();
566 wxObject
*obj
= (wxObject
*)node
->Data();
570 if (wxPendingDelete
.Member(obj
))
573 // Deleting one object may have deleted other pending
574 // objects, so start from beginning of list again.
575 node
= wxPendingDelete
.First();
579 // Create an application context
580 bool wxApp::OnInitGui()
582 // TODO: parse argv and get display to pass to XOpenDisplay
583 Display
* dpy
= XOpenDisplay(NULL
);
584 m_initialDisplay
= (WXDisplay
*) dpy
;
587 wxString
className(wxTheApp
->GetClassName());
588 wxLogError(_("wxWindows could not open display for '%s': exiting."),
589 (const char*) className
);
592 XSelectInput(m_initialDisplay
,
593 XDefaultRootWindow(m_initialDisplay
),
597 // install the X error handler
598 gs_pfnXErrorHandler
= XSetErrorHandler(wxXErrorHandler
);
599 #endif // __WXDEBUG__
601 GetMainColormap(dpy
);
602 m_maxRequestSize
= XMaxRequestSize((Display
*) dpy
);
607 WXColormap
wxApp::GetMainColormap(WXDisplay
* display
)
609 if (!display
) /* Must be called first with non-NULL display */
610 return m_mainColormap
;
612 int defaultScreen
= DefaultScreen((Display
*) display
);
613 Screen
* screen
= XScreenOfDisplay((Display
*) display
, defaultScreen
);
615 Colormap c
= DefaultColormapOfScreen(screen
);
618 m_mainColormap
= (WXColormap
) c
;
620 return (WXColormap
) c
;
623 static Window
XGetParent(Window window
)
625 Window parent
, root
= 0;
626 unsigned int noChildren
= 0;
627 if (XQueryTree(wxGetDisplay(), window
, & root
, & parent
,
634 // Returns TRUE if an accelerator has been processed
635 bool wxApp::CheckForAccelerator(WXEvent
* event
)
637 XEvent
* xEvent
= (XEvent
*) event
;
638 if (xEvent
->xany
.type
== KeyPress
)
640 // Find a wxWindow for this window
641 // TODO: should get display for the window, not the current display
642 Window window
= xEvent
->xany
.window
;
643 wxWindow
* win
= NULL
;
645 // Find the first wxWindow that corresponds to this event window
646 while (window
&& !(win
= wxGetWindowFromTable(window
)))
647 window
= XGetParent(window
);
652 wxKeyEvent
keyEvent(wxEVT_CHAR
);
653 wxTranslateKeyEvent(keyEvent
, win
, (Window
) 0, xEvent
);
655 // Now we have a wxKeyEvent and we have a wxWindow.
656 // Go up the hierarchy until we find a matching accelerator,
657 // or we get to the top.
660 if (win
->ProcessAccelerator(keyEvent
))
662 win
= win
->GetParent();
673 retValue
= wxTheApp
->OnExit();
677 * Exit in some platform-specific way. Not recommended that the app calls this:
678 * only for emergencies.
683 // Yield to other processes
685 bool wxApp::Yield(bool onlyIfNeeded
)
687 bool s_inYield
= FALSE
;
693 wxFAIL_MSG( wxT("wxYield called recursively" ) );
701 while (wxTheApp
&& wxTheApp
->Pending())
702 wxTheApp
->Dispatch();
709 // TODO use XmGetPixmap (?) to get the really standard icons!
711 // XPM hack: make the arrays const
712 #define static static const
714 #include "wx/generic/info.xpm"
715 #include "wx/generic/error.xpm"
716 #include "wx/generic/question.xpm"
717 #include "wx/generic/warning.xpm"
722 wxApp::GetStdIcon(int which
) const
726 case wxICON_INFORMATION
:
727 return wxIcon(info_xpm
);
729 case wxICON_QUESTION
:
730 return wxIcon(question_xpm
);
732 case wxICON_EXCLAMATION
:
733 return wxIcon(warning_xpm
);
736 wxFAIL_MSG("requested non existent standard icon");
737 // still fall through
740 return wxIcon(error_xpm
);
744 // ----------------------------------------------------------------------------
745 // accessors for C modules
746 // ----------------------------------------------------------------------------
749 extern "C" XtAppContext
wxGetAppContext()
751 return (XtAppContext
)wxTheApp
->GetAppContext();