]> git.saurik.com Git - wxWidgets.git/blame - src/gtk/app.cpp
Improvements for building minimal builds and new ports: wxUSE_* usage and minor cleaning.
[wxWidgets.git] / src / gtk / app.cpp
CommitLineData
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"
fdf565fe 25 #include "wx/dialog.h"
9eddec69 26 #include "wx/settings.h"
246c5004 27 #include "wx/msgdlg.h"
88a7a4e1
WS
28#endif
29
c801d85f 30#include "wx/gdicmn.h"
46dc76ba 31#include "wx/memory.h"
a3622daa 32#include "wx/font.h"
b1ac3b56 33#include "wx/file.h"
2b5f62a0 34#include "wx/filename.h"
031b2a7b 35#include "wx/module.h"
4bc67cc5 36#include "wx/image.h"
fe593cc5 37#include "wx/thread.h"
afb74891 38
62be94e1 39#ifdef __WXGPE__
88a7a4e1 40 #include <gpe/init.h>
62be94e1
RR
41#endif
42
df028524
VS
43#ifdef __WXUNIVERSAL__
44 #include "wx/univ/theme.h"
45 #include "wx/univ/renderer.h"
46#endif
47
20e05ffb 48#include <unistd.h>
2b5f62a0
VZ
49
50#ifdef HAVE_POLL
51 #if defined(__VMS)
52 #include <poll.h>
53 #else
54 // bug in the OpenBSD headers: at least in 3.1 there is no extern "C"
55 // in neither poll.h nor sys/poll.h which results in link errors later
56 #ifdef __OPENBSD__
57 extern "C"
58 {
59 #endif
60
61 #include <sys/poll.h>
62
63 #ifdef __OPENBSD__
64 };
65 #endif
66 #endif // platform
67#else // !HAVE_POLL
68 // we implement poll() ourselves using select() which is supposed exist in
69 // all modern Unices
70 #include <sys/types.h>
71 #include <sys/time.h>
72 #include <unistd.h>
73#endif // HAVE_POLL/!HAVE_POLL
74
17a1ebd1 75#include "wx/unix/private.h"
e8106239 76#include "wx/gtk/win_gtk.h"
84833214 77#include "wx/gtk/private.h"
c801d85f 78
c259ffdf 79#include <gdk/gdkx.h>
24178e4a 80
2b850ae1
RR
81//-----------------------------------------------------------------------------
82// link GnomeVFS
83//-----------------------------------------------------------------------------
84
85#if wxUSE_LIBGNOMEVFS
86#include "wx/html/forcelnk.h"
87FORCE_LINK(gnome_vfs)
88#endif
89
c801d85f
KB
90//-----------------------------------------------------------------------------
91// global data
92//-----------------------------------------------------------------------------
93
de6185e2 94bool g_mainThreadLocked = false;
96997d65 95gint g_pendingTag = 0;
3ac8d3bc 96
c2fa61e8 97static GtkWidget *gs_RootWindow = (GtkWidget*) NULL;
d76fe38b 98
c801d85f 99//-----------------------------------------------------------------------------
3133cb9f 100// idle system
c801d85f
KB
101//-----------------------------------------------------------------------------
102
90350682 103void wxapp_install_idle_handler();
bf9e3e73 104
fe593cc5
VS
105#if wxUSE_THREADS
106static wxMutex gs_idleTagsMutex;
107#endif
108
bf9e3e73
RR
109//-----------------------------------------------------------------------------
110// wxYield
111//-----------------------------------------------------------------------------
53a8af59 112
1ee339ee
VZ
113// not static because used by textctrl.cpp
114//
115// MT-FIXME
88a7a4e1 116bool wxIsInsideYield = false;
1ee339ee 117
8461e4c2 118bool wxApp::Yield(bool onlyIfNeeded)
c801d85f 119{
1ee339ee 120 if ( wxIsInsideYield )
8461e4c2
VZ
121 {
122 if ( !onlyIfNeeded )
123 {
124 wxFAIL_MSG( wxT("wxYield called recursively" ) );
125 }
126
88a7a4e1 127 return false;
8461e4c2
VZ
128 }
129
6dc5fd71
VZ
130#if wxUSE_THREADS
131 if ( !wxThread::IsMain() )
132 {
133 // can't call gtk_main_iteration() from other threads like this
88a7a4e1 134 return true;
6dc5fd71
VZ
135 }
136#endif // wxUSE_THREADS
137
88a7a4e1 138 wxIsInsideYield = true;
e90c1d2a 139
c263eb03
VS
140 // We need to remove idle callbacks or the loop will
141 // never finish.
142 wxTheApp->RemoveIdleTag();
acfd422a 143
dd7641ef 144#if wxUSE_LOG
2ed3265e
VZ
145 // disable log flushing from here because a call to wxYield() shouldn't
146 // normally result in message boxes popping up &c
147 wxLog::Suspend();
dd7641ef 148#endif
2ed3265e 149
406a6f6b
VZ
150 while (gtk_events_pending())
151 gtk_main_iteration();
152
5375a1f5
RR
153 // It's necessary to call ProcessIdle() to update the frames sizes which
154 // might have been changed (it also will update other things set from
be88a6ad 155 // OnUpdateUI() which is a nice (and desired) side effect). But we
5375a1f5
RR
156 // call ProcessIdle() only once since this is not meant for longish
157 // background jobs (controlled by wxIdleEvent::RequestMore() and the
158 // return value of Processidle().
159 ProcessIdle();
2ed3265e 160
dd7641ef 161#if wxUSE_LOG
2ed3265e
VZ
162 // let the logs be flashed again
163 wxLog::Resume();
dd7641ef 164#endif
7741c4e1 165
88a7a4e1 166 wxIsInsideYield = false;
99ba739f 167
88a7a4e1 168 return true;
acfd422a
RR
169}
170
bf9e3e73
RR
171//-----------------------------------------------------------------------------
172// wxWakeUpIdle
173//-----------------------------------------------------------------------------
174
68567a96
MR
175// RR/KH: No wxMutexGui calls are needed here according to the GTK faq,
176// http://www.gtk.org/faq/#AEN500 - this caused problems for wxPostEvent.
19722331 177
e2478fde 178void wxApp::WakeUpIdle()
bf9e3e73 179{
c263eb03 180 wxapp_install_idle_handler();
bf9e3e73
RR
181}
182
183//-----------------------------------------------------------------------------
184// local functions
185//-----------------------------------------------------------------------------
186
90350682
VZ
187// the callback functions must be extern "C" to comply with GTK+ declarations
188extern "C"
189{
190
3133cb9f 191static gint wxapp_pending_callback( gpointer WXUNUSED(data) )
acfd422a
RR
192{
193 if (!wxTheApp) return TRUE;
c2fa61e8 194
5375a1f5 195 // When getting called from GDK's time-out handler
96997d65 196 // we are no longer within GDK's grab on the GUI
5375a1f5 197 // thread so we must lock it here ourselves.
96997d65
RR
198 gdk_threads_enter();
199
5375a1f5 200 // Sent idle event to all who request them.
96997d65 201 wxTheApp->ProcessPendingEvents();
e90c1d2a 202
fe593cc5
VS
203 {
204#if wxUSE_THREADS
205 wxMutexLocker lock(gs_idleTagsMutex);
206#endif
207 g_pendingTag = 0;
208 }
96997d65 209
5375a1f5 210 // Flush the logged messages if any.
1b2dab34
RR
211#if wxUSE_LOG
212 wxLog::FlushActive();
213#endif // wxUSE_LOG
214
96997d65
RR
215 // Release lock again
216 gdk_threads_leave();
217
218 // Return FALSE to indicate that no more idle events are
219 // to be sent (single shot instead of continuous stream)
220 return FALSE;
221}
222
3133cb9f 223static gint wxapp_idle_callback( gpointer WXUNUSED(data) )
96997d65 224{
a5f1fd3e
VZ
225 if (!wxTheApp)
226 return TRUE;
227
228#ifdef __WXDEBUG__
6d477bb4
VZ
229 // don't generate the idle events while the assert modal dialog is shown,
230 // this completely confuses the apps which don't expect to be reentered
231 // from some safely-looking functions
a5f1fd3e
VZ
232 if ( wxTheApp->IsInAssert() )
233 {
94a6f0f8
JS
234 // But repaint the assertion message if necessary
235 if (wxTopLevelWindows.GetCount() > 0)
236 {
b1d4dd7a 237 wxWindow* win = (wxWindow*) wxTopLevelWindows.GetLast()->GetData();
13a7abf9 238 if (win->IsKindOf(CLASSINFO(wxMessageDialog)))
94a6f0f8
JS
239 win->OnInternalIdle();
240 }
6d477bb4 241 return TRUE;
a5f1fd3e
VZ
242 }
243#endif // __WXDEBUG__
c2fa61e8 244
5375a1f5 245 // When getting called from GDK's time-out handler
924ef850 246 // we are no longer within GDK's grab on the GUI
5375a1f5 247 // thread so we must lock it here ourselves.
924ef850 248 gdk_threads_enter();
094637f6 249
5375a1f5
RR
250 // Indicate that we are now in idle mode and event handlers
251 // will have to reinstall the idle handler again.
fe593cc5
VS
252 {
253#if wxUSE_THREADS
254 wxMutexLocker lock(gs_idleTagsMutex);
255#endif
e4db172a 256 g_isIdle = true;
fe593cc5
VS
257 wxTheApp->m_idleTag = 0;
258 }
094637f6 259
0faa7620 260 bool moreIdles;
8ab9a536 261
3133cb9f 262 // Send idle event to all who request them as long as
5375a1f5 263 // no events have popped up in the event queue.
0faa7620 264 while ( (moreIdles = wxTheApp->ProcessIdle()) && gtk_events_pending() == 0)
6d477bb4 265 ;
c9e35272 266
96997d65 267 // Release lock again
924ef850 268 gdk_threads_leave();
acfd422a 269
8ab9a536
RR
270 // Return FALSE if no more idle events are to be sent
271 return moreIdles;
acfd422a 272}
8801832d 273
90350682
VZ
274#if wxUSE_THREADS
275
2b5f62a0
VZ
276#ifdef HAVE_POLL
277 #define wxPoll poll
278 #define wxPollFd pollfd
279#else // !HAVE_POLL
280
281typedef GPollFD wxPollFd;
282
283int wxPoll(wxPollFd *ufds, unsigned int nfds, int timeout)
284{
285 // convert timeout from ms to struct timeval (s/us)
286 timeval tv_timeout;
287 tv_timeout.tv_sec = timeout/1000;
288 tv_timeout.tv_usec = (timeout%1000)*1000;
289
290 // remember the highest fd used here
291 int fdMax = -1;
292
293 // and fill the sets for select()
294 fd_set readfds;
295 fd_set writefds;
296 fd_set exceptfds;
17a1ebd1
VZ
297 wxFD_ZERO(&readfds);
298 wxFD_ZERO(&writefds);
299 wxFD_ZERO(&exceptfds);
2b5f62a0
VZ
300
301 unsigned int i;
302 for ( i = 0; i < nfds; i++ )
303 {
17a1ebd1 304 wxASSERT_MSG( ufds[i].fd < wxFD_SETSIZE, _T("fd out of range") );
2b5f62a0
VZ
305
306 if ( ufds[i].events & G_IO_IN )
17a1ebd1 307 wxFD_SET(ufds[i].fd, &readfds);
2b5f62a0
VZ
308
309 if ( ufds[i].events & G_IO_PRI )
17a1ebd1 310 wxFD_SET(ufds[i].fd, &exceptfds);
2b5f62a0
VZ
311
312 if ( ufds[i].events & G_IO_OUT )
17a1ebd1 313 wxFD_SET(ufds[i].fd, &writefds);
2b5f62a0
VZ
314
315 if ( ufds[i].fd > fdMax )
316 fdMax = ufds[i].fd;
317 }
318
319 fdMax++;
320 int res = select(fdMax, &readfds, &writefds, &exceptfds, &tv_timeout);
321
322 // translate the results back
323 for ( i = 0; i < nfds; i++ )
324 {
325 ufds[i].revents = 0;
326
17a1ebd1 327 if ( wxFD_ISSET(ufds[i].fd, &readfds ) )
2b5f62a0
VZ
328 ufds[i].revents |= G_IO_IN;
329
17a1ebd1 330 if ( wxFD_ISSET(ufds[i].fd, &exceptfds ) )
2b5f62a0
VZ
331 ufds[i].revents |= G_IO_PRI;
332
17a1ebd1 333 if ( wxFD_ISSET(ufds[i].fd, &writefds ) )
2b5f62a0
VZ
334 ufds[i].revents |= G_IO_OUT;
335 }
336
337 return res;
338}
339
340#endif // HAVE_POLL/!HAVE_POLL
341
3133cb9f 342static gint wxapp_poll_func( GPollFD *ufds, guint nfds, gint timeout )
acfd422a 343{
90350682 344 gdk_threads_enter();
7b90a8f2 345
90350682 346 wxMutexGuiLeave();
e4db172a 347 g_mainThreadLocked = true;
7941ba11 348
2b5f62a0
VZ
349 // we rely on the fact that glib GPollFD struct is really just pollfd but
350 // I wonder how wise is this in the long term (VZ)
351 gint res = wxPoll( (wxPollFd *) ufds, nfds, timeout );
90350682 352
90350682 353 wxMutexGuiEnter();
de6185e2 354 g_mainThreadLocked = false;
90350682 355
90350682
VZ
356 gdk_threads_leave();
357
3133cb9f 358 return res;
ff7b1510 359}
c801d85f 360
90350682
VZ
361#endif // wxUSE_THREADS
362
363} // extern "C"
364
3133cb9f 365void wxapp_install_idle_handler()
b453e1b2 366{
fe593cc5
VS
367#if wxUSE_THREADS
368 wxMutexLocker lock(gs_idleTagsMutex);
369#endif
370
c263eb03
VS
371 // Don't install the handler if it's already installed. This test *MUST*
372 // be done when gs_idleTagsMutex is locked!
373 if (!g_isIdle)
374 return;
375
e8617760
GD
376 // GD: this assert is raised when using the thread sample (which works)
377 // so the test is probably not so easy. Can widget callbacks be
378 // triggered from child threads and, if so, for which widgets?
379 // wxASSERT_MSG( wxThread::IsMain() || gs_WakeUpIdle, wxT("attempt to install idle handler from widget callback in child thread (should be exclusively from wxWakeUpIdle)") );
d5f3e1eb 380
3133cb9f 381 wxASSERT_MSG( wxTheApp->m_idleTag == 0, wxT("attempt to install idle handler twice") );
c2fa61e8 382
de6185e2 383 g_isIdle = false;
96997d65 384
3133cb9f 385 if (g_pendingTag == 0)
5d038ec5 386 g_pendingTag = g_idle_add_full( 900, wxapp_pending_callback, NULL, NULL );
e90c1d2a 387
3133cb9f
RR
388 // This routine gets called by all event handlers
389 // indicating that the idle is over. It may also
390 // get called from other thread for sending events
391 // to the main thread (and processing these in
392 // idle time). Very low priority.
5d038ec5 393 wxTheApp->m_idleTag = g_idle_add_full( 1000, wxapp_idle_callback, NULL, NULL );
b453e1b2
RR
394}
395
005f5d18
RR
396//-----------------------------------------------------------------------------
397// Access to the root window global
398//-----------------------------------------------------------------------------
399
400GtkWidget* wxGetRootWindow()
401{
402 if (gs_RootWindow == NULL)
403 {
404 gs_RootWindow = gtk_window_new( GTK_WINDOW_TOPLEVEL );
405 gtk_widget_realize( gs_RootWindow );
406 }
407 return gs_RootWindow;
408}
409
c801d85f
KB
410//-----------------------------------------------------------------------------
411// wxApp
412//-----------------------------------------------------------------------------
413
414IMPLEMENT_DYNAMIC_CLASS(wxApp,wxEvtHandler)
415
53010e52 416BEGIN_EVENT_TABLE(wxApp, wxEvtHandler)
955a9197 417 EVT_IDLE(wxAppBase::OnIdle)
53010e52
RR
418END_EVENT_TABLE()
419
c801d85f
KB
420wxApp::wxApp()
421{
a5f1fd3e 422#ifdef __WXDEBUG__
de6185e2 423 m_isInAssert = false;
a5f1fd3e
VZ
424#endif // __WXDEBUG__
425
df5ddbca 426 m_idleTag = 0;
e4db172a 427 g_isIdle = true;
df5ddbca 428 wxapp_install_idle_handler();
094637f6 429
6b3eb77a 430#if wxUSE_THREADS
15894949 431 g_main_context_set_poll_func( NULL, wxapp_poll_func );
6b3eb77a 432#endif
60acb947 433
f6fcbb63 434 m_colorCube = (unsigned char*) NULL;
be88a6ad 435
a6f5aa49
VZ
436 // this is NULL for a "regular" wxApp, but is set (and freed) by a wxGLApp
437 m_glVisualInfo = (void *) NULL;
34a34b02 438 m_glFBCInfo = (void *) NULL;
ff7b1510 439}
c801d85f 440
60acb947 441wxApp::~wxApp()
c801d85f 442{
5d038ec5
MR
443 if (m_idleTag)
444 g_source_remove( m_idleTag );
60acb947 445
5d038ec5
MR
446 if (m_colorCube)
447 free(m_colorCube);
ff7b1510 448}
c801d85f 449
0d2a2b60 450bool wxApp::OnInitGui()
c801d85f 451{
1e6feb95 452 if ( !wxAppBase::OnInitGui() )
de6185e2 453 return false;
1e6feb95 454
b134516c
RR
455 GdkVisual *visual = gdk_visual_get_system();
456
a6f5aa49
VZ
457 // if this is a wxGLApp (derived from wxApp), and we've already
458 // chosen a specific visual, then derive the GdkVisual from that
005f5d18
RR
459 if (m_glVisualInfo != NULL)
460 {
005f5d18 461 // seems gtk_widget_set_default_visual no longer exists?
a6f5aa49 462 GdkVisual* vis = gtk_widget_get_default_visual();
a6f5aa49
VZ
463
464 GdkColormap *colormap = gdk_colormap_new( vis, FALSE );
465 gtk_widget_set_default_colormap( colormap );
466
467 visual = vis;
468 }
be88a6ad 469
005f5d18
RR
470 // On some machines, the default visual is just 256 colours, so
471 // we make sure we get the best. This can sometimes be wasteful.
2286341c 472
005f5d18
RR
473 else
474 if ((gdk_visual_get_best() != gdk_visual_get_system()) && (m_useBestVisual))
b134516c 475 {
2d4dc3a4
OK
476 /* seems gtk_widget_set_default_visual no longer exists? */
477 GdkVisual* vis = gtk_widget_get_default_visual();
f6fcbb63 478
b134516c
RR
479 GdkColormap *colormap = gdk_colormap_new( vis, FALSE );
480 gtk_widget_set_default_colormap( colormap );
094637f6
VZ
481
482 visual = vis;
b134516c 483 }
d76fe38b 484
005f5d18 485 // Nothing to do for 15, 16, 24, 32 bit displays
88a7a4e1 486 if (visual->depth > 8) return true;
60acb947 487
005f5d18 488 // initialize color cube for 8-bit color reduction dithering
60acb947 489
f6fcbb63 490 GdkColormap *cmap = gtk_widget_get_default_colormap();
60acb947 491
f6fcbb63
RR
492 m_colorCube = (unsigned char*)malloc(32 * 32 * 32);
493
f03fc89f
VZ
494 for (int r = 0; r < 32; r++)
495 {
8801832d
VZ
496 for (int g = 0; g < 32; g++)
497 {
498 for (int b = 0; b < 32; b++)
499 {
500 int rr = (r << 3) | (r >> 2);
501 int gg = (g << 3) | (g >> 2);
502 int bb = (b << 3) | (b >> 2);
60acb947 503
f03fc89f
VZ
504 int index = -1;
505
f6fcbb63 506 GdkColor *colors = cmap->colors;
ca26177c 507 if (colors)
f03fc89f
VZ
508 {
509 int max = 3 * 65536;
510
511 for (int i = 0; i < cmap->size; i++)
512 {
513 int rdiff = ((rr << 8) - colors[i].red);
514 int gdiff = ((gg << 8) - colors[i].green);
515 int bdiff = ((bb << 8) - colors[i].blue);
516 int sum = ABS (rdiff) + ABS (gdiff) + ABS (bdiff);
517 if (sum < max)
094637f6 518 {
f03fc89f
VZ
519 index = i; max = sum;
520 }
521 }
f6fcbb63 522 }
094637f6
VZ
523 else
524 {
005f5d18 525 // assume 8-bit true or static colors. this really exists
094637f6
VZ
526 GdkVisual* vis = gdk_colormap_get_visual( cmap );
527 index = (r >> (5 - vis->red_prec)) << vis->red_shift;
528 index |= (g >> (5 - vis->green_prec)) << vis->green_shift;
529 index |= (b >> (5 - vis->blue_prec)) << vis->blue_shift;
094637f6 530 }
8801832d
VZ
531 m_colorCube[ (r*1024) + (g*32) + b ] = index;
532 }
533 }
f6fcbb63 534 }
c801d85f 535
88a7a4e1 536 return true;
bbe0af5b
RR
537}
538
005f5d18
RR
539GdkVisual *wxApp::GetGdkVisual()
540{
541 GdkVisual *visual = NULL;
be88a6ad 542
005f5d18 543 if (m_glVisualInfo)
7b775074 544 visual = gdkx_visual_get( ((XVisualInfo *) m_glVisualInfo)->visualid );
005f5d18 545 else
22a3bce4 546 visual = gdk_drawable_get_visual( wxGetRootWindow()->window );
be88a6ad 547
005f5d18 548 wxASSERT( visual );
be88a6ad 549
005f5d18
RR
550 return visual;
551}
552
abca8ebf 553bool wxApp::Initialize(int& argc, wxChar **argv)
c801d85f 554{
c156411a 555 bool init_result;
68567a96 556
924ef850 557#if wxUSE_THREADS
ac131bab
MR
558 if (!g_thread_supported())
559 g_thread_init(NULL);
05e2b077 560#endif // wxUSE_THREADS
2286341c 561
0d2a2b60 562 gtk_set_locale();
c801d85f 563
f9862abd
JS
564 // We should have the wxUSE_WCHAR_T test on the _outside_
565#if wxUSE_WCHAR_T
68567a96
MR
566 // gtk+ 2.0 supports Unicode through UTF-8 strings
567 wxConvCurrent = &wxConvUTF8;
05e2b077
VZ
568#else // !wxUSE_WCHAR_T
569 if (!wxOKlibc())
570 wxConvCurrent = (wxMBConv*) NULL;
571#endif // wxUSE_WCHAR_T/!wxUSE_WCHAR_T
002f4218 572
845905d5
MW
573 // decide which conversion to use for the file names
574
575 // (1) this variable exists for the sole purpose of specifying the encoding
576 // of the filenames for GTK+ programs, so use it if it is set
577 wxString encName(wxGetenv(_T("G_FILENAME_ENCODING")));
29c326b7 578 encName = encName.BeforeFirst(_T(','));
d24b23b7
MW
579 if (encName == _T("@locale"))
580 encName.clear();
845905d5 581 encName.MakeUpper();
68567a96 582#if wxUSE_INTL
845905d5
MW
583 if (encName.empty())
584 {
585 // (2) if a non default locale is set, assume that the user wants his
586 // filenames in this locale too
587 encName = wxLocale::GetSystemEncodingName().Upper();
588 // (3) finally use UTF-8 by default
589 if (encName.empty() || encName == _T("US-ASCII"))
590 encName = _T("UTF-8");
591 wxSetEnv(_T("G_FILENAME_ENCODING"), encName);
592 }
593#else
594 if (encName.empty())
595 encName = _T("UTF-8");
596#endif // wxUSE_INTL
597 static wxConvBrokenFileNames fileconv(encName);
598 wxConvFileName = &fileconv;
66bf0099 599
05e2b077
VZ
600#if wxUSE_UNICODE
601 // gtk_init() wants UTF-8, not wchar_t, so convert
602 int i;
0d8dda32 603 char **argvGTK = new char *[argc + 1];
05e2b077 604 for ( i = 0; i < argc; i++ )
924ef850 605 {
05e2b077 606 argvGTK[i] = wxStrdupA(wxConvUTF8.cWX2MB(argv[i]));
924ef850 607 }
0cf2cb36 608
05e2b077 609 argvGTK[argc] = NULL;
954de0f1 610
05e2b077 611 int argcGTK = argc;
68567a96 612
62be94e1 613#ifdef __WXGPE__
c156411a 614 init_result = true; // is there a _check() version of this?
62be94e1
RR
615 gpe_application_init( &argcGTK, &argvGTK );
616#else
c156411a 617 init_result = gtk_init_check( &argcGTK, &argvGTK );
62be94e1 618#endif
954de0f1 619
05e2b077 620 if ( argcGTK != argc )
924ef850 621 {
05e2b077
VZ
622 // we have to drop the parameters which were consumed by GTK+
623 for ( i = 0; i < argcGTK; i++ )
624 {
0d8dda32 625 while ( strcmp(wxConvUTF8.cWX2MB(argv[i]), argvGTK[i]) != 0 )
05e2b077
VZ
626 {
627 memmove(argv + i, argv + i + 1, argc - i);
628 }
629 }
0cf2cb36 630
05e2b077 631 argc = argcGTK;
2b5f62a0 632 }
05e2b077 633 //else: gtk_init() didn't modify our parameters
e0253070 634
05e2b077
VZ
635 // free our copy
636 for ( i = 0; i < argcGTK; i++ )
0151c3eb 637 {
05e2b077 638 free(argvGTK[i]);
0151c3eb 639 }
0cf2cb36 640
05e2b077
VZ
641 delete [] argvGTK;
642#else // !wxUSE_UNICODE
643 // gtk_init() shouldn't actually change argv itself (just its contents) so
644 // it's ok to pass pointer to it
c156411a 645 init_result = gtk_init_check( &argc, &argv );
05e2b077 646#endif // wxUSE_UNICODE/!wxUSE_UNICODE
0cf2cb36 647
c156411a
RD
648 if (!init_result) {
649 wxLogError(wxT("Unable to initialize gtk, is DISPLAY set properly?"));
650 return false;
651 }
68567a96 652
05e2b077
VZ
653 // we can not enter threads before gtk_init is done
654 gdk_threads_enter();
0cf2cb36 655
abca8ebf
VZ
656 if ( !wxAppBase::Initialize(argc, argv) )
657 {
658 gdk_threads_leave();
659
660 return false;
661 }
662
e4db172a 663 wxSetDetectableAutoRepeat( true );
be88a6ad 664
05e2b077
VZ
665#if wxUSE_INTL
666 wxFont::SetDefaultEncoding(wxLocale::GetSystemEncoding());
667#endif
be88a6ad 668
05e2b077
VZ
669 return true;
670}
0cf2cb36 671
05e2b077
VZ
672void wxApp::CleanUp()
673{
05e2b077 674 gdk_threads_leave();
abca8ebf
VZ
675
676 wxAppBase::CleanUp();
ff7b1510 677}
1a56f55c 678
a5f1fd3e
VZ
679#ifdef __WXDEBUG__
680
be88a6ad 681void wxApp::OnAssert(const wxChar *file, int line, const wxChar* cond, const wxChar *msg)
a5f1fd3e 682{
88a7a4e1 683 m_isInAssert = true;
a5f1fd3e 684
be88a6ad 685 wxAppBase::OnAssert(file, line, cond, msg);
a5f1fd3e 686
de6185e2 687 m_isInAssert = false;
a5f1fd3e
VZ
688}
689
690#endif // __WXDEBUG__
691
fe593cc5
VS
692void wxApp::RemoveIdleTag()
693{
694#if wxUSE_THREADS
695 wxMutexLocker lock(gs_idleTagsMutex);
696#endif
c263eb03
VS
697 if (!g_isIdle)
698 {
5d038ec5 699 g_source_remove( wxTheApp->m_idleTag );
c263eb03 700 wxTheApp->m_idleTag = 0;
e4db172a 701 g_isIdle = true;
c263eb03 702 }
fe593cc5 703}