]>
git.saurik.com Git - wxWidgets.git/blob - src/gtk1/app.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/gtk1/app.cpp
4 // Author: Robert Roebling
6 // Copyright: (c) 1998 Robert Roebling, Julian Smart
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
10 // For compilers that support precompilation, includes "wx.h".
11 #include "wx/wxprec.h"
19 #include "wx/dialog.h"
20 #include "wx/settings.h"
21 #include "wx/msgdlg.h"
22 #include "wx/memory.h"
24 #include "wx/gdicmn.h"
26 #include "wx/module.h"
30 #include "wx/filename.h"
31 #include "wx/thread.h"
37 #ifdef __WXUNIVERSAL__
38 #include "wx/univ/theme.h"
39 #include "wx/univ/renderer.h"
43 #include "wx/thread.h"
52 // bug in the OpenBSD headers: at least in 3.1 there is no extern "C"
53 // in neither poll.h nor sys/poll.h which results in link errors later
66 // we implement poll() ourselves using select() which is supposed exist in
68 #include <sys/types.h>
71 #ifdef HAVE_SYS_SELECT_H
72 #include <sys/select.h>
74 #endif // HAVE_POLL/!HAVE_POLL
76 #include "wx/unix/private.h"
77 #include "wx/gtk1/win_gtk.h"
81 //-----------------------------------------------------------------------------
83 //-----------------------------------------------------------------------------
85 bool g_mainThreadLocked
= false ;
86 gint g_pendingTag
= 0 ;
88 static GtkWidget
* gs_RootWindow
= ( GtkWidget
*) NULL
;
90 //-----------------------------------------------------------------------------
92 //-----------------------------------------------------------------------------
96 void wxapp_install_idle_handler ();
99 static wxMutex gs_idleTagsMutex
;
102 //-----------------------------------------------------------------------------
104 //-----------------------------------------------------------------------------
106 // not static because used by textctrl.cpp
109 bool wxIsInsideYield
= false ;
111 bool wxApp :: Yield ( bool onlyIfNeeded
)
113 if ( wxIsInsideYield
)
117 wxFAIL_MSG ( wxT ( "wxYield called recursively" ) );
124 if ( ! wxThread :: IsMain () )
126 // can't call gtk_main_iteration() from other threads like this
129 #endif // wxUSE_THREADS
131 wxIsInsideYield
= true ;
133 // We need to remove idle callbacks or the loop will
135 wxTheApp
-> RemoveIdleTag ();
138 // disable log flushing from here because a call to wxYield() shouldn't
139 // normally result in message boxes popping up &c
143 while ( gtk_events_pending ())
144 gtk_main_iteration ();
146 // It's necessary to call ProcessIdle() to update the frames sizes which
147 // might have been changed (it also will update other things set from
148 // OnUpdateUI() which is a nice (and desired) side effect). But we
149 // call ProcessIdle() only once since this is not meant for longish
150 // background jobs (controlled by wxIdleEvent::RequestMore() and the
151 // return value of Processidle().
155 // let the logs be flashed again
159 wxIsInsideYield
= false ;
164 //-----------------------------------------------------------------------------
166 //-----------------------------------------------------------------------------
168 // RR/KH: The wxMutexGui calls are not needed on GTK2 according to
169 // the GTK faq, http://www.gtk.org/faq/#AEN500
170 // The calls to gdk_threads_enter() and leave() are specifically noted
171 // as not being necessary. The MutexGui calls are still left in for GTK1.
172 // Eliminating the MutexGui calls fixes the long-standing "random" lockup
173 // when using wxPostEvent (which calls WakeUpIdle) from a thread.
175 void wxApp :: WakeUpIdle ()
178 if (! wxThread :: IsMain ())
180 #endif // wxUSE_THREADS
182 wxapp_install_idle_handler ();
185 if (! wxThread :: IsMain ())
187 #endif // wxUSE_THREADS
190 //-----------------------------------------------------------------------------
192 //-----------------------------------------------------------------------------
194 // the callback functions must be extern "C" to comply with GTK+ declarations
198 static gint
wxapp_pending_callback ( gpointer
WXUNUSED ( data
) )
200 if (! wxTheApp
) return TRUE
;
202 // When getting called from GDK's time-out handler
203 // we are no longer within GDK's grab on the GUI
204 // thread so we must lock it here ourselves.
207 // Sent idle event to all who request them.
208 wxTheApp
-> ProcessPendingEvents ();
212 wxMutexLocker
lock ( gs_idleTagsMutex
);
217 // Flush the logged messages if any.
219 wxLog :: FlushActive ();
222 // Release lock again
225 // Return FALSE to indicate that no more idle events are
226 // to be sent (single shot instead of continuous stream)
230 static gint
wxapp_idle_callback ( gpointer
WXUNUSED ( data
) )
236 // don't generate the idle events while the assert modal dialog is shown,
237 // this completely confuses the apps which don't expect to be reentered
238 // from some safely-looking functions
239 if ( wxTheApp
-> IsInAssert () )
241 // But repaint the assertion message if necessary
242 if ( wxTopLevelWindows
. GetCount () > 0 )
244 wxWindow
* win
= ( wxWindow
*) wxTopLevelWindows
. GetLast ()-> GetData ();
245 if ( win
-> IsKindOf ( CLASSINFO ( wxGenericMessageDialog
)))
246 win
-> OnInternalIdle ();
250 #endif // __WXDEBUG__
252 // When getting called from GDK's time-out handler
253 // we are no longer within GDK's grab on the GUI
254 // thread so we must lock it here ourselves.
257 // Indicate that we are now in idle mode and event handlers
258 // will have to reinstall the idle handler again.
261 wxMutexLocker
lock ( gs_idleTagsMutex
);
264 wxTheApp
-> m_idleTag
= 0 ;
267 // Send idle event to all who request them as long as
268 // no events have popped up in the event queue.
269 while ( wxTheApp
-> ProcessIdle () && ( gtk_events_pending () == 0 ))
272 // Release lock again
275 // Return FALSE to indicate that no more idle events are
276 // to be sent (single shot instead of continuous stream).
284 #define wxPollFd pollfd
287 typedef GPollFD wxPollFd
;
289 int wxPoll ( wxPollFd
* ufds
, unsigned int nfds
, int timeout
)
291 // convert timeout from ms to struct timeval (s/us)
293 tv_timeout
. tv_sec
= timeout
/ 1000 ;
294 tv_timeout
. tv_usec
= ( timeout%1000
)* 1000 ;
296 // remember the highest fd used here
299 // and fill the sets for select()
304 wxFD_ZERO (& writefds
);
305 wxFD_ZERO (& exceptfds
);
308 for ( i
= 0 ; i
< nfds
; i
++ )
310 wxASSERT_MSG ( ufds
[ i
]. fd
< FD_SETSIZE
, _T ( "fd out of range" ) );
312 if ( ufds
[ i
]. events
& G_IO_IN
)
313 wxFD_SET ( ufds
[ i
]. fd
, & readfds
);
315 if ( ufds
[ i
]. events
& G_IO_PRI
)
316 wxFD_SET ( ufds
[ i
]. fd
, & exceptfds
);
318 if ( ufds
[ i
]. events
& G_IO_OUT
)
319 wxFD_SET ( ufds
[ i
]. fd
, & writefds
);
321 if ( ufds
[ i
]. fd
> fdMax
)
326 int res
= select ( fdMax
, & readfds
, & writefds
, & exceptfds
, & tv_timeout
);
328 // translate the results back
329 for ( i
= 0 ; i
< nfds
; i
++ )
333 if ( wxFD_ISSET ( ufds
[ i
]. fd
, & readfds
) )
334 ufds
[ i
]. revents
|= G_IO_IN
;
336 if ( wxFD_ISSET ( ufds
[ i
]. fd
, & exceptfds
) )
337 ufds
[ i
]. revents
|= G_IO_PRI
;
339 if ( wxFD_ISSET ( ufds
[ i
]. fd
, & writefds
) )
340 ufds
[ i
]. revents
|= G_IO_OUT
;
346 #endif // HAVE_POLL/!HAVE_POLL
348 static gint
wxapp_poll_func ( GPollFD
* ufds
, guint nfds
, gint timeout
)
353 g_mainThreadLocked
= true ;
355 // we rely on the fact that glib GPollFD struct is really just pollfd but
356 // I wonder how wise is this in the long term (VZ)
357 gint res
= wxPoll ( ( wxPollFd
*) ufds
, nfds
, timeout
);
360 g_mainThreadLocked
= false ;
367 #endif // wxUSE_THREADS
371 void wxapp_install_idle_handler ()
374 wxMutexLocker
lock ( gs_idleTagsMutex
);
377 // Don't install the handler if it's already installed. This test *MUST*
378 // be done when gs_idleTagsMutex is locked!
382 // GD: this assert is raised when using the thread sample (which works)
383 // so the test is probably not so easy. Can widget callbacks be
384 // triggered from child threads and, if so, for which widgets?
385 // wxASSERT_MSG( wxThread::IsMain() || gs_WakeUpIdle, wxT("attempt to install idle handler from widget callback in child thread (should be exclusively from wxWakeUpIdle)") );
387 wxASSERT_MSG ( wxTheApp
-> m_idleTag
== 0 , wxT ( "attempt to install idle handler twice" ) );
391 if ( g_pendingTag
== 0 )
392 g_pendingTag
= gtk_idle_add_priority ( 900 , wxapp_pending_callback
, ( gpointer
) NULL
);
394 // This routine gets called by all event handlers
395 // indicating that the idle is over. It may also
396 // get called from other thread for sending events
397 // to the main thread (and processing these in
398 // idle time). Very low priority.
399 wxTheApp
-> m_idleTag
= gtk_idle_add_priority ( 1000 , wxapp_idle_callback
, ( gpointer
) NULL
);
402 static bool wxOKlibc ()
404 #if defined(__UNIX__) && defined(__GLIBC__)
405 // glibc 2.0 uses UTF-8 even when it shouldn't
407 if (( MB_CUR_MAX
== 2 ) &&
408 ( wxMB2WC (& res
, " \xdd\xa5 " , 1 ) == 1 ) &&
411 // this is UTF-8 allright, check whether that's what we want
412 char * cur_locale
= setlocale ( LC_CTYPE
, NULL
);
413 if (( strlen ( cur_locale
) < 4 ) ||
414 ( strcasecmp ( cur_locale
+ strlen ( cur_locale
) - 4 , "utf8" )) ||
415 ( strcasecmp ( cur_locale
+ strlen ( cur_locale
) - 5 , "utf-8" ))) {
416 // nope, don't use libc conversion
424 //-----------------------------------------------------------------------------
425 // Access to the root window global
426 //-----------------------------------------------------------------------------
428 GtkWidget
* wxGetRootWindow ()
430 if ( gs_RootWindow
== NULL
)
432 gs_RootWindow
= gtk_window_new ( GTK_WINDOW_TOPLEVEL
);
433 gtk_widget_realize ( gs_RootWindow
);
435 return gs_RootWindow
;
438 //-----------------------------------------------------------------------------
440 //-----------------------------------------------------------------------------
442 IMPLEMENT_DYNAMIC_CLASS ( wxApp
, wxEvtHandler
)
447 m_isInAssert
= false ;
448 #endif // __WXDEBUG__
452 wxapp_install_idle_handler ();
455 g_main_set_poll_func ( wxapp_poll_func
);
458 m_colorCube
= ( unsigned char *) NULL
;
460 // this is NULL for a "regular" wxApp, but is set (and freed) by a wxGLApp
461 m_glVisualInfo
= ( void *) NULL
;
462 m_glFBCInfo
= ( void *) NULL
;
467 if ( m_idleTag
) gtk_idle_remove ( m_idleTag
);
469 if ( m_colorCube
) free ( m_colorCube
);
472 bool wxApp :: OnInitGui ()
474 if ( ! wxAppBase :: OnInitGui () )
477 GdkVisual
* visual
= gdk_visual_get_system ();
479 // if this is a wxGLApp (derived from wxApp), and we've already
480 // chosen a specific visual, then derive the GdkVisual from that
481 if ( m_glVisualInfo
!= NULL
)
483 GdkVisual
* vis
= gdkx_visual_get (
484 (( XVisualInfo
*) m_glVisualInfo
) -> visualid
);
485 gtk_widget_set_default_visual ( vis
);
487 GdkColormap
* colormap
= gdk_colormap_new ( vis
, FALSE
);
488 gtk_widget_set_default_colormap ( colormap
);
493 // On some machines, the default visual is just 256 colours, so
494 // we make sure we get the best. This can sometimes be wasteful.
497 if (( gdk_visual_get_best () != gdk_visual_get_system ()) && ( m_useBestVisual
))
499 GdkVisual
* vis
= gdk_visual_get_best ();
500 gtk_widget_set_default_visual ( vis
);
502 GdkColormap
* colormap
= gdk_colormap_new ( vis
, FALSE
);
503 gtk_widget_set_default_colormap ( colormap
);
508 // Nothing to do for 15, 16, 24, 32 bit displays
509 if ( visual
-> depth
> 8 ) return TRUE
;
511 // initialize color cube for 8-bit color reduction dithering
513 GdkColormap
* cmap
= gtk_widget_get_default_colormap ();
515 m_colorCube
= ( unsigned char *) malloc ( 32 * 32 * 32 );
517 for ( int r
= 0 ; r
< 32 ; r
++)
519 for ( int g
= 0 ; g
< 32 ; g
++)
521 for ( int b
= 0 ; b
< 32 ; b
++)
523 int rr
= ( r
<< 3 ) | ( r
>> 2 );
524 int gg
= ( g
<< 3 ) | ( g
>> 2 );
525 int bb
= ( b
<< 3 ) | ( b
>> 2 );
529 GdkColor
* colors
= cmap
-> colors
;
534 for ( int i
= 0 ; i
< cmap
-> size
; i
++)
536 int rdiff
= (( rr
<< 8 ) - colors
[ i
]. red
);
537 int gdiff
= (( gg
<< 8 ) - colors
[ i
]. green
);
538 int bdiff
= (( bb
<< 8 ) - colors
[ i
]. blue
);
539 int sum
= ABS ( rdiff
) + ABS ( gdiff
) + ABS ( bdiff
);
542 index
= i
; max
= sum
;
548 // assume 8-bit true or static colors. this really exists
549 GdkVisual
* vis
= gdk_colormap_get_visual ( cmap
);
550 index
= ( r
>> ( 5 - vis
-> red_prec
)) << vis
-> red_shift
;
551 index
|= ( g
>> ( 5 - vis
-> green_prec
)) << vis
-> green_shift
;
552 index
|= ( b
>> ( 5 - vis
-> blue_prec
)) << vis
-> blue_shift
;
554 m_colorCube
[ ( r
* 1024 ) + ( g
* 32 ) + b
] = index
;
562 GdkVisual
* wxApp :: GetGdkVisual ()
564 GdkVisual
* visual
= NULL
;
567 visual
= gdkx_visual_get ( (( XVisualInfo
*) m_glVisualInfo
)-> visualid
);
569 visual
= gdk_window_get_visual ( wxGetRootWindow ()-> window
);
576 bool wxApp :: Initialize ( int & argc
, wxChar
** argv
)
581 // GTK 1.2 up to version 1.2.3 has broken threads
582 if (( gtk_major_version
== 1 ) &&
583 ( gtk_minor_version
== 2 ) &&
584 ( gtk_micro_version
< 4 ))
586 printf ( "wxWidgets warning: GUI threading disabled due to outdated GTK version \n " );
590 if (! g_thread_supported ())
593 #endif // wxUSE_THREADS
597 // We should have the wxUSE_WCHAR_T test on the _outside_
599 wxConvCurrent
= & wxConvLocal
;
602 // gtk_init() wants UTF-8, not wchar_t, so convert
604 char ** argvGTK
= new char *[ argc
+ 1 ];
605 for ( i
= 0 ; i
< argc
; i
++ )
607 argvGTK
[ i
] = wxStrdupA ( wxConvUTF8
. cWX2MB ( argv
[ i
]));
610 argvGTK
[ argc
] = NULL
;
615 init_result
= true ; // is there a _check() version of this?
616 gpe_application_init ( & argcGTK
, & argvGTK
);
618 init_result
= gtk_init_check ( & argcGTK
, & argvGTK
);
621 if ( argcGTK
!= argc
)
623 // we have to drop the parameters which were consumed by GTK+
624 for ( i
= 0 ; i
< argcGTK
; i
++ )
626 while ( strcmp ( wxConvUTF8
. cWX2MB ( argv
[ i
]), argvGTK
[ i
]) != 0 )
628 memmove ( argv
+ i
, argv
+ i
+ 1 , argc
- i
);
634 //else: gtk_init() didn't modify our parameters
637 for ( i
= 0 ; i
< argcGTK
; i
++ )
643 #else // !wxUSE_UNICODE
644 // gtk_init() shouldn't actually change argv itself (just its contents) so
645 // it's ok to pass pointer to it
646 init_result
= gtk_init_check ( & argc
, & argv
);
647 #endif // wxUSE_UNICODE/!wxUSE_UNICODE
650 wxLogError ( wxT ( "Unable to initialize gtk, is DISPLAY set properly?" ));
654 // we can not enter threads before gtk_init is done
657 if ( ! wxAppBase :: Initialize ( argc
, argv
) )
664 wxSetDetectableAutoRepeat ( TRUE
);
667 wxFont :: SetDefaultEncoding ( wxLocale :: GetSystemEncoding ());
673 void wxApp :: CleanUp ()
677 wxAppBase :: CleanUp ();
682 void wxApp :: OnAssert ( const wxChar
* file
, int line
, const wxChar
* cond
, const wxChar
* msg
)
686 wxAppBase :: OnAssert ( file
, line
, cond
, msg
);
688 m_isInAssert
= false ;
691 #endif // __WXDEBUG__
693 void wxApp :: RemoveIdleTag ()
696 wxMutexLocker
lock ( gs_idleTagsMutex
);
700 gtk_idle_remove ( wxTheApp
-> m_idleTag
);
701 wxTheApp
-> m_idleTag
= 0 ;