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 wxHashTable
*wxWidgetHashTable
= NULL
;
71 IMPLEMENT_DYNAMIC_CLASS(wxApp
, wxEvtHandler
)
73 BEGIN_EVENT_TABLE(wxApp
, wxEvtHandler
)
74 EVT_IDLE(wxAppBase::OnIdle
)
78 typedef int (*XErrorHandlerFunc
)(Display
*, XErrorEvent
*);
80 XErrorHandlerFunc gs_pfnXErrorHandler
= 0;
82 static int wxXErrorHandler(Display
*dpy
, XErrorEvent
*xevent
)
84 // just forward to the default handler for now
85 return gs_pfnXErrorHandler(dpy
, xevent
);
89 bool wxApp::Initialize(int& argc
, wxChar
**argv
)
91 if ( !wxAppBase::Initialize(argc
, argv
) )
94 wxWidgetHashTable
= new wxHashTable(wxKEY_INTEGER
);
101 delete wxWidgetHashTable
;
102 wxWidgetHashTable
= NULL
;
104 wxAppBase::CleanUp();
111 wxAppConsole::Exit();
114 // ============================================================================
116 // ============================================================================
123 m_eventLoop
= new wxEventLoop
;
124 m_mainColormap
= (WXColormap
) NULL
;
125 m_appContext
= (WXAppContext
) NULL
;
126 m_initialDisplay
= (WXDisplay
*) 0;
127 m_perDisplayData
= new wxPerDisplayDataMap
;
134 for( wxPerDisplayDataMap::iterator it
= m_perDisplayData
->begin(),
135 end
= m_perDisplayData
->end();
138 delete it
->second
.m_visualInfo
;
139 XtDestroyWidget( it
->second
.m_topLevelWidget
);
142 delete m_perDisplayData
;
147 bool wxApp::Initialized()
155 int wxApp::MainLoop()
158 * Sit around forever waiting to process X-events. Property Change
159 * event are handled special, because they have to refer to
160 * the root window rather than to a widget. therefore we can't
161 * use an Xt-eventhandler.
164 XSelectInput(XtDisplay((Widget
) wxTheApp
->GetTopLevelWidget()),
165 XDefaultRootWindow(XtDisplay((Widget
) wxTheApp
->GetTopLevelWidget())),
173 void wxApp::ExitMainLoop()
175 if( m_eventLoop
->IsRunning() )
179 // Is a message/event pending?
180 bool wxApp::Pending()
182 return m_eventLoop
->Pending();
184 XFlush(XtDisplay( (Widget
) wxTheApp
->GetTopLevelWidget() ));
186 // Fix by Doug from STI, to prevent a stall if non-X event
188 return ((XtAppPending( (XtAppContext
) GetAppContext() ) & XtIMXEvent
) != 0) ;
192 // Dispatch a message.
193 void wxApp::Dispatch()
195 m_eventLoop
->Dispatch();
198 // This should be redefined in a derived class for
199 // handling property change events for XAtom IPC.
200 void wxApp::HandlePropertyChange(WXEvent
*event
)
202 // by default do nothing special
203 XtDispatchEvent((XEvent
*) event
); /* let Motif do the work */
206 static char *fallbackResources
[] = {
207 "*menuBar.marginHeight: 0",
208 "*menuBar.shadowThickness: 1",
209 "*background: #c0c0c0",
210 "*foreground: black",
214 // Create an application context
215 bool wxApp::OnInitGui()
217 if( !wxAppBase::OnInitGui() )
220 XtToolkitInitialize() ;
221 wxTheApp
->m_appContext
= (WXAppContext
) XtCreateApplicationContext();
222 XtAppSetFallbackResources((XtAppContext
) wxTheApp
->m_appContext
, fallbackResources
);
224 Display
*dpy
= XtOpenDisplay((XtAppContext
) wxTheApp
->m_appContext
,(String
)NULL
,NULL
,
225 wxTheApp
->GetClassName().c_str(), NULL
, 0,
226 # if XtSpecificationRelease < 5
234 // if you don't log to stderr, nothing will be shown...
235 delete wxLog::SetActiveTarget(new wxLogStderr
);
236 wxString
className(wxTheApp
->GetClassName());
237 wxLogError(_("wxWindows could not open display for '%s': exiting."),
241 m_initialDisplay
= (WXDisplay
*) dpy
;
244 // install the X error handler
245 gs_pfnXErrorHandler
= XSetErrorHandler(wxXErrorHandler
);
246 #endif // __WXDEBUG__
248 // Add general resize proc
250 rec
.string
= "resize";
251 rec
.proc
= (XtActionProc
)wxWidgetResizeProc
;
252 XtAppAddActions((XtAppContext
) wxTheApp
->m_appContext
, &rec
, 1);
254 GetMainColormap(dpy
);
261 WXColormap
wxApp::GetMainColormap(WXDisplay
* display
)
263 if (!display
) /* Must be called first with non-NULL display */
264 return m_mainColormap
;
266 int defaultScreen
= DefaultScreen((Display
*) display
);
267 Screen
* screen
= XScreenOfDisplay((Display
*) display
, defaultScreen
);
269 Colormap c
= DefaultColormapOfScreen(screen
);
272 m_mainColormap
= (WXColormap
) c
;
274 return (WXColormap
) c
;
277 wxXVisualInfo
* wxApp::GetVisualInfo( WXDisplay
* display
)
279 wxPerDisplayDataMap::iterator it
= m_perDisplayData
->find( display
);
281 if( it
!= m_perDisplayData
->end() && it
->second
.m_visualInfo
)
282 return it
->second
.m_visualInfo
;
284 wxXVisualInfo
* vi
= new wxXVisualInfo
;
285 wxFillXVisualInfo( vi
, (Display
*)display
);
287 (*m_perDisplayData
)[display
].m_visualInfo
= vi
;
292 static void wxTLWidgetDestroyCallback(Widget w
, XtPointer clientData
,
296 wxTheApp
->SetTopLevelWidget( (WXDisplay
*)XtDisplay(w
),
300 WXWidget
wxCreateTopLevelWidget( WXDisplay
* display
)
302 Widget tlw
= XtAppCreateShell( (String
)NULL
,
303 wxTheApp
->GetClassName().c_str(),
304 applicationShellWidgetClass
,
307 XtSetMappedWhenManaged( tlw
, False
);
308 XtRealizeWidget( tlw
);
310 XtAddCallback( tlw
, XmNdestroyCallback
,
311 (XtCallbackProc
)wxTLWidgetDestroyCallback
,
314 return (WXWidget
)tlw
;
317 WXWidget
wxApp::GetTopLevelWidget()
319 WXDisplay
* display
= wxGetDisplay();
320 wxPerDisplayDataMap::iterator it
= m_perDisplayData
->find( display
);
322 if( it
!= m_perDisplayData
->end() && it
->second
.m_topLevelWidget
)
323 return (WXWidget
)it
->second
.m_topLevelWidget
;
325 WXWidget tlw
= wxCreateTopLevelWidget( display
);
326 SetTopLevelWidget( display
, tlw
);
331 void wxApp::SetTopLevelWidget(WXDisplay
* display
, WXWidget widget
)
333 (*m_perDisplayData
)[display
].m_topLevelWidget
= (Widget
)widget
;
336 // Yield to other processes
338 bool wxApp::Yield(bool onlyIfNeeded
)
340 bool s_inYield
= FALSE
;
346 wxFAIL_MSG( wxT("wxYield called recursively" ) );
354 while (wxTheApp
&& wxTheApp
->Pending())
355 wxTheApp
->Dispatch();
362 // ----------------------------------------------------------------------------
363 // accessors for C modules
364 // ----------------------------------------------------------------------------
366 extern "C" XtAppContext
wxGetAppContext()
368 return (XtAppContext
)wxTheApp
->GetAppContext();