]>
Commit | Line | Data |
---|---|---|
c801d85f | 1 | ///////////////////////////////////////////////////////////////////////////// |
88a7a4e1 | 2 | // Name: src/gtk/app.cpp |
c801d85f KB |
3 | // Purpose: |
4 | // Author: Robert Roebling | |
32e9da8b | 5 | // Id: $Id$ |
01111366 | 6 | // Copyright: (c) 1998 Robert Roebling, Julian Smart |
65571936 | 7 | // Licence: wxWindows licence |
c801d85f KB |
8 | ///////////////////////////////////////////////////////////////////////////// |
9 | ||
df744f4d | 10 | #ifdef __VMS |
f3858bf5 JJ |
11 | // vms_jackets.h should for proper working be included before anything else |
12 | # include <vms_jackets.h> | |
ff7d1dcb | 13 | #undef ConnectionNumber |
df744f4d JJ |
14 | #endif |
15 | ||
f3858bf5 JJ |
16 | // For compilers that support precompilation, includes "wx.h". |
17 | #include "wx/wxprec.h" | |
18 | ||
c801d85f | 19 | #include "wx/app.h" |
88a7a4e1 WS |
20 | |
21 | #ifndef WX_PRECOMP | |
22 | #include "wx/intl.h" | |
e4db172a | 23 | #include "wx/log.h" |
de6185e2 | 24 | #include "wx/utils.h" |
5b56bffb | 25 | #include "wx/memory.h" |
48a1108e | 26 | #include "wx/font.h" |
88a7a4e1 WS |
27 | #endif |
28 | ||
fe593cc5 | 29 | #include "wx/thread.h" |
afb74891 | 30 | |
62be94e1 | 31 | #ifdef __WXGPE__ |
88a7a4e1 | 32 | #include <gpe/init.h> |
62be94e1 RR |
33 | #endif |
34 | ||
e8106239 | 35 | #include "wx/gtk/win_gtk.h" |
84833214 | 36 | #include "wx/gtk/private.h" |
c801d85f | 37 | |
c259ffdf | 38 | #include <gdk/gdkx.h> |
24178e4a | 39 | |
2b850ae1 RR |
40 | //----------------------------------------------------------------------------- |
41 | // link GnomeVFS | |
42 | //----------------------------------------------------------------------------- | |
43 | ||
09a09455 PC |
44 | #if wxUSE_MIMETYPE && wxUSE_LIBGNOMEVFS |
45 | #include "wx/link.h" | |
46 | wxFORCE_LINK_MODULE(gnome_vfs) | |
2b850ae1 RR |
47 | #endif |
48 | ||
c801d85f KB |
49 | //----------------------------------------------------------------------------- |
50 | // global data | |
51 | //----------------------------------------------------------------------------- | |
52 | ||
de6185e2 | 53 | bool g_mainThreadLocked = false; |
3ac8d3bc | 54 | |
c2fa61e8 | 55 | static GtkWidget *gs_RootWindow = (GtkWidget*) NULL; |
d76fe38b | 56 | |
c801d85f | 57 | //----------------------------------------------------------------------------- |
3133cb9f | 58 | // idle system |
c801d85f KB |
59 | //----------------------------------------------------------------------------- |
60 | ||
90350682 | 61 | void wxapp_install_idle_handler(); |
bf9e3e73 | 62 | |
fe593cc5 VS |
63 | #if wxUSE_THREADS |
64 | static wxMutex gs_idleTagsMutex; | |
65 | #endif | |
66 | ||
bf9e3e73 RR |
67 | //----------------------------------------------------------------------------- |
68 | // wxYield | |
69 | //----------------------------------------------------------------------------- | |
53a8af59 | 70 | |
1ee339ee VZ |
71 | // not static because used by textctrl.cpp |
72 | // | |
73 | // MT-FIXME | |
88a7a4e1 | 74 | bool wxIsInsideYield = false; |
1ee339ee | 75 | |
8461e4c2 | 76 | bool wxApp::Yield(bool onlyIfNeeded) |
c801d85f | 77 | { |
1ee339ee | 78 | if ( wxIsInsideYield ) |
8461e4c2 VZ |
79 | { |
80 | if ( !onlyIfNeeded ) | |
81 | { | |
82 | wxFAIL_MSG( wxT("wxYield called recursively" ) ); | |
83 | } | |
84 | ||
88a7a4e1 | 85 | return false; |
8461e4c2 VZ |
86 | } |
87 | ||
6dc5fd71 VZ |
88 | #if wxUSE_THREADS |
89 | if ( !wxThread::IsMain() ) | |
90 | { | |
91 | // can't call gtk_main_iteration() from other threads like this | |
88a7a4e1 | 92 | return true; |
6dc5fd71 VZ |
93 | } |
94 | #endif // wxUSE_THREADS | |
95 | ||
88a7a4e1 | 96 | wxIsInsideYield = true; |
e90c1d2a | 97 | |
c263eb03 VS |
98 | // We need to remove idle callbacks or the loop will |
99 | // never finish. | |
67461bd1 | 100 | SuspendIdleCallback(); |
acfd422a | 101 | |
dd7641ef | 102 | #if wxUSE_LOG |
2ed3265e VZ |
103 | // disable log flushing from here because a call to wxYield() shouldn't |
104 | // normally result in message boxes popping up &c | |
105 | wxLog::Suspend(); | |
dd7641ef | 106 | #endif |
2ed3265e | 107 | |
406a6f6b VZ |
108 | while (gtk_events_pending()) |
109 | gtk_main_iteration(); | |
110 | ||
5375a1f5 RR |
111 | // It's necessary to call ProcessIdle() to update the frames sizes which |
112 | // might have been changed (it also will update other things set from | |
be88a6ad | 113 | // OnUpdateUI() which is a nice (and desired) side effect). But we |
5375a1f5 RR |
114 | // call ProcessIdle() only once since this is not meant for longish |
115 | // background jobs (controlled by wxIdleEvent::RequestMore() and the | |
116 | // return value of Processidle(). | |
117 | ProcessIdle(); | |
2ed3265e | 118 | |
dd7641ef | 119 | #if wxUSE_LOG |
2ed3265e VZ |
120 | // let the logs be flashed again |
121 | wxLog::Resume(); | |
dd7641ef | 122 | #endif |
7741c4e1 | 123 | |
88a7a4e1 | 124 | wxIsInsideYield = false; |
99ba739f | 125 | |
88a7a4e1 | 126 | return true; |
acfd422a RR |
127 | } |
128 | ||
bf9e3e73 RR |
129 | //----------------------------------------------------------------------------- |
130 | // wxWakeUpIdle | |
131 | //----------------------------------------------------------------------------- | |
132 | ||
68567a96 MR |
133 | // RR/KH: No wxMutexGui calls are needed here according to the GTK faq, |
134 | // http://www.gtk.org/faq/#AEN500 - this caused problems for wxPostEvent. | |
19722331 | 135 | |
e2478fde | 136 | void wxApp::WakeUpIdle() |
bf9e3e73 | 137 | { |
c263eb03 | 138 | wxapp_install_idle_handler(); |
bf9e3e73 RR |
139 | } |
140 | ||
141 | //----------------------------------------------------------------------------- | |
142 | // local functions | |
143 | //----------------------------------------------------------------------------- | |
144 | ||
90350682 VZ |
145 | // the callback functions must be extern "C" to comply with GTK+ declarations |
146 | extern "C" | |
147 | { | |
148 | ||
14819684 PC |
149 | // One-shot emission hook for "event" signal, to install idle handler. |
150 | // This will be called when the "event" signal is issued on any GtkWidget object. | |
151 | static gboolean | |
152 | event_emission_hook(GSignalInvocationHint*, guint, const GValue*, gpointer) | |
153 | { | |
154 | wxapp_install_idle_handler(); | |
155 | // remove hook | |
156 | return false; | |
157 | } | |
158 | ||
176d9824 | 159 | // add emission hook for "event" signal, to re-install idle handler when needed |
8a378a9e PC |
160 | static inline void wxAddEmissionHook() |
161 | { | |
176d9824 PC |
162 | GType widgetType = GTK_TYPE_WIDGET; |
163 | // if GtkWidget type is loaded | |
164 | if (g_type_class_peek(widgetType) != NULL) | |
165 | { | |
166 | guint sig_id = g_signal_lookup("event", widgetType); | |
167 | g_signal_add_emission_hook(sig_id, 0, event_emission_hook, NULL, NULL); | |
168 | } | |
8a378a9e PC |
169 | } |
170 | ||
3133cb9f | 171 | static gint wxapp_idle_callback( gpointer WXUNUSED(data) ) |
96997d65 | 172 | { |
ec439571 | 173 | // this does not look possible, but just in case... |
a5f1fd3e | 174 | if (!wxTheApp) |
1136ac0b | 175 | return false; |
a5f1fd3e | 176 | |
ec439571 PC |
177 | bool moreIdles = false; |
178 | ||
a5f1fd3e | 179 | #ifdef __WXDEBUG__ |
6d477bb4 | 180 | // don't generate the idle events while the assert modal dialog is shown, |
ec439571 PC |
181 | // this matches the behavior of wxMSW |
182 | if (!wxTheApp->IsInAssert()) | |
a5f1fd3e | 183 | #endif // __WXDEBUG__ |
ec439571 | 184 | { |
046c2f14 PC |
185 | guint idleID_save; |
186 | { | |
187 | // Allow another idle source to be added while this one is busy. | |
188 | // Needed if an idle event handler runs a new event loop, | |
189 | // for example by showing a dialog. | |
190 | #if wxUSE_THREADS | |
191 | wxMutexLocker lock(gs_idleTagsMutex); | |
192 | #endif | |
193 | idleID_save = wxTheApp->m_idleTag; | |
194 | wxTheApp->m_idleTag = 0; | |
195 | g_isIdle = true; | |
196 | wxAddEmissionHook(); | |
197 | } | |
198 | ||
ec439571 PC |
199 | // When getting called from GDK's time-out handler |
200 | // we are no longer within GDK's grab on the GUI | |
201 | // thread so we must lock it here ourselves. | |
202 | gdk_threads_enter(); | |
203 | ||
204 | // Send idle event to all who request them as long as | |
205 | // no events have popped up in the event queue. | |
206 | do { | |
207 | moreIdles = wxTheApp->ProcessIdle(); | |
208 | } while (moreIdles && gtk_events_pending() == 0); | |
209 | ||
210 | // Release lock again | |
211 | gdk_threads_leave(); | |
f4322df6 | 212 | |
046c2f14 PC |
213 | { |
214 | // If another idle source was added, remove it | |
215 | #if wxUSE_THREADS | |
216 | wxMutexLocker lock(gs_idleTagsMutex); | |
217 | #endif | |
218 | if (wxTheApp->m_idleTag != 0) | |
219 | g_source_remove(wxTheApp->m_idleTag); | |
220 | wxTheApp->m_idleTag = idleID_save; | |
221 | g_isIdle = false; | |
222 | } | |
ec439571 | 223 | } |
acfd422a | 224 | |
14819684 | 225 | if (!moreIdles) |
9a5c9a0c PC |
226 | { |
227 | #if wxUSE_THREADS | |
228 | wxMutexLocker lock(gs_idleTagsMutex); | |
229 | #endif | |
230 | // Indicate that we are now in idle mode and event handlers | |
231 | // will have to reinstall the idle handler again. | |
232 | g_isIdle = true; | |
233 | wxTheApp->m_idleTag = 0; | |
234 | ||
8a378a9e | 235 | wxAddEmissionHook(); |
9a5c9a0c | 236 | } |
14819684 | 237 | |
8ab9a536 RR |
238 | // Return FALSE if no more idle events are to be sent |
239 | return moreIdles; | |
acfd422a | 240 | } |
3b5d2007 | 241 | } // extern "C" |
8801832d | 242 | |
90350682 VZ |
243 | #if wxUSE_THREADS |
244 | ||
3b5d2007 | 245 | static GPollFunc wxgs_poll_func; |
2b5f62a0 | 246 | |
3b5d2007 | 247 | extern "C" { |
3133cb9f | 248 | static gint wxapp_poll_func( GPollFD *ufds, guint nfds, gint timeout ) |
acfd422a | 249 | { |
49f29fbe PC |
250 | gdk_threads_enter(); |
251 | ||
252 | wxMutexGuiLeave(); | |
e4db172a | 253 | g_mainThreadLocked = true; |
7941ba11 | 254 | |
3b5d2007 | 255 | gint res = (*wxgs_poll_func)(ufds, nfds, timeout); |
90350682 | 256 | |
49f29fbe | 257 | wxMutexGuiEnter(); |
de6185e2 | 258 | g_mainThreadLocked = false; |
90350682 | 259 | |
49f29fbe PC |
260 | gdk_threads_leave(); |
261 | ||
3133cb9f | 262 | return res; |
ff7b1510 | 263 | } |
3b5d2007 | 264 | } |
c801d85f | 265 | |
90350682 VZ |
266 | #endif // wxUSE_THREADS |
267 | ||
3133cb9f | 268 | void wxapp_install_idle_handler() |
b453e1b2 | 269 | { |
7482aa19 PC |
270 | if (wxTheApp == NULL) |
271 | return; | |
272 | ||
fe593cc5 VS |
273 | #if wxUSE_THREADS |
274 | wxMutexLocker lock(gs_idleTagsMutex); | |
275 | #endif | |
276 | ||
c263eb03 VS |
277 | // Don't install the handler if it's already installed. This test *MUST* |
278 | // be done when gs_idleTagsMutex is locked! | |
279 | if (!g_isIdle) | |
280 | return; | |
281 | ||
e8617760 GD |
282 | // GD: this assert is raised when using the thread sample (which works) |
283 | // so the test is probably not so easy. Can widget callbacks be | |
284 | // triggered from child threads and, if so, for which widgets? | |
285 | // wxASSERT_MSG( wxThread::IsMain() || gs_WakeUpIdle, wxT("attempt to install idle handler from widget callback in child thread (should be exclusively from wxWakeUpIdle)") ); | |
d5f3e1eb | 286 | |
3133cb9f | 287 | wxASSERT_MSG( wxTheApp->m_idleTag == 0, wxT("attempt to install idle handler twice") ); |
c2fa61e8 | 288 | |
de6185e2 | 289 | g_isIdle = false; |
96997d65 | 290 | |
3133cb9f RR |
291 | // This routine gets called by all event handlers |
292 | // indicating that the idle is over. It may also | |
293 | // get called from other thread for sending events | |
294 | // to the main thread (and processing these in | |
295 | // idle time). Very low priority. | |
6a555739 | 296 | wxTheApp->m_idleTag = g_idle_add_full(G_PRIORITY_LOW, wxapp_idle_callback, NULL, NULL); |
b453e1b2 RR |
297 | } |
298 | ||
005f5d18 RR |
299 | //----------------------------------------------------------------------------- |
300 | // Access to the root window global | |
301 | //----------------------------------------------------------------------------- | |
302 | ||
303 | GtkWidget* wxGetRootWindow() | |
304 | { | |
305 | if (gs_RootWindow == NULL) | |
306 | { | |
307 | gs_RootWindow = gtk_window_new( GTK_WINDOW_TOPLEVEL ); | |
308 | gtk_widget_realize( gs_RootWindow ); | |
309 | } | |
310 | return gs_RootWindow; | |
311 | } | |
312 | ||
c801d85f KB |
313 | //----------------------------------------------------------------------------- |
314 | // wxApp | |
315 | //----------------------------------------------------------------------------- | |
316 | ||
317 | IMPLEMENT_DYNAMIC_CLASS(wxApp,wxEvtHandler) | |
318 | ||
53010e52 | 319 | BEGIN_EVENT_TABLE(wxApp, wxEvtHandler) |
955a9197 | 320 | EVT_IDLE(wxAppBase::OnIdle) |
53010e52 RR |
321 | END_EVENT_TABLE() |
322 | ||
c801d85f KB |
323 | wxApp::wxApp() |
324 | { | |
a5f1fd3e | 325 | #ifdef __WXDEBUG__ |
de6185e2 | 326 | m_isInAssert = false; |
a5f1fd3e VZ |
327 | #endif // __WXDEBUG__ |
328 | ||
df5ddbca | 329 | m_idleTag = 0; |
e4db172a | 330 | g_isIdle = true; |
df5ddbca | 331 | wxapp_install_idle_handler(); |
094637f6 | 332 | |
a6f5aa49 VZ |
333 | // this is NULL for a "regular" wxApp, but is set (and freed) by a wxGLApp |
334 | m_glVisualInfo = (void *) NULL; | |
34a34b02 | 335 | m_glFBCInfo = (void *) NULL; |
ff7b1510 | 336 | } |
c801d85f | 337 | |
60acb947 | 338 | wxApp::~wxApp() |
c801d85f | 339 | { |
5d038ec5 MR |
340 | if (m_idleTag) |
341 | g_source_remove( m_idleTag ); | |
ff7b1510 | 342 | } |
c801d85f | 343 | |
0d2a2b60 | 344 | bool wxApp::OnInitGui() |
c801d85f | 345 | { |
1e6feb95 | 346 | if ( !wxAppBase::OnInitGui() ) |
de6185e2 | 347 | return false; |
1e6feb95 | 348 | |
a6f5aa49 VZ |
349 | // if this is a wxGLApp (derived from wxApp), and we've already |
350 | // chosen a specific visual, then derive the GdkVisual from that | |
005f5d18 RR |
351 | if (m_glVisualInfo != NULL) |
352 | { | |
a6f5aa49 | 353 | GdkVisual* vis = gtk_widget_get_default_visual(); |
a6f5aa49 VZ |
354 | |
355 | GdkColormap *colormap = gdk_colormap_new( vis, FALSE ); | |
356 | gtk_widget_set_default_colormap( colormap ); | |
a6f5aa49 | 357 | } |
005f5d18 | 358 | else |
b134516c | 359 | { |
c77eea28 RR |
360 | // On some machines, the default visual is just 256 colours, so |
361 | // we make sure we get the best. This can sometimes be wasteful. | |
362 | if (m_useBestVisual) | |
363 | { | |
364 | if (m_forceTrueColour) | |
365 | { | |
366 | GdkVisual* visual = gdk_visual_get_best_with_both( 24, GDK_VISUAL_TRUE_COLOR ); | |
367 | if (!visual) | |
368 | { | |
369 | wxLogError(wxT("Unable to initialize TrueColor visual.")); | |
370 | return false; | |
371 | } | |
372 | GdkColormap *colormap = gdk_colormap_new( visual, FALSE ); | |
373 | gtk_widget_set_default_colormap( colormap ); | |
374 | } | |
375 | else | |
376 | { | |
377 | if (gdk_visual_get_best() != gdk_visual_get_system()) | |
378 | { | |
379 | GdkVisual* visual = gdk_visual_get_best(); | |
380 | GdkColormap *colormap = gdk_colormap_new( visual, FALSE ); | |
381 | gtk_widget_set_default_colormap( colormap ); | |
382 | } | |
383 | } | |
384 | } | |
f6fcbb63 | 385 | } |
c801d85f | 386 | |
88a7a4e1 | 387 | return true; |
bbe0af5b RR |
388 | } |
389 | ||
005f5d18 RR |
390 | GdkVisual *wxApp::GetGdkVisual() |
391 | { | |
392 | GdkVisual *visual = NULL; | |
be88a6ad | 393 | |
005f5d18 | 394 | if (m_glVisualInfo) |
7b775074 | 395 | visual = gdkx_visual_get( ((XVisualInfo *) m_glVisualInfo)->visualid ); |
005f5d18 | 396 | else |
22a3bce4 | 397 | visual = gdk_drawable_get_visual( wxGetRootWindow()->window ); |
be88a6ad | 398 | |
005f5d18 | 399 | wxASSERT( visual ); |
be88a6ad | 400 | |
005f5d18 RR |
401 | return visual; |
402 | } | |
403 | ||
abca8ebf | 404 | bool wxApp::Initialize(int& argc, wxChar **argv) |
c801d85f | 405 | { |
c156411a | 406 | bool init_result; |
68567a96 | 407 | |
924ef850 | 408 | #if wxUSE_THREADS |
ac131bab MR |
409 | if (!g_thread_supported()) |
410 | g_thread_init(NULL); | |
3b5d2007 PC |
411 | |
412 | wxgs_poll_func = g_main_context_get_poll_func(NULL); | |
413 | g_main_context_set_poll_func(NULL, wxapp_poll_func); | |
05e2b077 | 414 | #endif // wxUSE_THREADS |
2286341c | 415 | |
0d2a2b60 | 416 | gtk_set_locale(); |
c801d85f | 417 | |
f9862abd JS |
418 | // We should have the wxUSE_WCHAR_T test on the _outside_ |
419 | #if wxUSE_WCHAR_T | |
68567a96 MR |
420 | // gtk+ 2.0 supports Unicode through UTF-8 strings |
421 | wxConvCurrent = &wxConvUTF8; | |
05e2b077 VZ |
422 | #else // !wxUSE_WCHAR_T |
423 | if (!wxOKlibc()) | |
424 | wxConvCurrent = (wxMBConv*) NULL; | |
425 | #endif // wxUSE_WCHAR_T/!wxUSE_WCHAR_T | |
002f4218 | 426 | |
845905d5 MW |
427 | // decide which conversion to use for the file names |
428 | ||
429 | // (1) this variable exists for the sole purpose of specifying the encoding | |
430 | // of the filenames for GTK+ programs, so use it if it is set | |
431 | wxString encName(wxGetenv(_T("G_FILENAME_ENCODING"))); | |
29c326b7 | 432 | encName = encName.BeforeFirst(_T(',')); |
7c8ec100 | 433 | if (encName.CmpNoCase(_T("@locale")) == 0) |
d24b23b7 | 434 | encName.clear(); |
845905d5 | 435 | encName.MakeUpper(); |
68567a96 | 436 | #if wxUSE_INTL |
845905d5 MW |
437 | if (encName.empty()) |
438 | { | |
439 | // (2) if a non default locale is set, assume that the user wants his | |
440 | // filenames in this locale too | |
441 | encName = wxLocale::GetSystemEncodingName().Upper(); | |
442 | // (3) finally use UTF-8 by default | |
443 | if (encName.empty() || encName == _T("US-ASCII")) | |
444 | encName = _T("UTF-8"); | |
445 | wxSetEnv(_T("G_FILENAME_ENCODING"), encName); | |
446 | } | |
447 | #else | |
448 | if (encName.empty()) | |
449 | encName = _T("UTF-8"); | |
450 | #endif // wxUSE_INTL | |
451 | static wxConvBrokenFileNames fileconv(encName); | |
452 | wxConvFileName = &fileconv; | |
66bf0099 | 453 | |
05e2b077 VZ |
454 | #if wxUSE_UNICODE |
455 | // gtk_init() wants UTF-8, not wchar_t, so convert | |
456 | int i; | |
0d8dda32 | 457 | char **argvGTK = new char *[argc + 1]; |
05e2b077 | 458 | for ( i = 0; i < argc; i++ ) |
924ef850 | 459 | { |
05e2b077 | 460 | argvGTK[i] = wxStrdupA(wxConvUTF8.cWX2MB(argv[i])); |
924ef850 | 461 | } |
0cf2cb36 | 462 | |
05e2b077 | 463 | argvGTK[argc] = NULL; |
954de0f1 | 464 | |
05e2b077 | 465 | int argcGTK = argc; |
68567a96 | 466 | |
62be94e1 | 467 | #ifdef __WXGPE__ |
c156411a | 468 | init_result = true; // is there a _check() version of this? |
62be94e1 RR |
469 | gpe_application_init( &argcGTK, &argvGTK ); |
470 | #else | |
c156411a | 471 | init_result = gtk_init_check( &argcGTK, &argvGTK ); |
62be94e1 | 472 | #endif |
954de0f1 | 473 | |
05e2b077 | 474 | if ( argcGTK != argc ) |
924ef850 | 475 | { |
05e2b077 VZ |
476 | // we have to drop the parameters which were consumed by GTK+ |
477 | for ( i = 0; i < argcGTK; i++ ) | |
478 | { | |
0d8dda32 | 479 | while ( strcmp(wxConvUTF8.cWX2MB(argv[i]), argvGTK[i]) != 0 ) |
05e2b077 | 480 | { |
c8db4e15 | 481 | memmove(argv + i, argv + i + 1, (argc - i)*sizeof(*argv)); |
05e2b077 VZ |
482 | } |
483 | } | |
0cf2cb36 | 484 | |
05e2b077 | 485 | argc = argcGTK; |
2b5f62a0 | 486 | } |
05e2b077 | 487 | //else: gtk_init() didn't modify our parameters |
e0253070 | 488 | |
05e2b077 VZ |
489 | // free our copy |
490 | for ( i = 0; i < argcGTK; i++ ) | |
0151c3eb | 491 | { |
05e2b077 | 492 | free(argvGTK[i]); |
0151c3eb | 493 | } |
0cf2cb36 | 494 | |
05e2b077 VZ |
495 | delete [] argvGTK; |
496 | #else // !wxUSE_UNICODE | |
497 | // gtk_init() shouldn't actually change argv itself (just its contents) so | |
498 | // it's ok to pass pointer to it | |
c156411a | 499 | init_result = gtk_init_check( &argc, &argv ); |
05e2b077 | 500 | #endif // wxUSE_UNICODE/!wxUSE_UNICODE |
0cf2cb36 | 501 | |
c156411a RD |
502 | if (!init_result) { |
503 | wxLogError(wxT("Unable to initialize gtk, is DISPLAY set properly?")); | |
504 | return false; | |
505 | } | |
68567a96 | 506 | |
05e2b077 VZ |
507 | // we can not enter threads before gtk_init is done |
508 | gdk_threads_enter(); | |
0cf2cb36 | 509 | |
abca8ebf VZ |
510 | if ( !wxAppBase::Initialize(argc, argv) ) |
511 | { | |
512 | gdk_threads_leave(); | |
513 | ||
514 | return false; | |
515 | } | |
516 | ||
e4db172a | 517 | wxSetDetectableAutoRepeat( true ); |
be88a6ad | 518 | |
05e2b077 VZ |
519 | #if wxUSE_INTL |
520 | wxFont::SetDefaultEncoding(wxLocale::GetSystemEncoding()); | |
521 | #endif | |
be88a6ad | 522 | |
05e2b077 VZ |
523 | return true; |
524 | } | |
0cf2cb36 | 525 | |
05e2b077 VZ |
526 | void wxApp::CleanUp() |
527 | { | |
05e2b077 | 528 | gdk_threads_leave(); |
abca8ebf VZ |
529 | |
530 | wxAppBase::CleanUp(); | |
ff7b1510 | 531 | } |
1a56f55c | 532 | |
a5f1fd3e VZ |
533 | #ifdef __WXDEBUG__ |
534 | ||
2d97237d VZ |
535 | void wxApp::OnAssertFailure(const wxChar *file, |
536 | int line, | |
537 | const wxChar* func, | |
538 | const wxChar* cond, | |
539 | const wxChar *msg) | |
a5f1fd3e | 540 | { |
ec439571 PC |
541 | |
542 | // block wx idle events while assert dialog is showing | |
543 | m_isInAssert = true; | |
a5f1fd3e | 544 | |
2d97237d | 545 | wxAppBase::OnAssertFailure(file, line, func, cond, msg); |
a5f1fd3e | 546 | |
ec439571 | 547 | m_isInAssert = false; |
a5f1fd3e VZ |
548 | } |
549 | ||
550 | #endif // __WXDEBUG__ | |
551 | ||
67461bd1 | 552 | void wxApp::SuspendIdleCallback() |
fe593cc5 VS |
553 | { |
554 | #if wxUSE_THREADS | |
555 | wxMutexLocker lock(gs_idleTagsMutex); | |
556 | #endif | |
8a378a9e | 557 | if (m_idleTag != 0) |
c263eb03 | 558 | { |
8a378a9e PC |
559 | g_source_remove(m_idleTag); |
560 | m_idleTag = 0; | |
e4db172a | 561 | g_isIdle = true; |
8a378a9e | 562 | wxAddEmissionHook(); |
c263eb03 | 563 | } |
fe593cc5 | 564 | } |