]>
Commit | Line | Data |
---|---|---|
c801d85f | 1 | ///////////////////////////////////////////////////////////////////////////// |
88a7a4e1 | 2 | // Name: src/gtk/app.cpp |
c801d85f KB |
3 | // Purpose: |
4 | // Author: Robert Roebling | |
01111366 | 5 | // Copyright: (c) 1998 Robert Roebling, Julian Smart |
65571936 | 6 | // Licence: wxWindows licence |
c801d85f KB |
7 | ///////////////////////////////////////////////////////////////////////////// |
8 | ||
f3858bf5 JJ |
9 | // For compilers that support precompilation, includes "wx.h". |
10 | #include "wx/wxprec.h" | |
11 | ||
c801d85f | 12 | #include "wx/app.h" |
88a7a4e1 WS |
13 | |
14 | #ifndef WX_PRECOMP | |
15 | #include "wx/intl.h" | |
e4db172a | 16 | #include "wx/log.h" |
de6185e2 | 17 | #include "wx/utils.h" |
5b56bffb | 18 | #include "wx/memory.h" |
48a1108e | 19 | #include "wx/font.h" |
88a7a4e1 WS |
20 | #endif |
21 | ||
fe593cc5 | 22 | #include "wx/thread.h" |
afb74891 | 23 | |
62be94e1 | 24 | #ifdef __WXGPE__ |
88a7a4e1 | 25 | #include <gpe/init.h> |
62be94e1 RR |
26 | #endif |
27 | ||
f7a3c9be | 28 | #include "wx/apptrait.h" |
f32848c5 | 29 | #include "wx/fontmap.h" |
c801d85f | 30 | |
e2f3bc41 VZ |
31 | #if wxUSE_LIBHILDON |
32 | #include <hildon-widgets/hildon-program.h> | |
33 | #endif // wxUSE_LIBHILDON | |
34 | ||
426d19f1 JS |
35 | #if wxUSE_LIBHILDON2 |
36 | #include <hildon/hildon.h> | |
37 | #endif // wxUSE_LIBHILDON2 | |
38 | ||
9dc44eff PC |
39 | #include <gtk/gtk.h> |
40 | #include "wx/gtk/private.h" | |
24178e4a | 41 | |
2b850ae1 RR |
42 | //----------------------------------------------------------------------------- |
43 | // link GnomeVFS | |
44 | //----------------------------------------------------------------------------- | |
45 | ||
09a09455 PC |
46 | #if wxUSE_MIMETYPE && wxUSE_LIBGNOMEVFS |
47 | #include "wx/link.h" | |
48 | wxFORCE_LINK_MODULE(gnome_vfs) | |
2b850ae1 RR |
49 | #endif |
50 | ||
bf9e3e73 RR |
51 | //----------------------------------------------------------------------------- |
52 | // local functions | |
53 | //----------------------------------------------------------------------------- | |
54 | ||
a1abca32 PC |
55 | // One-shot signal emission hook, to install idle handler. |
56 | extern "C" { | |
14819684 | 57 | static gboolean |
a1abca32 | 58 | wx_emission_hook(GSignalInvocationHint*, guint, const GValue*, gpointer data) |
14819684 | 59 | { |
a1abca32 PC |
60 | wxApp* app = wxTheApp; |
61 | if (app != NULL) | |
62 | app->WakeUpIdle(); | |
4d4ec2a5 | 63 | bool* hook_installed = (bool*)data; |
a1abca32 | 64 | // record that hook is not installed |
4d4ec2a5 | 65 | *hook_installed = false; |
14819684 PC |
66 | // remove hook |
67 | return false; | |
68 | } | |
a1abca32 | 69 | } |
14819684 | 70 | |
a1abca32 PC |
71 | // Add signal emission hooks, to re-install idle handler when needed. |
72 | static void wx_add_idle_hooks() | |
8a378a9e | 73 | { |
a1abca32 | 74 | // "event" hook |
176d9824 | 75 | { |
4d4ec2a5 PC |
76 | static bool hook_installed; |
77 | if (!hook_installed) | |
a1abca32 | 78 | { |
4d4ec2a5 | 79 | static guint sig_id; |
a1abca32 PC |
80 | if (sig_id == 0) |
81 | sig_id = g_signal_lookup("event", GTK_TYPE_WIDGET); | |
4d4ec2a5 PC |
82 | hook_installed = true; |
83 | g_signal_add_emission_hook( | |
84 | sig_id, 0, wx_emission_hook, &hook_installed, NULL); | |
a1abca32 PC |
85 | } |
86 | } | |
87 | // "size_allocate" hook | |
4c51a665 | 88 | // Needed to match the behaviour of the old idle system, |
a1abca32 PC |
89 | // but probably not necessary. |
90 | { | |
4d4ec2a5 PC |
91 | static bool hook_installed; |
92 | if (!hook_installed) | |
a1abca32 | 93 | { |
4d4ec2a5 | 94 | static guint sig_id; |
a1abca32 PC |
95 | if (sig_id == 0) |
96 | sig_id = g_signal_lookup("size_allocate", GTK_TYPE_WIDGET); | |
4d4ec2a5 PC |
97 | hook_installed = true; |
98 | g_signal_add_emission_hook( | |
99 | sig_id, 0, wx_emission_hook, &hook_installed, NULL); | |
a1abca32 | 100 | } |
176d9824 | 101 | } |
8a378a9e PC |
102 | } |
103 | ||
a1abca32 PC |
104 | extern "C" { |
105 | static gboolean wxapp_idle_callback(gpointer) | |
96997d65 | 106 | { |
a1abca32 PC |
107 | return wxTheApp->DoIdle(); |
108 | } | |
109 | } | |
ec439571 | 110 | |
a1abca32 PC |
111 | bool wxApp::DoIdle() |
112 | { | |
113 | guint id_save; | |
ec439571 | 114 | { |
a1abca32 PC |
115 | // Allow another idle source to be added while this one is busy. |
116 | // Needed if an idle event handler runs a new event loop, | |
117 | // for example by showing a dialog. | |
046c2f14 | 118 | #if wxUSE_THREADS |
4d4ec2a5 | 119 | wxMutexLocker lock(m_idleMutex); |
046c2f14 | 120 | #endif |
a1abca32 PC |
121 | id_save = m_idleSourceId; |
122 | m_idleSourceId = 0; | |
123 | wx_add_idle_hooks(); | |
657a8a35 VZ |
124 | |
125 | #if wxDEBUG_LEVEL | |
a1abca32 | 126 | // don't generate the idle events while the assert modal dialog is shown, |
4c51a665 | 127 | // this matches the behaviour of wxMSW |
a1abca32 PC |
128 | if (m_isInAssert) |
129 | return false; | |
130 | #endif | |
131 | } | |
ec439571 | 132 | |
a1abca32 PC |
133 | gdk_threads_enter(); |
134 | bool needMore; | |
135 | do { | |
26bacb82 VZ |
136 | ProcessPendingEvents(); |
137 | ||
a1abca32 PC |
138 | needMore = ProcessIdle(); |
139 | } while (needMore && gtk_events_pending() == 0); | |
140 | gdk_threads_leave(); | |
f4322df6 | 141 | |
046c2f14 | 142 | #if wxUSE_THREADS |
4d4ec2a5 | 143 | wxMutexLocker lock(m_idleMutex); |
046c2f14 | 144 | #endif |
81a2edf9 | 145 | |
8a48b920 PC |
146 | bool keepSource = false; |
147 | // if a new idle source has not been added, either as a result of idle | |
148 | // processing above or by another thread calling WakeUpIdle() | |
149 | if (m_idleSourceId == 0) | |
9a5c9a0c | 150 | { |
8a48b920 PC |
151 | // if more idle processing was requested or pending events have appeared |
152 | if (needMore || HasPendingEvents()) | |
153 | { | |
154 | // keep this source installed | |
155 | m_idleSourceId = id_save; | |
156 | keepSource = true; | |
157 | } | |
158 | else // add hooks and remove this source | |
159 | wx_add_idle_hooks(); | |
9a5c9a0c | 160 | } |
8a48b920 PC |
161 | // else remove this source, leave new one installed |
162 | // we must keep an idle source, otherwise a wakeup could be lost | |
163 | ||
164 | return keepSource; | |
acfd422a | 165 | } |
8801832d | 166 | |
005f5d18 RR |
167 | //----------------------------------------------------------------------------- |
168 | // Access to the root window global | |
169 | //----------------------------------------------------------------------------- | |
170 | ||
171 | GtkWidget* wxGetRootWindow() | |
172 | { | |
dde19c21 FM |
173 | static GtkWidget *s_RootWindow = NULL; |
174 | ||
175 | if (s_RootWindow == NULL) | |
005f5d18 | 176 | { |
dde19c21 FM |
177 | s_RootWindow = gtk_window_new( GTK_WINDOW_TOPLEVEL ); |
178 | gtk_widget_realize( s_RootWindow ); | |
005f5d18 | 179 | } |
dde19c21 | 180 | return s_RootWindow; |
005f5d18 RR |
181 | } |
182 | ||
c801d85f KB |
183 | //----------------------------------------------------------------------------- |
184 | // wxApp | |
185 | //----------------------------------------------------------------------------- | |
186 | ||
187 | IMPLEMENT_DYNAMIC_CLASS(wxApp,wxEvtHandler) | |
188 | ||
c801d85f KB |
189 | wxApp::wxApp() |
190 | { | |
de6185e2 | 191 | m_isInAssert = false; |
a1abca32 | 192 | m_idleSourceId = 0; |
ff7b1510 | 193 | } |
c801d85f | 194 | |
60acb947 | 195 | wxApp::~wxApp() |
c801d85f | 196 | { |
ff7b1510 | 197 | } |
c801d85f | 198 | |
c50c6fb2 VZ |
199 | bool wxApp::SetNativeTheme(const wxString& theme) |
200 | { | |
9f7405d0 PC |
201 | #ifdef __WXGTK3__ |
202 | wxUnusedVar(theme); | |
203 | return false; | |
204 | #else | |
c50c6fb2 VZ |
205 | wxString path; |
206 | path = gtk_rc_get_theme_dir(); | |
207 | path += "/"; | |
208 | path += theme.utf8_str(); | |
209 | path += "/gtk-2.0/gtkrc"; | |
210 | ||
211 | if ( wxFileExists(path.utf8_str()) ) | |
212 | gtk_rc_add_default_file(path.utf8_str()); | |
213 | else if ( wxFileExists(theme.utf8_str()) ) | |
214 | gtk_rc_add_default_file(theme.utf8_str()); | |
215 | else | |
216 | { | |
217 | wxLogWarning("Theme \"%s\" not available.", theme); | |
218 | ||
219 | return false; | |
220 | } | |
221 | ||
222 | gtk_rc_reparse_all_for_settings(gtk_settings_get_default(), TRUE); | |
223 | ||
224 | return true; | |
9f7405d0 | 225 | #endif |
c50c6fb2 VZ |
226 | } |
227 | ||
0d2a2b60 | 228 | bool wxApp::OnInitGui() |
c801d85f | 229 | { |
1e6feb95 | 230 | if ( !wxAppBase::OnInitGui() ) |
de6185e2 | 231 | return false; |
1e6feb95 | 232 | |
9dc44eff | 233 | #ifndef __WXGTK3__ |
a6f5aa49 VZ |
234 | // if this is a wxGLApp (derived from wxApp), and we've already |
235 | // chosen a specific visual, then derive the GdkVisual from that | |
498ace9e | 236 | if ( GetXVisualInfo() ) |
005f5d18 | 237 | { |
a6f5aa49 | 238 | GdkVisual* vis = gtk_widget_get_default_visual(); |
a6f5aa49 VZ |
239 | |
240 | GdkColormap *colormap = gdk_colormap_new( vis, FALSE ); | |
241 | gtk_widget_set_default_colormap( colormap ); | |
a6f5aa49 | 242 | } |
005f5d18 | 243 | else |
b134516c | 244 | { |
c77eea28 RR |
245 | // On some machines, the default visual is just 256 colours, so |
246 | // we make sure we get the best. This can sometimes be wasteful. | |
247 | if (m_useBestVisual) | |
248 | { | |
249 | if (m_forceTrueColour) | |
250 | { | |
251 | GdkVisual* visual = gdk_visual_get_best_with_both( 24, GDK_VISUAL_TRUE_COLOR ); | |
252 | if (!visual) | |
253 | { | |
254 | wxLogError(wxT("Unable to initialize TrueColor visual.")); | |
255 | return false; | |
256 | } | |
257 | GdkColormap *colormap = gdk_colormap_new( visual, FALSE ); | |
258 | gtk_widget_set_default_colormap( colormap ); | |
259 | } | |
260 | else | |
261 | { | |
262 | if (gdk_visual_get_best() != gdk_visual_get_system()) | |
263 | { | |
264 | GdkVisual* visual = gdk_visual_get_best(); | |
265 | GdkColormap *colormap = gdk_colormap_new( visual, FALSE ); | |
266 | gtk_widget_set_default_colormap( colormap ); | |
267 | } | |
268 | } | |
269 | } | |
f6fcbb63 | 270 | } |
9dc44eff | 271 | #endif |
c801d85f | 272 | |
426d19f1 JS |
273 | #if wxUSE_LIBHILDON || wxUSE_LIBHILDON2 |
274 | if ( !GetHildonProgram() ) | |
e2f3bc41 VZ |
275 | { |
276 | wxLogError(_("Unable to initialize Hildon program")); | |
277 | return false; | |
278 | } | |
426d19f1 | 279 | #endif // wxUSE_LIBHILDON || wxUSE_LIBHILDON2 |
e2f3bc41 | 280 | |
88a7a4e1 | 281 | return true; |
bbe0af5b RR |
282 | } |
283 | ||
291b0f5b VZ |
284 | // use unusual names for the parameters to avoid conflict with wxApp::arg[cv] |
285 | bool wxApp::Initialize(int& argc_, wxChar **argv_) | |
c801d85f | 286 | { |
291b0f5b | 287 | if ( !wxAppBase::Initialize(argc_, argv_) ) |
d774f916 | 288 | return false; |
68567a96 | 289 | |
924ef850 | 290 | #if wxUSE_THREADS |
ac131bab | 291 | if (!g_thread_supported()) |
d254213e | 292 | { |
ac131bab | 293 | g_thread_init(NULL); |
d254213e PC |
294 | gdk_threads_init(); |
295 | } | |
05e2b077 | 296 | #endif // wxUSE_THREADS |
2286341c | 297 | |
68567a96 MR |
298 | // gtk+ 2.0 supports Unicode through UTF-8 strings |
299 | wxConvCurrent = &wxConvUTF8; | |
002f4218 | 300 | |
c282e47d | 301 | #ifdef __UNIX__ |
845905d5 MW |
302 | // decide which conversion to use for the file names |
303 | ||
304 | // (1) this variable exists for the sole purpose of specifying the encoding | |
305 | // of the filenames for GTK+ programs, so use it if it is set | |
9a83f860 VZ |
306 | wxString encName(wxGetenv(wxT("G_FILENAME_ENCODING"))); |
307 | encName = encName.BeforeFirst(wxT(',')); | |
308 | if (encName.CmpNoCase(wxT("@locale")) == 0) | |
d24b23b7 | 309 | encName.clear(); |
845905d5 | 310 | encName.MakeUpper(); |
845905d5 MW |
311 | if (encName.empty()) |
312 | { | |
b5101417 | 313 | #if wxUSE_INTL |
845905d5 MW |
314 | // (2) if a non default locale is set, assume that the user wants his |
315 | // filenames in this locale too | |
316 | encName = wxLocale::GetSystemEncodingName().Upper(); | |
f32848c5 VZ |
317 | |
318 | // But don't consider ASCII in this case. | |
319 | if ( !encName.empty() ) | |
320 | { | |
321 | #if wxUSE_FONTMAP | |
322 | wxFontEncoding enc = wxFontMapperBase::GetEncodingFromName(encName); | |
323 | if ( enc == wxFONTENCODING_DEFAULT ) | |
324 | #else // !wxUSE_FONTMAP | |
325 | if ( encName == wxT("US-ASCII") ) | |
326 | #endif // wxUSE_FONTMAP/!wxUSE_FONTMAP | |
327 | { | |
328 | // This means US-ASCII when returned from GetEncodingFromName(). | |
329 | encName.clear(); | |
330 | } | |
331 | } | |
b5101417 | 332 | #endif // wxUSE_INTL |
f32848c5 | 333 | |
845905d5 | 334 | // (3) finally use UTF-8 by default |
f32848c5 | 335 | if ( encName.empty() ) |
9a83f860 VZ |
336 | encName = wxT("UTF-8"); |
337 | wxSetEnv(wxT("G_FILENAME_ENCODING"), encName); | |
845905d5 | 338 | } |
7ecb75b7 | 339 | |
845905d5 MW |
340 | static wxConvBrokenFileNames fileconv(encName); |
341 | wxConvFileName = &fileconv; | |
c282e47d | 342 | #endif // __UNIX__ |
66bf0099 | 343 | |
d774f916 VZ |
344 | |
345 | bool init_result; | |
4b4e81ee | 346 | int i; |
d774f916 | 347 | |
05e2b077 VZ |
348 | #if wxUSE_UNICODE |
349 | // gtk_init() wants UTF-8, not wchar_t, so convert | |
291b0f5b VZ |
350 | char **argvGTK = new char *[argc_ + 1]; |
351 | for ( i = 0; i < argc_; i++ ) | |
924ef850 | 352 | { |
291b0f5b | 353 | argvGTK[i] = wxStrdupA(wxConvUTF8.cWX2MB(argv_[i])); |
924ef850 | 354 | } |
0cf2cb36 | 355 | |
291b0f5b | 356 | argvGTK[argc_] = NULL; |
954de0f1 | 357 | |
291b0f5b | 358 | int argcGTK = argc_; |
68567a96 | 359 | |
b5101417 VZ |
360 | // Prevent gtk_init_check() from changing the locale automatically for |
361 | // consistency with the other ports that don't do it. If necessary, | |
362 | // wxApp::SetCLocale() may be explicitly called. | |
363 | gtk_disable_setlocale(); | |
364 | ||
62be94e1 | 365 | #ifdef __WXGPE__ |
c156411a | 366 | init_result = true; // is there a _check() version of this? |
62be94e1 RR |
367 | gpe_application_init( &argcGTK, &argvGTK ); |
368 | #else | |
d5027818 | 369 | init_result = gtk_init_check( &argcGTK, &argvGTK ) != 0; |
62be94e1 | 370 | #endif |
954de0f1 | 371 | |
291b0f5b | 372 | if ( argcGTK != argc_ ) |
924ef850 | 373 | { |
05e2b077 VZ |
374 | // we have to drop the parameters which were consumed by GTK+ |
375 | for ( i = 0; i < argcGTK; i++ ) | |
376 | { | |
291b0f5b | 377 | while ( strcmp(wxConvUTF8.cWX2MB(argv_[i]), argvGTK[i]) != 0 ) |
05e2b077 | 378 | { |
291b0f5b | 379 | memmove(argv_ + i, argv_ + i + 1, (argc_ - i)*sizeof(*argv_)); |
05e2b077 VZ |
380 | } |
381 | } | |
0cf2cb36 | 382 | |
291b0f5b | 383 | argc_ = argcGTK; |
4f6b94a3 | 384 | argv_[argc_] = NULL; |
2b5f62a0 | 385 | } |
05e2b077 | 386 | //else: gtk_init() didn't modify our parameters |
e0253070 | 387 | |
05e2b077 VZ |
388 | // free our copy |
389 | for ( i = 0; i < argcGTK; i++ ) | |
0151c3eb | 390 | { |
05e2b077 | 391 | free(argvGTK[i]); |
0151c3eb | 392 | } |
0cf2cb36 | 393 | |
05e2b077 VZ |
394 | delete [] argvGTK; |
395 | #else // !wxUSE_UNICODE | |
291b0f5b | 396 | // gtk_init() shouldn't actually change argv_ itself (just its contents) so |
05e2b077 | 397 | // it's ok to pass pointer to it |
291b0f5b | 398 | init_result = gtk_init_check( &argc_, &argv_ ); |
05e2b077 | 399 | #endif // wxUSE_UNICODE/!wxUSE_UNICODE |
0cf2cb36 | 400 | |
f7a3c9be | 401 | // update internal arg[cv] as GTK+ may have removed processed options: |
291b0f5b VZ |
402 | this->argc = argc_; |
403 | this->argv = argv_; | |
f7a3c9be | 404 | |
b045eff2 VZ |
405 | if ( m_traits ) |
406 | { | |
407 | // if there are still GTK+ standard options unparsed in the command | |
408 | // line, it means that they were not syntactically correct and GTK+ | |
409 | // already printed a warning on the command line and we should now | |
410 | // exit: | |
411 | wxArrayString opt, desc; | |
412 | m_traits->GetStandardCmdLineOptions(opt, desc); | |
413 | ||
4b4e81ee | 414 | for ( i = 0; i < argc_; i++ ) |
b045eff2 VZ |
415 | { |
416 | // leave just the names of the options with values | |
291b0f5b | 417 | const wxString str = wxString(argv_[i]).BeforeFirst('='); |
b045eff2 VZ |
418 | |
419 | for ( size_t j = 0; j < opt.size(); j++ ) | |
420 | { | |
421 | // remove the leading spaces from the option string as it does | |
422 | // have them | |
423 | if ( opt[j].Trim(false).BeforeFirst('=') == str ) | |
424 | { | |
425 | // a GTK+ option can be left on the command line only if | |
426 | // there was an error in (or before, in another standard | |
427 | // options) it, so abort, just as we do if incorrect | |
428 | // program option is given | |
429 | wxLogError(_("Invalid GTK+ command line option, use \"%s --help\""), | |
291b0f5b | 430 | argv_[0]); |
b045eff2 VZ |
431 | return false; |
432 | } | |
433 | } | |
434 | } | |
435 | } | |
436 | ||
f7a3c9be VZ |
437 | if ( !init_result ) |
438 | { | |
439 | wxLogError(_("Unable to initialize GTK+, is DISPLAY set properly?")); | |
c156411a RD |
440 | return false; |
441 | } | |
68567a96 | 442 | |
4c51a665 | 443 | // we cannot enter threads before gtk_init is done |
05e2b077 | 444 | gdk_threads_enter(); |
0cf2cb36 | 445 | |
05e2b077 VZ |
446 | #if wxUSE_INTL |
447 | wxFont::SetDefaultEncoding(wxLocale::GetSystemEncoding()); | |
448 | #endif | |
be88a6ad | 449 | |
a1abca32 PC |
450 | // make sure GtkWidget type is loaded, idle hooks need it |
451 | g_type_class_ref(GTK_TYPE_WIDGET); | |
452 | WakeUpIdle(); | |
453 | ||
05e2b077 VZ |
454 | return true; |
455 | } | |
0cf2cb36 | 456 | |
05e2b077 VZ |
457 | void wxApp::CleanUp() |
458 | { | |
a1abca32 PC |
459 | if (m_idleSourceId != 0) |
460 | g_source_remove(m_idleSourceId); | |
c114eb7a | 461 | |
a1abca32 PC |
462 | // release reference acquired by Initialize() |
463 | g_type_class_unref(g_type_class_peek(GTK_TYPE_WIDGET)); | |
464 | ||
05e2b077 | 465 | gdk_threads_leave(); |
abca8ebf VZ |
466 | |
467 | wxAppBase::CleanUp(); | |
ff7b1510 | 468 | } |
1a56f55c | 469 | |
a1abca32 PC |
470 | void wxApp::WakeUpIdle() |
471 | { | |
472 | #if wxUSE_THREADS | |
4d4ec2a5 | 473 | wxMutexLocker lock(m_idleMutex); |
a1abca32 PC |
474 | #endif |
475 | if (m_idleSourceId == 0) | |
476 | m_idleSourceId = g_idle_add_full(G_PRIORITY_LOW, wxapp_idle_callback, NULL, NULL); | |
477 | } | |
478 | ||
479 | // Checking for pending events requires first removing our idle source, | |
480 | // otherwise it will cause the check to always return true. | |
481 | bool wxApp::EventsPending() | |
482 | { | |
483 | #if wxUSE_THREADS | |
4d4ec2a5 | 484 | wxMutexLocker lock(m_idleMutex); |
a1abca32 PC |
485 | #endif |
486 | if (m_idleSourceId != 0) | |
487 | { | |
488 | g_source_remove(m_idleSourceId); | |
489 | m_idleSourceId = 0; | |
490 | wx_add_idle_hooks(); | |
491 | } | |
492 | return gtk_events_pending() != 0; | |
493 | } | |
494 | ||
2d97237d VZ |
495 | void wxApp::OnAssertFailure(const wxChar *file, |
496 | int line, | |
497 | const wxChar* func, | |
498 | const wxChar* cond, | |
499 | const wxChar *msg) | |
a5f1fd3e | 500 | { |
657a8a35 VZ |
501 | // there is no need to do anything if asserts are disabled in this build |
502 | // anyhow | |
503 | #if wxDEBUG_LEVEL | |
ec439571 PC |
504 | // block wx idle events while assert dialog is showing |
505 | m_isInAssert = true; | |
a5f1fd3e | 506 | |
2d97237d | 507 | wxAppBase::OnAssertFailure(file, line, func, cond, msg); |
a5f1fd3e | 508 | |
ec439571 | 509 | m_isInAssert = false; |
657a8a35 VZ |
510 | #else // !wxDEBUG_LEVEL |
511 | wxUnusedVar(file); | |
512 | wxUnusedVar(line); | |
513 | wxUnusedVar(func); | |
514 | wxUnusedVar(cond); | |
515 | wxUnusedVar(msg); | |
516 | #endif // wxDEBUG_LEVEL/!wxDEBUG_LEVEL | |
a5f1fd3e VZ |
517 | } |
518 | ||
d254213e PC |
519 | #if wxUSE_THREADS |
520 | void wxGUIAppTraits::MutexGuiEnter() | |
521 | { | |
522 | gdk_threads_enter(); | |
523 | } | |
524 | ||
525 | void wxGUIAppTraits::MutexGuiLeave() | |
526 | { | |
527 | gdk_threads_leave(); | |
528 | } | |
529 | #endif // wxUSE_THREADS | |
426d19f1 | 530 | |
93c609c7 VZ |
531 | /* static */ |
532 | bool wxApp::GTKIsUsingGlobalMenu() | |
533 | { | |
534 | static int s_isUsingGlobalMenu = -1; | |
535 | if ( s_isUsingGlobalMenu == -1 ) | |
536 | { | |
537 | // Currently we just check for this environment variable because this | |
538 | // is how support for the global menu is implemented under Ubuntu. | |
539 | // | |
540 | // If we ever get false positives, we could also check for | |
541 | // XDG_CURRENT_DESKTOP env var being set to "Unity". | |
542 | wxString proxy; | |
543 | s_isUsingGlobalMenu = wxGetEnv("UBUNTU_MENUPROXY", &proxy) && | |
f8115cdc | 544 | !proxy.empty() && proxy != "0"; |
93c609c7 VZ |
545 | } |
546 | ||
547 | return s_isUsingGlobalMenu == 1; | |
548 | } | |
549 | ||
426d19f1 JS |
550 | #if wxUSE_LIBHILDON || wxUSE_LIBHILDON2 |
551 | // Maemo-specific method: get the main program object | |
552 | HildonProgram *wxApp::GetHildonProgram() | |
ce00f59b VZ |
553 | { |
554 | return hildon_program_get_instance(); | |
426d19f1 | 555 | } |
ce00f59b | 556 | |
426d19f1 | 557 | #endif // wxUSE_LIBHILDON || wxUSE_LIBHILDON2 |