]>
Commit | Line | Data |
---|---|---|
4bb6408c JS |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: app.cpp | |
3 | // Purpose: wxApp | |
4 | // Author: Julian Smart | |
5 | // Modified by: | |
6 | // Created: 17/09/98 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Julian Smart | |
65571936 | 9 | // Licence: wxWindows licence |
4bb6408c JS |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
14f355c2 | 12 | #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) |
ee31c392 | 13 | #pragma implementation "app.h" |
4bb6408c JS |
14 | #endif |
15 | ||
1248b41f MB |
16 | // For compilers that support precompilation, includes "wx.h". |
17 | #include "wx/wxprec.h" | |
18 | ||
bcd055ae JJ |
19 | #ifdef __VMS |
20 | #define XtParent XTPARENT | |
21 | #define XtDisplay XTDISPLAY | |
22 | #endif | |
23 | ||
4bb6408c JS |
24 | #include "wx/app.h" |
25 | #include "wx/utils.h" | |
4bb6408c JS |
26 | #include "wx/module.h" |
27 | #include "wx/memory.h" | |
8bedcdce RR |
28 | #include "wx/log.h" |
29 | #include "wx/intl.h" | |
7e1bcfa8 | 30 | #include "wx/evtloop.h" |
ed39ff57 | 31 | #include "wx/hash.h" |
b412f9be | 32 | |
7bcb11d3 | 33 | #if wxUSE_THREADS |
dfe1eee3 | 34 | #include "wx/thread.h" |
7bcb11d3 | 35 | #endif |
4bb6408c | 36 | |
338dd992 JJ |
37 | #ifdef __VMS__ |
38 | #pragma message disable nosimpint | |
39 | #endif | |
4bb6408c JS |
40 | #include <Xm/Xm.h> |
41 | #include <X11/Xlib.h> | |
42 | #include <X11/Xutil.h> | |
43 | #include <X11/Xresource.h> | |
44 | #include <X11/Xatom.h> | |
338dd992 JJ |
45 | #ifdef __VMS__ |
46 | #pragma message enable nosimpint | |
47 | #endif | |
4bb6408c JS |
48 | |
49 | #include "wx/motif/private.h" | |
50 | ||
51 | #include <string.h> | |
52 | ||
eb6fa4b4 MB |
53 | struct wxPerDisplayData |
54 | { | |
55 | wxPerDisplayData() | |
5a2e3d8c MB |
56 | { |
57 | m_visualInfo = NULL; | |
58 | m_topLevelWidget = NULL; | |
59 | m_topLevelRealizedWidget = NULL; | |
60 | } | |
eb6fa4b4 MB |
61 | |
62 | wxXVisualInfo* m_visualInfo; | |
5a2e3d8c | 63 | Widget m_topLevelWidget, m_topLevelRealizedWidget; |
eb6fa4b4 MB |
64 | }; |
65 | ||
eb6fa4b4 MB |
66 | static void wxTLWidgetDestroyCallback(Widget w, XtPointer clientData, |
67 | XtPointer ptr); | |
68 | static WXWidget wxCreateTopLevelWidget( WXDisplay* display ); | |
9ce8d6a2 | 69 | |
4bb6408c | 70 | extern wxList wxPendingDelete; |
7e1bcfa8 | 71 | extern bool wxAddIdleCallback(); |
7491d644 | 72 | |
4bb6408c JS |
73 | wxHashTable *wxWidgetHashTable = NULL; |
74 | ||
4bb6408c | 75 | IMPLEMENT_DYNAMIC_CLASS(wxApp, wxEvtHandler) |
9c6e1335 | 76 | |
4bb6408c | 77 | BEGIN_EVENT_TABLE(wxApp, wxEvtHandler) |
955a9197 | 78 | EVT_IDLE(wxAppBase::OnIdle) |
4bb6408c | 79 | END_EVENT_TABLE() |
4bb6408c | 80 | |
e838cc14 VZ |
81 | #ifdef __WXDEBUG__ |
82 | typedef int (*XErrorHandlerFunc)(Display *, XErrorEvent *); | |
83 | ||
84 | XErrorHandlerFunc gs_pfnXErrorHandler = 0; | |
85 | ||
86 | static int wxXErrorHandler(Display *dpy, XErrorEvent *xevent) | |
87 | { | |
88 | // just forward to the default handler for now | |
89 | return gs_pfnXErrorHandler(dpy, xevent); | |
90 | } | |
91 | #endif // __WXDEBUG__ | |
92 | ||
05e2b077 | 93 | bool wxApp::Initialize(int& argc, wxChar **argv) |
4bb6408c | 94 | { |
94826170 VZ |
95 | if ( !wxAppBase::Initialize(argc, argv) ) |
96 | return false; | |
afb74891 | 97 | |
4bb6408c | 98 | wxWidgetHashTable = new wxHashTable(wxKEY_INTEGER); |
afb74891 | 99 | |
94826170 | 100 | return true; |
4bb6408c JS |
101 | } |
102 | ||
103 | void wxApp::CleanUp() | |
104 | { | |
e6be3e7c MB |
105 | delete wxWidgetHashTable; |
106 | wxWidgetHashTable = NULL; | |
107 | ||
94826170 | 108 | wxAppBase::CleanUp(); |
4bb6408c JS |
109 | } |
110 | ||
e2478fde VZ |
111 | void wxApp::Exit() |
112 | { | |
113 | wxApp::CleanUp(); | |
114 | ||
115 | wxAppConsole::Exit(); | |
116 | } | |
117 | ||
e6be3e7c | 118 | // ============================================================================ |
05e2b077 | 119 | // wxApp |
e6be3e7c MB |
120 | // ============================================================================ |
121 | ||
4bb6408c JS |
122 | wxApp::wxApp() |
123 | { | |
4bb6408c JS |
124 | argc = 0; |
125 | argv = NULL; | |
afb74891 | 126 | |
f15b55ce | 127 | m_mainLoop = new wxEventLoop; |
4bb6408c JS |
128 | m_mainColormap = (WXColormap) NULL; |
129 | m_appContext = (WXAppContext) NULL; | |
47bc1060 | 130 | m_initialDisplay = (WXDisplay*) 0; |
eb6fa4b4 | 131 | m_perDisplayData = new wxPerDisplayDataMap; |
4bb6408c JS |
132 | } |
133 | ||
7e1bcfa8 MB |
134 | wxApp::~wxApp() |
135 | { | |
f15b55ce | 136 | delete m_mainLoop; |
9ce8d6a2 | 137 | |
eb6fa4b4 MB |
138 | for( wxPerDisplayDataMap::iterator it = m_perDisplayData->begin(), |
139 | end = m_perDisplayData->end(); | |
9ce8d6a2 MB |
140 | it != end; ++it ) |
141 | { | |
bdcade0a MB |
142 | delete it->second->m_visualInfo; |
143 | XtDestroyWidget( it->second->m_topLevelWidget ); | |
144 | delete it->second; | |
9ce8d6a2 MB |
145 | } |
146 | ||
eb6fa4b4 MB |
147 | delete m_perDisplayData; |
148 | ||
57bfe3be | 149 | wxApp::SetInstance(NULL); |
7e1bcfa8 MB |
150 | } |
151 | ||
4bb6408c JS |
152 | int wxApp::MainLoop() |
153 | { | |
2d120f83 | 154 | /* |
4bb6408c JS |
155 | * Sit around forever waiting to process X-events. Property Change |
156 | * event are handled special, because they have to refer to | |
157 | * the root window rather than to a widget. therefore we can't | |
158 | * use an Xt-eventhandler. | |
159 | */ | |
afb74891 | 160 | |
4bb6408c | 161 | XSelectInput(XtDisplay((Widget) wxTheApp->GetTopLevelWidget()), |
2d120f83 JS |
162 | XDefaultRootWindow(XtDisplay((Widget) wxTheApp->GetTopLevelWidget())), |
163 | PropertyChangeMask); | |
afb74891 | 164 | |
f15b55ce | 165 | m_mainLoop->Run(); |
afb74891 | 166 | |
8aa04e8b JS |
167 | return 0; |
168 | } | |
169 | ||
4bb6408c JS |
170 | // This should be redefined in a derived class for |
171 | // handling property change events for XAtom IPC. | |
172 | void wxApp::HandlePropertyChange(WXEvent *event) | |
173 | { | |
174 | // by default do nothing special | |
175 | XtDispatchEvent((XEvent*) event); /* let Motif do the work */ | |
176 | } | |
177 | ||
edc1cd8b JS |
178 | static char *fallbackResources[] = { |
179 | "*menuBar.marginHeight: 0", | |
180 | "*menuBar.shadowThickness: 1", | |
181 | "*background: #c0c0c0", | |
182 | "*foreground: black", | |
183 | NULL | |
184 | }; | |
185 | ||
4bb6408c JS |
186 | // Create an application context |
187 | bool wxApp::OnInitGui() | |
188 | { | |
fd304d98 | 189 | if( !wxAppBase::OnInitGui() ) |
96be256b | 190 | return false; |
fd304d98 | 191 | |
4bb6408c | 192 | XtToolkitInitialize() ; |
edc1cd8b JS |
193 | wxTheApp->m_appContext = (WXAppContext) XtCreateApplicationContext(); |
194 | XtAppSetFallbackResources((XtAppContext) wxTheApp->m_appContext, fallbackResources); | |
195 | ||
4bb6408c | 196 | Display *dpy = XtOpenDisplay((XtAppContext) wxTheApp->m_appContext,(String)NULL,NULL, |
d3a80c92 | 197 | wxTheApp->GetClassName().c_str(), NULL, 0, |
4bb6408c | 198 | # if XtSpecificationRelease < 5 |
9c6e1335 | 199 | (Cardinal*) &argc, |
4bb6408c | 200 | # else |
9c6e1335 | 201 | &argc, |
4bb6408c | 202 | # endif |
9c6e1335 VZ |
203 | argv); |
204 | ||
4bb6408c | 205 | if (!dpy) { |
c88b736c MB |
206 | // if you don't log to stderr, nothing will be shown... |
207 | delete wxLog::SetActiveTarget(new wxLogStderr); | |
7bcb11d3 | 208 | wxString className(wxTheApp->GetClassName()); |
77ffb593 | 209 | wxLogError(_("wxWidgets could not open display for '%s': exiting."), |
d3a80c92 | 210 | className.c_str()); |
2d120f83 | 211 | exit(-1); |
4bb6408c | 212 | } |
47bc1060 | 213 | m_initialDisplay = (WXDisplay*) dpy; |
afb74891 | 214 | |
e838cc14 VZ |
215 | #ifdef __WXDEBUG__ |
216 | // install the X error handler | |
217 | gs_pfnXErrorHandler = XSetErrorHandler(wxXErrorHandler); | |
218 | #endif // __WXDEBUG__ | |
219 | ||
4bb6408c JS |
220 | // Add general resize proc |
221 | XtActionsRec rec; | |
222 | rec.string = "resize"; | |
223 | rec.proc = (XtActionProc)wxWidgetResizeProc; | |
224 | XtAppAddActions((XtAppContext) wxTheApp->m_appContext, &rec, 1); | |
afb74891 | 225 | |
4bb6408c | 226 | GetMainColormap(dpy); |
afb74891 | 227 | |
7e1bcfa8 MB |
228 | wxAddIdleCallback(); |
229 | ||
96be256b | 230 | return true; |
4bb6408c JS |
231 | } |
232 | ||
233 | WXColormap wxApp::GetMainColormap(WXDisplay* display) | |
234 | { | |
235 | if (!display) /* Must be called first with non-NULL display */ | |
2d120f83 | 236 | return m_mainColormap; |
a91b47e8 JS |
237 | |
238 | int defaultScreen = DefaultScreen((Display*) display); | |
239 | Screen* screen = XScreenOfDisplay((Display*) display, defaultScreen); | |
afb74891 | 240 | |
a91b47e8 | 241 | Colormap c = DefaultColormapOfScreen(screen); |
afb74891 | 242 | |
4bb6408c | 243 | if (!m_mainColormap) |
2d120f83 | 244 | m_mainColormap = (WXColormap) c; |
afb74891 | 245 | |
4bb6408c JS |
246 | return (WXColormap) c; |
247 | } | |
248 | ||
bdcade0a MB |
249 | static inline wxPerDisplayData& GetOrCreatePerDisplayData |
250 | ( wxPerDisplayDataMap& m, WXDisplay* display ) | |
9ce8d6a2 | 251 | { |
bdcade0a MB |
252 | wxPerDisplayDataMap::iterator it = m.find( display ); |
253 | if( it != m.end() && it->second != NULL ) | |
254 | return *(it->second); | |
255 | ||
256 | wxPerDisplayData* nData = new wxPerDisplayData(); | |
257 | m[display] = nData; | |
258 | ||
259 | return *nData; | |
260 | } | |
9ce8d6a2 | 261 | |
bdcade0a MB |
262 | wxXVisualInfo* wxApp::GetVisualInfo( WXDisplay* display ) |
263 | { | |
264 | wxPerDisplayData& data = GetOrCreatePerDisplayData( *m_perDisplayData, | |
265 | display ); | |
266 | if( data.m_visualInfo ) | |
267 | return data.m_visualInfo; | |
9ce8d6a2 MB |
268 | |
269 | wxXVisualInfo* vi = new wxXVisualInfo; | |
270 | wxFillXVisualInfo( vi, (Display*)display ); | |
271 | ||
bdcade0a | 272 | data.m_visualInfo = vi; |
9ce8d6a2 MB |
273 | |
274 | return vi; | |
275 | } | |
276 | ||
eb6fa4b4 MB |
277 | static void wxTLWidgetDestroyCallback(Widget w, XtPointer clientData, |
278 | XtPointer ptr) | |
279 | { | |
280 | if( wxTheApp ) | |
5a2e3d8c | 281 | { |
eb6fa4b4 MB |
282 | wxTheApp->SetTopLevelWidget( (WXDisplay*)XtDisplay(w), |
283 | (WXWidget)NULL ); | |
5a2e3d8c MB |
284 | wxTheApp->SetTopLevelRealizedWidget( (WXDisplay*)XtDisplay(w), |
285 | (WXWidget)NULL ); | |
286 | } | |
eb6fa4b4 MB |
287 | } |
288 | ||
289 | WXWidget wxCreateTopLevelWidget( WXDisplay* display ) | |
290 | { | |
291 | Widget tlw = XtAppCreateShell( (String)NULL, | |
292 | wxTheApp->GetClassName().c_str(), | |
293 | applicationShellWidgetClass, | |
294 | (Display*)display, | |
295 | NULL, 0 ); | |
5a2e3d8c MB |
296 | XtVaSetValues( tlw, |
297 | XmNoverrideRedirect, True, | |
298 | NULL ); | |
eb6fa4b4 MB |
299 | |
300 | XtAddCallback( tlw, XmNdestroyCallback, | |
301 | (XtCallbackProc)wxTLWidgetDestroyCallback, | |
302 | (XtPointer)NULL ); | |
303 | ||
304 | return (WXWidget)tlw; | |
305 | } | |
306 | ||
5a2e3d8c MB |
307 | WXWidget wxCreateTopLevelRealizedWidget( WXDisplay* display ) |
308 | { | |
cb81f1a6 | 309 | Widget rTlw = XtVaCreateWidget( "dummy_widget", topLevelShellWidgetClass, |
5a2e3d8c | 310 | (Widget)wxTheApp->GetTopLevelWidget(), |
cb81f1a6 | 311 | NULL, 0 ); |
5a2e3d8c MB |
312 | XtSetMappedWhenManaged( rTlw, False ); |
313 | XtRealizeWidget( rTlw ); | |
314 | ||
315 | return (WXWidget)rTlw; | |
316 | } | |
317 | ||
eb6fa4b4 MB |
318 | WXWidget wxApp::GetTopLevelWidget() |
319 | { | |
320 | WXDisplay* display = wxGetDisplay(); | |
bdcade0a MB |
321 | wxPerDisplayData& data = GetOrCreatePerDisplayData( *m_perDisplayData, |
322 | display ); | |
323 | if( data.m_topLevelWidget ) | |
324 | return (WXWidget)data.m_topLevelWidget; | |
eb6fa4b4 MB |
325 | |
326 | WXWidget tlw = wxCreateTopLevelWidget( display ); | |
327 | SetTopLevelWidget( display, tlw ); | |
328 | ||
329 | return tlw; | |
330 | } | |
331 | ||
5a2e3d8c MB |
332 | WXWidget wxApp::GetTopLevelRealizedWidget() |
333 | { | |
334 | WXDisplay* display = wxGetDisplay(); | |
335 | wxPerDisplayDataMap::iterator it = m_perDisplayData->find( display ); | |
336 | ||
337 | if( it != m_perDisplayData->end() && it->second->m_topLevelRealizedWidget ) | |
338 | return (WXWidget)it->second->m_topLevelRealizedWidget; | |
339 | ||
340 | WXWidget rTlw = wxCreateTopLevelRealizedWidget( display ); | |
341 | SetTopLevelRealizedWidget( display, rTlw ); | |
342 | ||
343 | return rTlw; | |
344 | } | |
345 | ||
eb6fa4b4 MB |
346 | void wxApp::SetTopLevelWidget(WXDisplay* display, WXWidget widget) |
347 | { | |
5a2e3d8c MB |
348 | GetOrCreatePerDisplayData( *m_perDisplayData, display ) |
349 | .m_topLevelWidget = (Widget)widget; | |
350 | } | |
351 | ||
352 | void wxApp::SetTopLevelRealizedWidget(WXDisplay* display, WXWidget widget) | |
353 | { | |
354 | GetOrCreatePerDisplayData( *m_perDisplayData, display ) | |
355 | .m_topLevelRealizedWidget = (Widget)widget; | |
eb6fa4b4 MB |
356 | } |
357 | ||
4bb6408c | 358 | // Yield to other processes |
cb2713bf | 359 | |
8461e4c2 | 360 | bool wxApp::Yield(bool onlyIfNeeded) |
4bb6408c | 361 | { |
96be256b | 362 | static bool s_inYield = false; |
8461e4c2 VZ |
363 | |
364 | if ( s_inYield ) | |
365 | { | |
366 | if ( !onlyIfNeeded ) | |
367 | { | |
368 | wxFAIL_MSG( wxT("wxYield called recursively" ) ); | |
369 | } | |
370 | ||
96be256b | 371 | return false; |
8461e4c2 VZ |
372 | } |
373 | ||
96be256b | 374 | s_inYield = true; |
cb2713bf | 375 | |
4bb6408c | 376 | while (wxTheApp && wxTheApp->Pending()) |
2d120f83 | 377 | wxTheApp->Dispatch(); |
518b5d2f | 378 | |
96be256b | 379 | s_inYield = false; |
cb2713bf | 380 | |
96be256b | 381 | return true; |
4bb6408c JS |
382 | } |
383 | ||
d391a345 VZ |
384 | // ---------------------------------------------------------------------------- |
385 | // accessors for C modules | |
386 | // ---------------------------------------------------------------------------- | |
387 | ||
388 | extern "C" XtAppContext wxGetAppContext() | |
389 | { | |
390 | return (XtAppContext)wxTheApp->GetAppContext(); | |
391 | } |