1 /////////////////////////////////////////////////////////////////////////////
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
13 #pragma implementation "app.h"
17 #define XtParent XTPARENT
18 #define XtDisplay XTDISPLAY
23 #include "wx/module.h"
24 #include "wx/memory.h"
27 #include "wx/evtloop.h"
29 #include "wx/hashmap.h"
32 #include "wx/thread.h"
36 #pragma message disable nosimpint
40 #include <X11/Xutil.h>
41 #include <X11/Xresource.h>
42 #include <X11/Xatom.h>
44 #pragma message enable nosimpint
47 #include "wx/motif/private.h"
51 struct wxPerDisplayData
54 { m_visualInfo
= NULL
; m_topLevelWidget
= NULL
; }
56 wxXVisualInfo
* m_visualInfo
;
57 Widget m_topLevelWidget
;
60 WX_DECLARE_VOIDPTR_HASH_MAP( wxPerDisplayData
, wxPerDisplayDataMap
);
62 static void wxTLWidgetDestroyCallback(Widget w
, XtPointer clientData
,
64 static WXWidget
wxCreateTopLevelWidget( WXDisplay
* display
);
66 extern wxList wxPendingDelete
;
67 extern bool wxAddIdleCallback();
69 wxApp
*wxTheApp
= NULL
;
71 wxHashTable
*wxWidgetHashTable
= NULL
;
73 IMPLEMENT_DYNAMIC_CLASS(wxApp
, wxEvtHandler
)
75 BEGIN_EVENT_TABLE(wxApp
, wxEvtHandler
)
76 EVT_IDLE(wxApp::OnIdle
)
80 typedef int (*XErrorHandlerFunc
)(Display
*, XErrorEvent
*);
82 XErrorHandlerFunc gs_pfnXErrorHandler
= 0;
84 static int wxXErrorHandler(Display
*dpy
, XErrorEvent
*xevent
)
86 // just forward to the default handler for now
87 return gs_pfnXErrorHandler(dpy
, xevent
);
91 bool wxApp::Initialize()
93 wxClassInfo::InitializeClasses();
95 // GL: I'm annoyed ... I don't know where to put this and I don't want to
96 // create a module for that as it's part of the core.
98 wxPendingEventsLocker
= new wxCriticalSection();
101 wxTheColourDatabase
= new wxColourDatabase(wxKEY_STRING
);
102 wxTheColourDatabase
->Initialize();
104 wxInitializeStockLists();
105 wxInitializeStockObjects();
107 wxWidgetHashTable
= new wxHashTable(wxKEY_INTEGER
);
109 wxModule::RegisterModules();
110 if (!wxModule::InitializeModules()) return FALSE
;
115 void wxApp::CleanUp()
117 wxModule::CleanUpModules();
119 wxDeleteStockObjects() ;
121 // Destroy all GDI lists, etc.
123 wxDeleteStockLists();
125 delete wxTheColourDatabase
;
126 wxTheColourDatabase
= NULL
;
128 wxClassInfo::CleanUpClasses();
133 delete wxWidgetHashTable
;
134 wxWidgetHashTable
= NULL
;
136 // GL: I'm annoyed ... I don't know where to put this and I don't want to
137 // create a module for that as it's part of the core.
139 delete wxPendingEvents
;
140 wxPendingEvents
= NULL
;
141 delete wxPendingEventsLocker
;
142 wxPendingEventsLocker
= NULL
;
145 #if (defined(__WXDEBUG__) && wxUSE_MEMORY_TRACING) || wxUSE_DEBUG_CONTEXT
146 // At this point we want to check if there are any memory
147 // blocks that aren't part of the wxDebugContext itself,
148 // as a special case. Then when dumping we need to ignore
149 // wxDebugContext, too.
150 if (wxDebugContext::CountObjectsLeft(TRUE
) > 0)
152 wxLogDebug("There were memory leaks.\n");
153 wxDebugContext::Dump();
154 wxDebugContext::PrintStatistics();
158 // do it as the very last thing because everything else can log messages
159 wxLog::DontCreateOnDemand();
160 // do it as the very last thing because everything else can log messages
161 delete wxLog::SetActiveTarget(NULL
);
168 wxAppConsole::Exit();
171 // ============================================================================
173 // ============================================================================
175 int wxEntryStart( int argc
, char* argv
[] )
177 #if (defined(__WXDEBUG__) && wxUSE_MEMORY_TRACING) || wxUSE_DEBUG_CONTEXT
178 // This seems to be necessary since there are 'rogue'
179 // objects present at this point (perhaps global objects?)
180 // Setting a checkpoint will ignore them as far as the
181 // memory checking facility is concerned.
182 // Of course you may argue that memory allocated in globals should be
183 // checked, but this is a reasonable compromise.
184 wxDebugContext::SetCheckpoint();
187 if (!wxApp::Initialize())
197 // GUI-specific initialization, such as creating an app context.
198 if (!wxTheApp
->OnInitGui())
204 void wxEntryCleanup()
206 // So dialog boxes aren't used for further messages
207 delete wxLog::SetActiveTarget(new wxLogStderr
);
209 // flush the logged messages if any
210 wxLog
*pLog
= wxLog::GetActiveTarget();
211 if ( pLog
!= NULL
&& pLog
->HasPendingMessages() )
217 int wxEntry( int argc
, char *argv
[] )
221 retValue
= wxEntryStart( argc
, argv
);
222 if (retValue
) return retValue
;
226 if (!wxApp::GetInitializerFunction())
228 printf( "wxWindows error: No initializer - use IMPLEMENT_APP macro.\n" );
232 wxTheApp
= (wxApp
*) (* wxApp::GetInitializerFunction()) ();
237 printf( "wxWindows error: wxTheApp == NULL\n" );
241 wxTheApp
->SetClassName(wxFileNameFromPath(argv
[0]));
242 wxTheApp
->SetAppName(wxFileNameFromPath(argv
[0]));
244 wxTheApp
->argc
= argc
;
245 wxTheApp
->argv
= argv
;
247 // GUI-specific initialization, such as creating an app context.
248 retValue
= wxEntryInitGui();
249 if (retValue
) return retValue
;
251 // Here frames insert themselves automatically into wxTopLevelWindows by
252 // getting created in OnInit().
254 if (wxTheApp
->OnInit())
256 if (wxTheApp
->Initialized())
260 if (wxTheApp
->GetTopWindow())
262 delete wxTheApp
->GetTopWindow();
263 wxTheApp
->SetTopWindow(NULL
);
266 wxTheApp
->DeletePendingObjects();
268 retValue
= wxTheApp
->OnExit();
275 // Static member initialization
276 wxAppInitializerFunction
wxAppBase::m_appInitFn
= (wxAppInitializerFunction
) NULL
;
283 m_eventLoop
= new wxEventLoop
;
284 m_mainColormap
= (WXColormap
) NULL
;
285 m_appContext
= (WXAppContext
) NULL
;
286 m_initialDisplay
= (WXDisplay
*) 0;
287 m_perDisplayData
= new wxPerDisplayDataMap
;
294 for( wxPerDisplayDataMap::iterator it
= m_perDisplayData
->begin(),
295 end
= m_perDisplayData
->end();
298 delete it
->second
.m_visualInfo
;
299 XtDestroyWidget( it
->second
.m_topLevelWidget
);
302 delete m_perDisplayData
;
307 bool wxApp::Initialized()
315 int wxApp::MainLoop()
318 * Sit around forever waiting to process X-events. Property Change
319 * event are handled special, because they have to refer to
320 * the root window rather than to a widget. therefore we can't
321 * use an Xt-eventhandler.
324 XSelectInput(XtDisplay((Widget
) wxTheApp
->GetTopLevelWidget()),
325 XDefaultRootWindow(XtDisplay((Widget
) wxTheApp
->GetTopLevelWidget())),
333 // Processes an idle event.
334 // Returns TRUE if more time is needed.
335 bool wxApp::ProcessIdle()
339 return ProcessEvent(event
) && event
.MoreRequested();
342 void wxApp::ExitMainLoop()
344 if( m_eventLoop
->IsRunning() )
348 // Is a message/event pending?
349 bool wxApp::Pending()
351 return m_eventLoop
->Pending();
353 XFlush(XtDisplay( (Widget
) wxTheApp
->GetTopLevelWidget() ));
355 // Fix by Doug from STI, to prevent a stall if non-X event
357 return ((XtAppPending( (XtAppContext
) GetAppContext() ) & XtIMXEvent
) != 0) ;
361 // Dispatch a message.
362 void wxApp::Dispatch()
364 m_eventLoop
->Dispatch();
367 // This should be redefined in a derived class for
368 // handling property change events for XAtom IPC.
369 void wxApp::HandlePropertyChange(WXEvent
*event
)
371 // by default do nothing special
372 XtDispatchEvent((XEvent
*) event
); /* let Motif do the work */
375 void wxApp::OnIdle(wxIdleEvent
& event
)
377 static bool inOnIdle
= FALSE
;
379 // Avoid recursion (via ProcessEvent default case)
385 // If there are pending events, we must process them: pending events
386 // are either events to the threads other than main or events posted
387 // with wxPostEvent() functions
388 // GRG: I have moved this here so that all pending events are processed
389 // before starting to delete any objects. This behaves better (in
390 // particular, wrt wxPostEvent) and is coherent with wxGTK's current
391 // behaviour. Also removed the '#if wxUSE_THREADS' around it.
392 // Changed Mar/2000 before 2.1.14
394 // Flush pending events.
395 ProcessPendingEvents();
397 // 'Garbage' collection of windows deleted with Close().
398 DeletePendingObjects();
400 // flush the logged messages if any
401 wxLog
*pLog
= wxLog::GetActiveTarget();
402 if ( pLog
!= NULL
&& pLog
->HasPendingMessages() )
405 // Send OnIdle events to all windows
406 bool needMore
= SendIdleEvents();
409 event
.RequestMore(TRUE
);
414 // Send idle event to all top-level windows
415 bool wxApp::SendIdleEvents()
417 bool needMore
= FALSE
;
419 wxWindowList::Node
* node
= wxTopLevelWindows
.GetFirst();
422 wxWindow
* win
= node
->GetData();
423 if (SendIdleEvents(win
))
425 node
= node
->GetNext();
431 // Send idle event to window and all subwindows
432 bool wxApp::SendIdleEvents(wxWindow
* win
)
434 bool needMore
= FALSE
;
437 event
.SetEventObject(win
);
438 win
->GetEventHandler()->ProcessEvent(event
);
440 if (event
.MoreRequested())
443 wxWindowList::Node
* node
= win
->GetChildren().GetFirst();
446 wxWindow
* win
= node
->GetData();
447 if (SendIdleEvents(win
))
450 node
= node
->GetNext();
455 void wxApp::DeletePendingObjects()
457 wxList::Node
*node
= wxPendingDelete
.GetFirst();
460 wxObject
*obj
= node
->GetData();
464 if (wxPendingDelete
.Member(obj
))
467 // Deleting one object may have deleted other pending
468 // objects, so start from beginning of list again.
469 node
= wxPendingDelete
.GetFirst();
473 static char *fallbackResources
[] = {
474 "*menuBar.marginHeight: 0",
475 "*menuBar.shadowThickness: 1",
476 "*background: #c0c0c0",
477 "*foreground: black",
481 // Create an application context
482 bool wxApp::OnInitGui()
484 if( !wxAppBase::OnInitGui() )
487 XtToolkitInitialize() ;
488 wxTheApp
->m_appContext
= (WXAppContext
) XtCreateApplicationContext();
489 XtAppSetFallbackResources((XtAppContext
) wxTheApp
->m_appContext
, fallbackResources
);
491 Display
*dpy
= XtOpenDisplay((XtAppContext
) wxTheApp
->m_appContext
,(String
)NULL
,NULL
,
492 wxTheApp
->GetClassName().c_str(), NULL
, 0,
493 # if XtSpecificationRelease < 5
501 // if you don't log to stderr, nothing will be shown...
502 delete wxLog::SetActiveTarget(new wxLogStderr
);
503 wxString
className(wxTheApp
->GetClassName());
504 wxLogError(_("wxWindows could not open display for '%s': exiting."),
508 m_initialDisplay
= (WXDisplay
*) dpy
;
511 // install the X error handler
512 gs_pfnXErrorHandler
= XSetErrorHandler(wxXErrorHandler
);
513 #endif // __WXDEBUG__
515 // Add general resize proc
517 rec
.string
= "resize";
518 rec
.proc
= (XtActionProc
)wxWidgetResizeProc
;
519 XtAppAddActions((XtAppContext
) wxTheApp
->m_appContext
, &rec
, 1);
521 GetMainColormap(dpy
);
528 WXColormap
wxApp::GetMainColormap(WXDisplay
* display
)
530 if (!display
) /* Must be called first with non-NULL display */
531 return m_mainColormap
;
533 int defaultScreen
= DefaultScreen((Display
*) display
);
534 Screen
* screen
= XScreenOfDisplay((Display
*) display
, defaultScreen
);
536 Colormap c
= DefaultColormapOfScreen(screen
);
539 m_mainColormap
= (WXColormap
) c
;
541 return (WXColormap
) c
;
544 wxXVisualInfo
* wxApp::GetVisualInfo( WXDisplay
* display
)
546 wxPerDisplayDataMap::iterator it
= m_perDisplayData
->find( display
);
548 if( it
!= m_perDisplayData
->end() && it
->second
.m_visualInfo
)
549 return it
->second
.m_visualInfo
;
551 wxXVisualInfo
* vi
= new wxXVisualInfo
;
552 wxFillXVisualInfo( vi
, (Display
*)display
);
554 (*m_perDisplayData
)[display
].m_visualInfo
= vi
;
559 static void wxTLWidgetDestroyCallback(Widget w
, XtPointer clientData
,
563 wxTheApp
->SetTopLevelWidget( (WXDisplay
*)XtDisplay(w
),
567 WXWidget
wxCreateTopLevelWidget( WXDisplay
* display
)
569 Widget tlw
= XtAppCreateShell( (String
)NULL
,
570 wxTheApp
->GetClassName().c_str(),
571 applicationShellWidgetClass
,
574 XtSetMappedWhenManaged( tlw
, False
);
575 XtRealizeWidget( tlw
);
577 XtAddCallback( tlw
, XmNdestroyCallback
,
578 (XtCallbackProc
)wxTLWidgetDestroyCallback
,
581 return (WXWidget
)tlw
;
584 WXWidget
wxApp::GetTopLevelWidget()
586 WXDisplay
* display
= wxGetDisplay();
587 wxPerDisplayDataMap::iterator it
= m_perDisplayData
->find( display
);
589 if( it
!= m_perDisplayData
->end() && it
->second
.m_topLevelWidget
)
590 return (WXWidget
)it
->second
.m_topLevelWidget
;
592 WXWidget tlw
= wxCreateTopLevelWidget( display
);
593 SetTopLevelWidget( display
, tlw
);
598 void wxApp::SetTopLevelWidget(WXDisplay
* display
, WXWidget widget
)
600 (*m_perDisplayData
)[display
].m_topLevelWidget
= (Widget
)widget
;
603 // Yield to other processes
605 bool wxApp::Yield(bool onlyIfNeeded
)
607 bool s_inYield
= FALSE
;
613 wxFAIL_MSG( wxT("wxYield called recursively" ) );
621 while (wxTheApp
&& wxTheApp
->Pending())
622 wxTheApp
->Dispatch();
629 // ----------------------------------------------------------------------------
630 // accessors for C modules
631 // ----------------------------------------------------------------------------
633 extern "C" XtAppContext
wxGetAppContext()
635 return (XtAppContext
)wxTheApp
->GetAppContext();