@ -54,6 +54,8 @@
# include <glib.h>
// #define DEBUG_QT_GLIBMAINLOOP 1
// TQt-GSource Structure and Callbacks
typedef struct {
@ -288,38 +290,38 @@ bool TQEventLoop::processX11Events()
XNextEvent ( TQPaintDevice : : x11AppDisplay ( ) , & event ) ;
if ( flags & ExcludeUserInput ) {
switch ( event . type ) {
case ButtonPress :
case ButtonRelease :
case MotionNotify :
case XKeyPress :
case XKeyRelease :
case EnterNotify :
case LeaveNotify :
continue ;
case ClientMessage :
{
// from qapplication_x11.cpp
extern Atom tqt_wm_protocols ;
extern Atom tqt_wm_take_focus ;
extern Atom qt_qt_scrolldone ;
// only keep the wm_take_focus and
// qt_qt_scrolldone protocols, discard all
// other client messages
if ( event . xclient . format ! = 32 )
switch ( event . type ) {
case ButtonPress :
case ButtonRelease :
case MotionNotify :
case XKeyPress :
case XKeyRelease :
case EnterNotify :
case LeaveNotify :
continue ;
if ( event . xclient . message_type = = tqt_wm_protocols | |
( Atom ) event . xclient . data . l [ 0 ] = = tqt_wm_take_focus )
break ;
if ( event . xclient . message_type = = qt_qt_scrolldone )
break ;
case ClientMessage :
{
// from qapplication_x11.cpp
extern Atom tqt_wm_protocols ;
extern Atom tqt_wm_take_focus ;
extern Atom qt_qt_scrolldone ;
// only keep the wm_take_focus and
// qt_qt_scrolldone protocols, discard all
// other client messages
if ( event . xclient . format ! = 32 )
continue ;
if ( event . xclient . message_type = = tqt_wm_protocols | |
( Atom ) event . xclient . data . l [ 0 ] = = tqt_wm_take_focus )
break ;
if ( event . xclient . message_type = = qt_qt_scrolldone )
break ;
}
default : break ;
}
default : break ;
}
}
nevents + + ;
@ -595,12 +597,16 @@ bool TQEventLoop::gsourceDispatch(GSource *gs) {
// color approx. optimization - only on X11
qt_reset_color_avail ( ) ;
# if defined(QT_THREAD_SUPPORT)
locker . mutex ( ) - > unlock ( ) ;
# endif
processX11Events ( ) ;
}
else {
# if defined(QT_THREAD_SUPPORT)
locker . mutex ( ) - > unlock ( ) ;
locker . mutex ( ) - > unlock ( ) ;
# endif
}
if ( d - > singletoolkit ) {
return TRUE ; // Eat the event