1 /////////////////////////////////////////////////////////////////////////////
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
13 #pragma implementation "app.h"
16 // For compilers that support precompilation, includes "wx.h".
17 #include "wx/wxprec.h"
20 #define XtParent XTPARENT
21 #define XtDisplay XTDISPLAY
26 #include "wx/module.h"
27 #include "wx/memory.h"
30 #include "wx/evtloop.h"
34 #include "wx/thread.h"
38 #pragma message disable nosimpint
42 #include <X11/Xutil.h>
43 #include <X11/Xresource.h>
44 #include <X11/Xatom.h>
46 #pragma message enable nosimpint
49 #include "wx/motif/private.h"
53 struct wxPerDisplayData
58 m_topLevelWidget
= NULL
;
59 m_topLevelRealizedWidget
= NULL
;
62 wxXVisualInfo
* m_visualInfo
;
63 Widget m_topLevelWidget
, m_topLevelRealizedWidget
;
66 static void wxTLWidgetDestroyCallback(Widget w
, XtPointer clientData
,
68 static WXWidget
wxCreateTopLevelWidget( WXDisplay
* display
);
70 extern wxList wxPendingDelete
;
71 extern bool wxAddIdleCallback();
73 wxHashTable
*wxWidgetHashTable
= NULL
;
75 IMPLEMENT_DYNAMIC_CLASS(wxApp
, wxEvtHandler
)
77 BEGIN_EVENT_TABLE(wxApp
, wxEvtHandler
)
78 EVT_IDLE(wxAppBase::OnIdle
)
82 typedef int (*XErrorHandlerFunc
)(Display
*, XErrorEvent
*);
84 XErrorHandlerFunc gs_pfnXErrorHandler
= 0;
86 static int wxXErrorHandler(Display
*dpy
, XErrorEvent
*xevent
)
88 // just forward to the default handler for now
89 return gs_pfnXErrorHandler(dpy
, xevent
);
93 bool wxApp::Initialize(int& argc
, wxChar
**argv
)
95 if ( !wxAppBase::Initialize(argc
, argv
) )
98 wxWidgetHashTable
= new wxHashTable(wxKEY_INTEGER
);
101 wxFont::SetDefaultEncoding(wxLocale::GetSystemEncoding());
107 void wxApp::CleanUp()
109 wxAppBase::CleanUp();
111 delete wxWidgetHashTable
;
112 wxWidgetHashTable
= NULL
;
116 for( wxPerDisplayDataMap::iterator it
= m_perDisplayData
->begin(),
117 end
= m_perDisplayData
->end();
120 delete it
->second
->m_visualInfo
;
121 XtDestroyWidget( it
->second
->m_topLevelWidget
);
125 delete m_perDisplayData
;
132 wxAppConsole::Exit();
135 // ============================================================================
137 // ============================================================================
144 m_mainLoop
= new wxEventLoop
;
145 m_mainColormap
= (WXColormap
) NULL
;
146 m_appContext
= (WXAppContext
) NULL
;
147 m_initialDisplay
= (WXDisplay
*) 0;
148 m_perDisplayData
= new wxPerDisplayDataMap
;
153 wxApp::SetInstance(NULL
);
156 int wxApp::MainLoop()
159 * Sit around forever waiting to process X-events. Property Change
160 * event are handled special, because they have to refer to
161 * the root window rather than to a widget. therefore we can't
162 * use an Xt-eventhandler.
165 XSelectInput(XtDisplay((Widget
) wxTheApp
->GetTopLevelWidget()),
166 XDefaultRootWindow(XtDisplay((Widget
) wxTheApp
->GetTopLevelWidget())),
174 // This should be redefined in a derived class for
175 // handling property change events for XAtom IPC.
176 void wxApp::HandlePropertyChange(WXEvent
*event
)
178 // by default do nothing special
179 XtDispatchEvent((XEvent
*) event
); /* let Motif do the work */
182 static char *fallbackResources
[] = {
183 // better defaults for CDE under Irix
185 // TODO: do something similar for the other systems, the hardcoded defaults
191 "*menuBar.marginHeight: 0",
192 "*menuBar.shadowThickness: 1",
193 "*background: #c0c0c0",
194 "*foreground: black",
195 #endif // __SGI__/!__SGI__
199 // Create an application context
200 bool wxApp::OnInitGui()
202 if( !wxAppBase::OnInitGui() )
205 XtSetLanguageProc(NULL
, NULL
, NULL
);
206 XtToolkitInitialize() ;
207 wxTheApp
->m_appContext
= (WXAppContext
) XtCreateApplicationContext();
208 XtAppSetFallbackResources((XtAppContext
) wxTheApp
->m_appContext
, fallbackResources
);
210 Display
*dpy
= XtOpenDisplay((XtAppContext
) wxTheApp
->m_appContext
,(String
)NULL
,NULL
,
211 wxTheApp
->GetClassName().c_str(), NULL
, 0,
212 # if XtSpecificationRelease < 5
220 // if you don't log to stderr, nothing will be shown...
221 delete wxLog::SetActiveTarget(new wxLogStderr
);
222 wxString
className(wxTheApp
->GetClassName());
223 wxLogError(_("wxWidgets could not open display for '%s': exiting."),
227 m_initialDisplay
= (WXDisplay
*) dpy
;
230 // install the X error handler
231 gs_pfnXErrorHandler
= XSetErrorHandler(wxXErrorHandler
);
232 #endif // __WXDEBUG__
234 // Add general resize proc
236 rec
.string
= "resize";
237 rec
.proc
= (XtActionProc
)wxWidgetResizeProc
;
238 XtAppAddActions((XtAppContext
) wxTheApp
->m_appContext
, &rec
, 1);
240 GetMainColormap(dpy
);
247 WXColormap
wxApp::GetMainColormap(WXDisplay
* display
)
249 if (!display
) /* Must be called first with non-NULL display */
250 return m_mainColormap
;
252 int defaultScreen
= DefaultScreen((Display
*) display
);
253 Screen
* screen
= XScreenOfDisplay((Display
*) display
, defaultScreen
);
255 Colormap c
= DefaultColormapOfScreen(screen
);
258 m_mainColormap
= (WXColormap
) c
;
260 return (WXColormap
) c
;
263 static inline wxPerDisplayData
& GetOrCreatePerDisplayData
264 ( wxPerDisplayDataMap
& m
, WXDisplay
* display
)
266 wxPerDisplayDataMap::iterator it
= m
.find( display
);
267 if( it
!= m
.end() && it
->second
!= NULL
)
268 return *(it
->second
);
270 wxPerDisplayData
* nData
= new wxPerDisplayData();
276 wxXVisualInfo
* wxApp::GetVisualInfo( WXDisplay
* display
)
278 wxPerDisplayData
& data
= GetOrCreatePerDisplayData( *m_perDisplayData
,
280 if( data
.m_visualInfo
)
281 return data
.m_visualInfo
;
283 wxXVisualInfo
* vi
= new wxXVisualInfo
;
284 wxFillXVisualInfo( vi
, (Display
*)display
);
286 data
.m_visualInfo
= vi
;
291 static void wxTLWidgetDestroyCallback(Widget w
, XtPointer clientData
,
296 wxTheApp
->SetTopLevelWidget( (WXDisplay
*)XtDisplay(w
),
298 wxTheApp
->SetTopLevelRealizedWidget( (WXDisplay
*)XtDisplay(w
),
303 WXWidget
wxCreateTopLevelWidget( WXDisplay
* display
)
305 Widget tlw
= XtAppCreateShell( (String
)NULL
,
306 wxTheApp
->GetClassName().c_str(),
307 applicationShellWidgetClass
,
311 XmNoverrideRedirect
, True
,
314 XtAddCallback( tlw
, XmNdestroyCallback
,
315 (XtCallbackProc
)wxTLWidgetDestroyCallback
,
318 return (WXWidget
)tlw
;
321 WXWidget
wxCreateTopLevelRealizedWidget( WXDisplay
* display
)
323 Widget rTlw
= XtVaCreateWidget( "dummy_widget", topLevelShellWidgetClass
,
324 (Widget
)wxTheApp
->GetTopLevelWidget(),
326 XtSetMappedWhenManaged( rTlw
, False
);
327 XtRealizeWidget( rTlw
);
329 return (WXWidget
)rTlw
;
332 WXWidget
wxApp::GetTopLevelWidget()
334 WXDisplay
* display
= wxGetDisplay();
335 wxPerDisplayData
& data
= GetOrCreatePerDisplayData( *m_perDisplayData
,
337 if( data
.m_topLevelWidget
)
338 return (WXWidget
)data
.m_topLevelWidget
;
340 WXWidget tlw
= wxCreateTopLevelWidget( display
);
341 SetTopLevelWidget( display
, tlw
);
346 WXWidget
wxApp::GetTopLevelRealizedWidget()
348 WXDisplay
* display
= wxGetDisplay();
349 wxPerDisplayDataMap::iterator it
= m_perDisplayData
->find( display
);
351 if( it
!= m_perDisplayData
->end() && it
->second
->m_topLevelRealizedWidget
)
352 return (WXWidget
)it
->second
->m_topLevelRealizedWidget
;
354 WXWidget rTlw
= wxCreateTopLevelRealizedWidget( display
);
355 SetTopLevelRealizedWidget( display
, rTlw
);
360 void wxApp::SetTopLevelWidget(WXDisplay
* display
, WXWidget widget
)
362 GetOrCreatePerDisplayData( *m_perDisplayData
, display
)
363 .m_topLevelWidget
= (Widget
)widget
;
366 void wxApp::SetTopLevelRealizedWidget(WXDisplay
* display
, WXWidget widget
)
368 GetOrCreatePerDisplayData( *m_perDisplayData
, display
)
369 .m_topLevelRealizedWidget
= (Widget
)widget
;
372 // Yield to other processes
374 bool wxApp::Yield(bool onlyIfNeeded
)
376 static bool s_inYield
= false;
382 wxFAIL_MSG( wxT("wxYield called recursively" ) );
390 while (wxTheApp
&& wxTheApp
->Pending())
391 wxTheApp
->Dispatch();
398 // ----------------------------------------------------------------------------
399 // accessors for C modules
400 // ----------------------------------------------------------------------------
402 extern "C" XtAppContext
wxGetAppContext()
404 return (XtAppContext
)wxTheApp
->GetAppContext();