]> git.saurik.com Git - wxWidgets.git/blame_incremental - src/gtk/app.cpp
moved some wxMimeTypeCommands methods into .cpp file from header, this generally...
[wxWidgets.git] / src / gtk / app.cpp
... / ...
CommitLineData
1/////////////////////////////////////////////////////////////////////////////
2// Name: src/gtk/app.cpp
3// Purpose:
4// Author: Robert Roebling
5// Id: $Id$
6// Copyright: (c) 1998 Robert Roebling, Julian Smart
7// Licence: wxWindows licence
8/////////////////////////////////////////////////////////////////////////////
9
10#ifdef __VMS
11// vms_jackets.h should for proper working be included before anything else
12# include <vms_jackets.h>
13#undef ConnectionNumber
14#endif
15
16// For compilers that support precompilation, includes "wx.h".
17#include "wx/wxprec.h"
18
19#include "wx/app.h"
20
21#ifndef WX_PRECOMP
22 #include "wx/intl.h"
23 #include "wx/log.h"
24 #include "wx/utils.h"
25 #include "wx/memory.h"
26 #include "wx/font.h"
27#endif
28
29#include "wx/file.h"
30#include "wx/filename.h"
31#include "wx/thread.h"
32
33#ifdef __WXGPE__
34 #include <gpe/init.h>
35#endif
36
37#ifdef __WXUNIVERSAL__
38 #include "wx/univ/theme.h"
39 #include "wx/univ/renderer.h"
40#endif
41
42#include <unistd.h>
43
44#ifdef HAVE_POLL
45 #if defined(__VMS)
46 #include <poll.h>
47 #else
48 // bug in the OpenBSD headers: at least in 3.1 there is no extern "C"
49 // in neither poll.h nor sys/poll.h which results in link errors later
50 #ifdef __OPENBSD__
51 extern "C"
52 {
53 #endif
54
55 #include <sys/poll.h>
56
57 #ifdef __OPENBSD__
58 };
59 #endif
60 #endif // platform
61#else // !HAVE_POLL
62 // we implement poll() ourselves using select() which is supposed exist in
63 // all modern Unices
64 #include <sys/types.h>
65 #include <sys/time.h>
66 #include <unistd.h>
67 #ifdef HAVE_SYS_SELECT_H
68 #include <sys/select.h>
69 #endif
70#endif // HAVE_POLL/!HAVE_POLL
71
72#include "wx/unix/private.h"
73#include "wx/gtk/win_gtk.h"
74#include "wx/gtk/private.h"
75
76#include <gdk/gdkx.h>
77
78//-----------------------------------------------------------------------------
79// link GnomeVFS
80//-----------------------------------------------------------------------------
81
82#if wxUSE_LIBGNOMEVFS
83#include "wx/html/forcelnk.h"
84FORCE_LINK(gnome_vfs)
85#endif
86
87//-----------------------------------------------------------------------------
88// global data
89//-----------------------------------------------------------------------------
90
91bool g_mainThreadLocked = false;
92
93static GtkWidget *gs_RootWindow = (GtkWidget*) NULL;
94
95//-----------------------------------------------------------------------------
96// idle system
97//-----------------------------------------------------------------------------
98
99void wxapp_install_idle_handler();
100
101#if wxUSE_THREADS
102static wxMutex gs_idleTagsMutex;
103#endif
104
105//-----------------------------------------------------------------------------
106// wxYield
107//-----------------------------------------------------------------------------
108
109// not static because used by textctrl.cpp
110//
111// MT-FIXME
112bool wxIsInsideYield = false;
113
114bool wxApp::Yield(bool onlyIfNeeded)
115{
116 if ( wxIsInsideYield )
117 {
118 if ( !onlyIfNeeded )
119 {
120 wxFAIL_MSG( wxT("wxYield called recursively" ) );
121 }
122
123 return false;
124 }
125
126#if wxUSE_THREADS
127 if ( !wxThread::IsMain() )
128 {
129 // can't call gtk_main_iteration() from other threads like this
130 return true;
131 }
132#endif // wxUSE_THREADS
133
134 wxIsInsideYield = true;
135
136 // We need to remove idle callbacks or the loop will
137 // never finish.
138 RemoveIdleSource();
139
140#if wxUSE_LOG
141 // disable log flushing from here because a call to wxYield() shouldn't
142 // normally result in message boxes popping up &c
143 wxLog::Suspend();
144#endif
145
146 while (gtk_events_pending())
147 gtk_main_iteration();
148
149 // It's necessary to call ProcessIdle() to update the frames sizes which
150 // might have been changed (it also will update other things set from
151 // OnUpdateUI() which is a nice (and desired) side effect). But we
152 // call ProcessIdle() only once since this is not meant for longish
153 // background jobs (controlled by wxIdleEvent::RequestMore() and the
154 // return value of Processidle().
155 ProcessIdle();
156
157#if wxUSE_LOG
158 // let the logs be flashed again
159 wxLog::Resume();
160#endif
161
162 wxIsInsideYield = false;
163
164 return true;
165}
166
167//-----------------------------------------------------------------------------
168// wxWakeUpIdle
169//-----------------------------------------------------------------------------
170
171// RR/KH: No wxMutexGui calls are needed here according to the GTK faq,
172// http://www.gtk.org/faq/#AEN500 - this caused problems for wxPostEvent.
173
174void wxApp::WakeUpIdle()
175{
176 wxapp_install_idle_handler();
177}
178
179//-----------------------------------------------------------------------------
180// local functions
181//-----------------------------------------------------------------------------
182
183// the callback functions must be extern "C" to comply with GTK+ declarations
184extern "C"
185{
186
187// One-shot emission hook for "event" signal, to install idle handler.
188// This will be called when the "event" signal is issued on any GtkWidget object.
189static gboolean
190event_emission_hook(GSignalInvocationHint*, guint, const GValue*, gpointer)
191{
192 wxapp_install_idle_handler();
193 // remove hook
194 return false;
195}
196
197// add emission hook for "event" signal, to re-install idle handler when needed
198static inline void wxAddEmissionHook()
199{
200 GType widgetType = GTK_TYPE_WIDGET;
201 // if GtkWidget type is loaded
202 if (g_type_class_peek(widgetType) != NULL)
203 {
204 guint sig_id = g_signal_lookup("event", widgetType);
205 g_signal_add_emission_hook(sig_id, 0, event_emission_hook, NULL, NULL);
206 }
207}
208
209static gint wxapp_idle_callback( gpointer WXUNUSED(data) )
210{
211 if (!wxTheApp)
212 return false;
213
214#ifdef __WXDEBUG__
215 // don't generate the idle events while the assert modal dialog is shown,
216 // this completely confuses the apps which don't expect to be reentered
217 // from some safely-looking functions
218 if ( wxTheApp->IsInAssert() )
219 return false;
220#endif // __WXDEBUG__
221
222 // When getting called from GDK's time-out handler
223 // we are no longer within GDK's grab on the GUI
224 // thread so we must lock it here ourselves.
225 gdk_threads_enter();
226
227 bool moreIdles;
228
229 // Send idle event to all who request them as long as
230 // no events have popped up in the event queue.
231 while ( (moreIdles = wxTheApp->ProcessIdle()) && gtk_events_pending() == 0)
232 ;
233
234 // Release lock again
235 gdk_threads_leave();
236
237 if (!moreIdles)
238 {
239#if wxUSE_THREADS
240 wxMutexLocker lock(gs_idleTagsMutex);
241#endif
242 // Indicate that we are now in idle mode and event handlers
243 // will have to reinstall the idle handler again.
244 g_isIdle = true;
245 wxTheApp->m_idleTag = 0;
246
247 wxAddEmissionHook();
248 }
249
250 // Return FALSE if no more idle events are to be sent
251 return moreIdles;
252}
253
254#if wxUSE_THREADS
255
256#ifdef HAVE_POLL
257 #define wxPoll poll
258 #define wxPollFd pollfd
259#else // !HAVE_POLL
260
261typedef GPollFD wxPollFd;
262
263int wxPoll(wxPollFd *ufds, unsigned int nfds, int timeout)
264{
265 // convert timeout from ms to struct timeval (s/us)
266 timeval tv_timeout;
267 tv_timeout.tv_sec = timeout/1000;
268 tv_timeout.tv_usec = (timeout%1000)*1000;
269
270 // remember the highest fd used here
271 int fdMax = -1;
272
273 // and fill the sets for select()
274 fd_set readfds;
275 fd_set writefds;
276 fd_set exceptfds;
277 wxFD_ZERO(&readfds);
278 wxFD_ZERO(&writefds);
279 wxFD_ZERO(&exceptfds);
280
281 unsigned int i;
282 for ( i = 0; i < nfds; i++ )
283 {
284 wxASSERT_MSG( ufds[i].fd < FD_SETSIZE, _T("fd out of range") );
285
286 if ( ufds[i].events & G_IO_IN )
287 wxFD_SET(ufds[i].fd, &readfds);
288
289 if ( ufds[i].events & G_IO_PRI )
290 wxFD_SET(ufds[i].fd, &exceptfds);
291
292 if ( ufds[i].events & G_IO_OUT )
293 wxFD_SET(ufds[i].fd, &writefds);
294
295 if ( ufds[i].fd > fdMax )
296 fdMax = ufds[i].fd;
297 }
298
299 fdMax++;
300 int res = select(fdMax, &readfds, &writefds, &exceptfds, &tv_timeout);
301
302 // translate the results back
303 for ( i = 0; i < nfds; i++ )
304 {
305 ufds[i].revents = 0;
306
307 if ( wxFD_ISSET(ufds[i].fd, &readfds ) )
308 ufds[i].revents |= G_IO_IN;
309
310 if ( wxFD_ISSET(ufds[i].fd, &exceptfds ) )
311 ufds[i].revents |= G_IO_PRI;
312
313 if ( wxFD_ISSET(ufds[i].fd, &writefds ) )
314 ufds[i].revents |= G_IO_OUT;
315 }
316
317 return res;
318}
319
320#endif // HAVE_POLL/!HAVE_POLL
321
322static gint wxapp_poll_func( GPollFD *ufds, guint nfds, gint timeout )
323{
324 gdk_threads_enter();
325
326 wxMutexGuiLeave();
327 g_mainThreadLocked = true;
328
329 // we rely on the fact that glib GPollFD struct is really just pollfd but
330 // I wonder how wise is this in the long term (VZ)
331 gint res = wxPoll( (wxPollFd *) ufds, nfds, timeout );
332
333 wxMutexGuiEnter();
334 g_mainThreadLocked = false;
335
336 gdk_threads_leave();
337
338 return res;
339}
340
341#endif // wxUSE_THREADS
342
343} // extern "C"
344
345void wxapp_install_idle_handler()
346{
347 if (wxTheApp == NULL)
348 return;
349
350#if wxUSE_THREADS
351 wxMutexLocker lock(gs_idleTagsMutex);
352#endif
353
354 // Don't install the handler if it's already installed. This test *MUST*
355 // be done when gs_idleTagsMutex is locked!
356 if (!g_isIdle)
357 return;
358
359 // GD: this assert is raised when using the thread sample (which works)
360 // so the test is probably not so easy. Can widget callbacks be
361 // triggered from child threads and, if so, for which widgets?
362 // wxASSERT_MSG( wxThread::IsMain() || gs_WakeUpIdle, wxT("attempt to install idle handler from widget callback in child thread (should be exclusively from wxWakeUpIdle)") );
363
364 wxASSERT_MSG( wxTheApp->m_idleTag == 0, wxT("attempt to install idle handler twice") );
365
366 g_isIdle = false;
367
368 // This routine gets called by all event handlers
369 // indicating that the idle is over. It may also
370 // get called from other thread for sending events
371 // to the main thread (and processing these in
372 // idle time). Very low priority.
373 wxTheApp->m_idleTag = g_idle_add_full(G_PRIORITY_LOW, wxapp_idle_callback, NULL, NULL);
374}
375
376//-----------------------------------------------------------------------------
377// Access to the root window global
378//-----------------------------------------------------------------------------
379
380GtkWidget* wxGetRootWindow()
381{
382 if (gs_RootWindow == NULL)
383 {
384 gs_RootWindow = gtk_window_new( GTK_WINDOW_TOPLEVEL );
385 gtk_widget_realize( gs_RootWindow );
386 }
387 return gs_RootWindow;
388}
389
390//-----------------------------------------------------------------------------
391// wxApp
392//-----------------------------------------------------------------------------
393
394IMPLEMENT_DYNAMIC_CLASS(wxApp,wxEvtHandler)
395
396BEGIN_EVENT_TABLE(wxApp, wxEvtHandler)
397 EVT_IDLE(wxAppBase::OnIdle)
398END_EVENT_TABLE()
399
400wxApp::wxApp()
401{
402#ifdef __WXDEBUG__
403 m_isInAssert = false;
404#endif // __WXDEBUG__
405
406 m_idleTag = 0;
407 g_isIdle = true;
408 wxapp_install_idle_handler();
409
410#if wxUSE_THREADS
411 g_main_context_set_poll_func( NULL, wxapp_poll_func );
412#endif
413
414 // this is NULL for a "regular" wxApp, but is set (and freed) by a wxGLApp
415 m_glVisualInfo = (void *) NULL;
416 m_glFBCInfo = (void *) NULL;
417}
418
419wxApp::~wxApp()
420{
421 if (m_idleTag)
422 g_source_remove( m_idleTag );
423}
424
425bool wxApp::OnInitGui()
426{
427 if ( !wxAppBase::OnInitGui() )
428 return false;
429
430 // if this is a wxGLApp (derived from wxApp), and we've already
431 // chosen a specific visual, then derive the GdkVisual from that
432 if (m_glVisualInfo != NULL)
433 {
434 GdkVisual* vis = gtk_widget_get_default_visual();
435
436 GdkColormap *colormap = gdk_colormap_new( vis, FALSE );
437 gtk_widget_set_default_colormap( colormap );
438 }
439 else
440 {
441 // On some machines, the default visual is just 256 colours, so
442 // we make sure we get the best. This can sometimes be wasteful.
443 if (m_useBestVisual)
444 {
445 if (m_forceTrueColour)
446 {
447 GdkVisual* visual = gdk_visual_get_best_with_both( 24, GDK_VISUAL_TRUE_COLOR );
448 if (!visual)
449 {
450 wxLogError(wxT("Unable to initialize TrueColor visual."));
451 return false;
452 }
453 GdkColormap *colormap = gdk_colormap_new( visual, FALSE );
454 gtk_widget_set_default_colormap( colormap );
455 }
456 else
457 {
458 if (gdk_visual_get_best() != gdk_visual_get_system())
459 {
460 GdkVisual* visual = gdk_visual_get_best();
461 GdkColormap *colormap = gdk_colormap_new( visual, FALSE );
462 gtk_widget_set_default_colormap( colormap );
463 }
464 }
465 }
466 }
467
468 return true;
469}
470
471GdkVisual *wxApp::GetGdkVisual()
472{
473 GdkVisual *visual = NULL;
474
475 if (m_glVisualInfo)
476 visual = gdkx_visual_get( ((XVisualInfo *) m_glVisualInfo)->visualid );
477 else
478 visual = gdk_drawable_get_visual( wxGetRootWindow()->window );
479
480 wxASSERT( visual );
481
482 return visual;
483}
484
485bool wxApp::Initialize(int& argc, wxChar **argv)
486{
487 bool init_result;
488
489#if wxUSE_THREADS
490 if (!g_thread_supported())
491 g_thread_init(NULL);
492#endif // wxUSE_THREADS
493
494 gtk_set_locale();
495
496 // We should have the wxUSE_WCHAR_T test on the _outside_
497#if wxUSE_WCHAR_T
498 // gtk+ 2.0 supports Unicode through UTF-8 strings
499 wxConvCurrent = &wxConvUTF8;
500#else // !wxUSE_WCHAR_T
501 if (!wxOKlibc())
502 wxConvCurrent = (wxMBConv*) NULL;
503#endif // wxUSE_WCHAR_T/!wxUSE_WCHAR_T
504
505 // decide which conversion to use for the file names
506
507 // (1) this variable exists for the sole purpose of specifying the encoding
508 // of the filenames for GTK+ programs, so use it if it is set
509 wxString encName(wxGetenv(_T("G_FILENAME_ENCODING")));
510 encName = encName.BeforeFirst(_T(','));
511 if (encName == _T("@locale"))
512 encName.clear();
513 encName.MakeUpper();
514#if wxUSE_INTL
515 if (encName.empty())
516 {
517 // (2) if a non default locale is set, assume that the user wants his
518 // filenames in this locale too
519 encName = wxLocale::GetSystemEncodingName().Upper();
520 // (3) finally use UTF-8 by default
521 if (encName.empty() || encName == _T("US-ASCII"))
522 encName = _T("UTF-8");
523 wxSetEnv(_T("G_FILENAME_ENCODING"), encName);
524 }
525#else
526 if (encName.empty())
527 encName = _T("UTF-8");
528#endif // wxUSE_INTL
529 static wxConvBrokenFileNames fileconv(encName);
530 wxConvFileName = &fileconv;
531
532#if wxUSE_UNICODE
533 // gtk_init() wants UTF-8, not wchar_t, so convert
534 int i;
535 char **argvGTK = new char *[argc + 1];
536 for ( i = 0; i < argc; i++ )
537 {
538 argvGTK[i] = wxStrdupA(wxConvUTF8.cWX2MB(argv[i]));
539 }
540
541 argvGTK[argc] = NULL;
542
543 int argcGTK = argc;
544
545#ifdef __WXGPE__
546 init_result = true; // is there a _check() version of this?
547 gpe_application_init( &argcGTK, &argvGTK );
548#else
549 init_result = gtk_init_check( &argcGTK, &argvGTK );
550#endif
551
552 if ( argcGTK != argc )
553 {
554 // we have to drop the parameters which were consumed by GTK+
555 for ( i = 0; i < argcGTK; i++ )
556 {
557 while ( strcmp(wxConvUTF8.cWX2MB(argv[i]), argvGTK[i]) != 0 )
558 {
559 memmove(argv + i, argv + i + 1, argc - i);
560 }
561 }
562
563 argc = argcGTK;
564 }
565 //else: gtk_init() didn't modify our parameters
566
567 // free our copy
568 for ( i = 0; i < argcGTK; i++ )
569 {
570 free(argvGTK[i]);
571 }
572
573 delete [] argvGTK;
574#else // !wxUSE_UNICODE
575 // gtk_init() shouldn't actually change argv itself (just its contents) so
576 // it's ok to pass pointer to it
577 init_result = gtk_init_check( &argc, &argv );
578#endif // wxUSE_UNICODE/!wxUSE_UNICODE
579
580 if (!init_result) {
581 wxLogError(wxT("Unable to initialize gtk, is DISPLAY set properly?"));
582 return false;
583 }
584
585 // we can not enter threads before gtk_init is done
586 gdk_threads_enter();
587
588 if ( !wxAppBase::Initialize(argc, argv) )
589 {
590 gdk_threads_leave();
591
592 return false;
593 }
594
595 wxSetDetectableAutoRepeat( true );
596
597#if wxUSE_INTL
598 wxFont::SetDefaultEncoding(wxLocale::GetSystemEncoding());
599#endif
600
601 return true;
602}
603
604void wxApp::CleanUp()
605{
606 gdk_threads_leave();
607
608 wxAppBase::CleanUp();
609}
610
611#ifdef __WXDEBUG__
612
613void wxApp::OnAssertFailure(const wxChar *file,
614 int line,
615 const wxChar* func,
616 const wxChar* cond,
617 const wxChar *msg)
618{
619 m_isInAssert = true;
620
621 wxAppBase::OnAssertFailure(file, line, func, cond, msg);
622
623 m_isInAssert = false;
624}
625
626#endif // __WXDEBUG__
627
628void wxApp::RemoveIdleSource()
629{
630#if wxUSE_THREADS
631 wxMutexLocker lock(gs_idleTagsMutex);
632#endif
633 if (m_idleTag != 0)
634 {
635 g_source_remove(m_idleTag);
636 m_idleTag = 0;
637 g_isIdle = true;
638 wxAddEmissionHook();
639 }
640}