1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: src/gtk/evtloop.cpp
3 // Purpose: implements wxEventLoop for GTK+
4 // Author: Vadim Zeitlin
8 // Copyright: (c) 2001 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
9 // License: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
20 // For compilers that support precompilation, includes "wx.h".
21 #include "wx/wxprec.h"
27 #include "wx/evtloop.h"
37 // ============================================================================
38 // wxEventLoop implementation
39 // ============================================================================
41 extern GtkWidget
*wxGetRootWindow();
43 // ----------------------------------------------------------------------------
44 // wxEventLoop running and exiting
45 // ----------------------------------------------------------------------------
47 wxGUIEventLoop::wxGUIEventLoop()
52 int wxGUIEventLoop::Run()
54 // event loops are not recursive, you need to create another loop!
55 wxCHECK_MSG( !IsRunning(), -1, "can't reenter a message loop" );
57 wxEventLoopActivator
activate(this);
66 void wxGUIEventLoop::Exit(int rc
)
68 wxCHECK_RET( IsRunning(), "can't call Exit() if not running" );
75 void wxGUIEventLoop::WakeUp()
77 // TODO: idle events handling should really be done by wxEventLoop itself
78 // but for now it's completely in gtk/app.cpp so just call there when
79 // we have wxTheApp and hope that it doesn't matter that we do
80 // nothing when we don't...
82 wxTheApp
->WakeUpIdle();
85 // ----------------------------------------------------------------------------
86 // wxEventLoop adding & removing sources
87 // ----------------------------------------------------------------------------
91 static gboolean
wx_on_channel_event(GIOChannel
*channel
,
92 GIOCondition condition
, gpointer data
)
94 wxLogTrace(wxTRACE_EVT_SOURCE
, "wx_on_channel_event, gtk_source_id=%d",
95 g_io_channel_unix_get_fd(channel
));
97 wxEventLoopSourceHandler
* handler
=
98 static_cast<wxEventLoopSourceHandler
*>(data
);
100 if (condition
& G_IO_IN
|| condition
& G_IO_PRI
)
102 handler
->OnReadWaiting();
104 else if (condition
& G_IO_OUT
)
106 handler
->OnWriteWaiting();
108 else if (condition
& G_IO_ERR
|| condition
& G_IO_NVAL
)
110 handler
->OnExceptionWaiting();
114 wxFAIL_MSG(wxString::Format("Inavlid condition=%d", condition
));
117 // we never want to remove source here, so always return true
122 bool wxGUIEventLoop::DoAddSource(wxAbstractEventLoopSource
* src
)
124 Source
* source
= dynamic_cast<Source
*>(src
);
125 wxCHECK_MSG( source
, false, "Invalid source type" );
127 wxLogTrace(wxTRACE_EVT_SOURCE
,
128 "wxGUIEventLoop::DoAddSource() source=%d",
129 source
->GetResource());
131 int flags
= source
->GetFlags();
133 if (flags
& wxEVENT_SOURCE_INPUT
)
134 condition
|= G_IO_IN
| G_IO_PRI
;
135 if (flags
& wxEVENT_SOURCE_OUTPUT
)
136 condition
|= G_IO_OUT
;
137 if (flags
& wxEVENT_SOURCE_EXCEPTION
)
138 condition
|= G_IO_ERR
| G_IO_HUP
| G_IO_NVAL
;
140 GIOChannel
* channel
= g_io_channel_unix_new(source
->GetResource());
141 int gtk_id
= g_io_add_watch(channel
, (GIOCondition
)condition
,
142 &wx_on_channel_event
, source
->GetHandler());
143 g_io_channel_unref(channel
);
145 wxEventLoopSourceIdMap::value_type
val(source
, gtk_id
);
146 return m_sourceIdMap
.insert(val
).second
;
149 bool wxGUIEventLoop::DoRemoveSource(wxAbstractEventLoopSource
* src
)
151 Source
* source
= dynamic_cast<Source
*>(src
);
152 wxCHECK_MSG( source
, false, "Invalid source type" );
154 wxLogTrace(wxTRACE_EVT_SOURCE
,
155 "wxGUIEventLoop::DoRemoveSource() source=%d",
156 source
->GetResource());
158 wxEventLoopSourceIdMap::iterator it
= m_sourceIdMap
.find(source
);
159 wxCHECK_MSG( it
!= m_sourceIdMap
.end(), false, "Source not on the list" );
161 int gtk_id
= it
->second
;
162 m_sourceIdMap
.erase(it
);
163 return g_source_remove(gtk_id
);
166 // ----------------------------------------------------------------------------
167 // wxEventLoop message processing dispatching
168 // ----------------------------------------------------------------------------
170 bool wxGUIEventLoop::Pending() const
174 // this avoids false positives from our idle source
175 return wxTheApp
->EventsPending();
178 return gtk_events_pending() != 0;
181 bool wxGUIEventLoop::Dispatch()
183 wxCHECK_MSG( IsRunning(), false, wxT("can't call Dispatch() if not running") );
185 // gtk_main_iteration() returns TRUE only if gtk_main_quit() was called
186 return !gtk_main_iteration();
190 static gboolean
wx_event_loop_timeout(void* data
)
192 bool* expired
= static_cast<bool*>(data
);
195 // return FALSE to remove this timeout
200 int wxGUIEventLoop::DispatchTimeout(unsigned long timeout
)
202 bool expired
= false;
203 const unsigned id
= g_timeout_add(timeout
, wx_event_loop_timeout
, &expired
);
204 bool quit
= gtk_main_iteration() != 0;
214 //-----------------------------------------------------------------------------
216 //-----------------------------------------------------------------------------
219 static void wxgtk_main_do_event(GdkEvent
* event
, void* data
)
221 // categorize the GDK event according to wxEventCategory.
222 // See http://library.gnome.org/devel/gdk/unstable/gdk-Events.html#GdkEventType
225 // NOTE: GDK_* constants which were not present in the GDK2.0 can be tested for
226 // only at compile-time; when running the program (compiled with a recent GDK)
227 // on a system with an older GDK lib we can be sure there won't be problems
228 // because event->type will never assume those values corresponding to
229 // new event types (since new event types are always added in GDK with non
230 // conflicting values for ABI compatibility).
232 wxEventCategory cat
= wxEVT_CATEGORY_UNKNOWN
;
235 case GDK_SELECTION_REQUEST
:
236 case GDK_SELECTION_NOTIFY
:
237 case GDK_SELECTION_CLEAR
:
238 #if GTK_CHECK_VERSION(2,6,0)
239 case GDK_OWNER_CHANGE
:
241 cat
= wxEVT_CATEGORY_CLIPBOARD
;
245 case GDK_KEY_RELEASE
:
246 case GDK_BUTTON_PRESS
:
247 case GDK_2BUTTON_PRESS
:
248 case GDK_3BUTTON_PRESS
:
249 case GDK_BUTTON_RELEASE
:
250 case GDK_SCROLL
: // generated from mouse buttons
251 case GDK_CLIENT_EVENT
:
252 cat
= wxEVT_CATEGORY_USER_INPUT
;
255 case GDK_PROXIMITY_IN
:
256 case GDK_PROXIMITY_OUT
:
258 case GDK_MOTION_NOTIFY
:
259 case GDK_ENTER_NOTIFY
:
260 case GDK_LEAVE_NOTIFY
:
261 case GDK_VISIBILITY_NOTIFY
:
262 case GDK_PROPERTY_NOTIFY
:
264 case GDK_FOCUS_CHANGE
:
266 case GDK_WINDOW_STATE
:
278 case GDK_DRAG_MOTION
:
279 case GDK_DRAG_STATUS
:
281 case GDK_DROP_FINISHED
:
282 #if GTK_CHECK_VERSION(2,8,0)
283 case GDK_GRAB_BROKEN
:
285 #if GTK_CHECK_VERSION(2,14,0)
288 cat
= wxEVT_CATEGORY_UI
;
292 cat
= wxEVT_CATEGORY_UNKNOWN
;
296 wxGUIEventLoop
* evtloop
= static_cast<wxGUIEventLoop
*>(data
);
298 // is this event allowed now?
299 if (evtloop
->IsEventAllowedInsideYield(cat
))
300 gtk_main_do_event(event
); // process it now
301 else if (event
->type
!= GDK_NOTHING
)
302 evtloop
->StoreGdkEventForLaterProcessing(gdk_event_copy(event
));
303 // process it later (but make a copy; the caller will free the event pointer)
307 bool wxGUIEventLoop::YieldFor(long eventsToProcess
)
310 if ( !wxThread::IsMain() )
312 // can't call gtk_main_iteration() from other threads like this
315 #endif // wxUSE_THREADS
317 m_isInsideYield
= true;
318 m_eventsToProcessInsideYield
= eventsToProcess
;
321 // disable log flushing from here because a call to wxYield() shouldn't
322 // normally result in message boxes popping up &c
326 // temporarily replace the global GDK event handler with our function, which
327 // categorizes the events and using m_eventsToProcessInsideYield decides
328 // if an event should be processed immediately or not
329 // NOTE: this approach is better than using gdk_display_get_event() because
330 // gtk_main_iteration() does more than just calling gdk_display_get_event()
331 // and then call gtk_main_do_event()!
332 // In particular in this way we also process input from sources like
333 // GIOChannels (this is needed for e.g. wxGUIAppTraits::WaitForChild).
334 gdk_event_handler_set(wxgtk_main_do_event
, this, NULL
);
335 while (Pending()) // avoid false positives from our idle source
336 gtk_main_iteration();
337 gdk_event_handler_set ((GdkEventFunc
)gtk_main_do_event
, NULL
, NULL
);
339 if (eventsToProcess
!= wxEVT_CATEGORY_CLIPBOARD
)
341 // It's necessary to call ProcessIdle() to update the frames sizes which
342 // might have been changed (it also will update other things set from
343 // OnUpdateUI() which is a nice (and desired) side effect). But we
344 // call ProcessIdle() only once since this is not meant for longish
345 // background jobs (controlled by wxIdleEvent::RequestMore() and the
346 // return value of Processidle().
347 ProcessIdle(); // ProcessIdle() also calls ProcessPendingEvents()
349 //else: if we are inside ~wxClipboardSync() and we call ProcessIdle() and
350 // the user app contains an UI update handler which calls wxClipboard::IsSupported,
351 // then we fall into a never-ending loop...
353 // put all unprocessed GDK events back in the queue
354 GdkDisplay
* disp
= gtk_widget_get_display(wxGetRootWindow());
355 for (size_t i
=0; i
<m_arrGdkEvents
.GetCount(); i
++)
357 GdkEvent
* ev
= (GdkEvent
*)m_arrGdkEvents
[i
];
359 // NOTE: gdk_display_put_event makes a copy of the event passed to it
360 gdk_display_put_event(disp
, ev
);
364 m_arrGdkEvents
.Clear();
367 // let the logs be flashed again
371 m_isInsideYield
= false;