1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: src/motif/evtloop.cpp
3 // Purpose: implements wxEventLoop for Motif
4 // Author: Mattia Barbon
8 // Copyright: (c) 2002 Mattia Barbon
9 // License: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
21 #define XtParent XTPARENT
22 #define XtDisplay XTDISPLAY
25 // For compilers that support precompilation, includes "wx.h".
26 #include "wx/wxprec.h"
31 #include "wx/evtloop.h"
34 #include "wx/window.h"
37 #pragma message disable nosimpint
42 #pragma message enable nosimpint
45 #include "wx/unix/private.h"
46 #include "wx/motif/private.h"
48 static bool CheckForKeyUp(XEvent
* event
);
49 static bool CheckForKeyDown(XEvent
* event
);
50 static bool CheckForAccelerator(XEvent
* event
);
51 static void ProcessXEvent(XEvent
* event
);
52 static void wxBreakDispatch();
54 // ----------------------------------------------------------------------------
56 // ----------------------------------------------------------------------------
58 class WXDLLEXPORT wxEventLoopImpl
62 wxEventLoopImpl() { SetExitCode(0); }
64 // set/get the exit code
65 void SetExitCode(int exitcode
) { m_exitcode
= exitcode
; }
66 int GetExitCode() const { return m_exitcode
; }
68 bool SendIdleMessage();
69 bool GetKeepGoing() const { return m_keepGoing
; }
70 void SetKeepGoing(bool keepGoing
) { m_keepGoing
= keepGoing
; }
72 // the exit code of the event loop
77 // ----------------------------------------------------------------------------
78 // wxEventLoopImpl idle event processing
79 // ----------------------------------------------------------------------------
81 static bool SendIdleMessage()
83 return wxTheApp
->ProcessIdle();
86 bool wxEventLoopImpl::SendIdleMessage()
88 return ::SendIdleMessage();
91 // ============================================================================
92 // wxEventLoop implementation
93 // ============================================================================
95 // ----------------------------------------------------------------------------
96 // wxEventLoop running and exiting
97 // ----------------------------------------------------------------------------
99 wxEventLoop
*wxEventLoopBase::ms_activeLoop
= NULL
;
101 wxEventLoop::~wxEventLoop()
103 wxASSERT_MSG( !m_impl
, _T("should have been deleted in Run()") );
106 int wxEventLoop::Run()
108 // event loops are not recursive, you need to create another loop!
109 wxCHECK_MSG( !IsRunning(), -1, _T("can't reenter a message loop") );
111 wxEventLoopActivator
activate(this);
113 m_impl
= new wxEventLoopImpl
;
114 m_impl
->SetKeepGoing( true );
118 if( !wxDoEventLoopIteration( *this ) )
122 int exitcode
= m_impl
->GetExitCode();
129 void wxEventLoop::Exit(int rc
)
131 wxCHECK_RET( IsRunning(), _T("can't call Exit() if not running") );
133 m_impl
->SetExitCode(rc
);
134 m_impl
->SetKeepGoing( false );
139 // ----------------------------------------------------------------------------
140 // wxEventLoop message processing dispatching
141 // ----------------------------------------------------------------------------
143 bool wxEventLoop::Pending() const
145 return XtAppPending( (XtAppContext
)wxTheApp
->GetAppContext() ) != 0;
148 bool wxEventLoop::Dispatch()
151 XtAppContext context
= (XtAppContext
)wxTheApp
->GetAppContext();
153 if( XtAppPeekEvent( context
, &event
) != 0 )
155 XtAppNextEvent( context
, &event
);
156 ProcessXEvent( &event
);
160 XtAppProcessEvent( context
, XtIMTimer
| XtIMAlternateInput
167 return m_impl
? m_impl
->GetKeepGoing() : true;
170 // ----------------------------------------------------------------------------
171 // Static functions (originally in app.cpp)
172 // ----------------------------------------------------------------------------
174 void ProcessXEvent(XEvent
* event
)
176 if (event
->type
== KeyPress
)
178 if (CheckForAccelerator(event
))
180 // Do nothing! We intercepted and processed the event as an
184 // It seemed before that this hack was redundant and
185 // key down events were being generated by wxCanvasInputEvent.
186 // But no longer - why ???
188 else if (CheckForKeyDown(event
))
190 // We intercepted and processed the key down event
195 XtDispatchEvent(event
);
199 else if (event
->type
== KeyRelease
)
201 // TODO: work out why we still need this ! -michael
203 if (::CheckForKeyUp(event
))
205 // We intercepted and processed the key up event
210 XtDispatchEvent(event
);
214 else if (event
->type
== PropertyNotify
)
216 wxTheApp
->HandlePropertyChange(event
);
219 else if (event
->type
== ResizeRequest
)
221 /* Terry Gitnick <terryg@scientech.com> - 1/21/98
222 * If resize event, don't resize until the last resize event for this
223 * window is recieved. Prevents flicker as windows are resized.
226 Display
*disp
= event
->xany
.display
;
227 Window win
= event
->xany
.window
;
232 while( XCheckTypedWindowEvent (disp
, win
, ResizeRequest
, &report
));
234 // TODO: when implementing refresh optimization, we can use
235 // XtAddExposureToRegion to expand the window's paint region.
237 XtDispatchEvent(event
);
241 XtDispatchEvent(event
);
245 // Returns true if an accelerator has been processed
246 bool CheckForAccelerator(XEvent
* event
)
248 if (event
->xany
.type
== KeyPress
)
250 // Find a wxWindow for this window
251 // TODO: should get display for the window, not the current display
252 Widget widget
= XtWindowToWidget(event
->xany
.display
,
254 wxWindow
* win
= NULL
;
256 // Find the first wxWindow that corresponds to this event window
257 while (widget
&& ((win
= wxGetWindowFromTable(widget
))!=NULL
))
258 widget
= XtParent(widget
);
263 wxKeyEvent
keyEvent(wxEVT_CHAR
);
264 wxTranslateKeyEvent(keyEvent
, win
, (Widget
) 0, event
);
266 // Now we have a wxKeyEvent and we have a wxWindow.
267 // Go up the hierarchy until we find a matching accelerator,
268 // or we get to the top.
271 if (win
->ProcessAccelerator(keyEvent
))
273 win
= win
->GetParent();
280 // bool wxApp::CheckForKeyDown(WXEvent* event) { wxFAIL; return false; }
282 bool CheckForKeyDown(XEvent
* event
)
284 if (event
->xany
.type
== KeyPress
)
286 Widget widget
= XtWindowToWidget(event
->xany
.display
,
288 wxWindow
* win
= NULL
;
290 // Find the first wxWindow that corresponds to this event window
291 while (widget
&& ((win
= wxGetWindowFromTable(widget
))!=NULL
))
292 widget
= XtParent(widget
);
297 wxKeyEvent
keyEvent(wxEVT_KEY_DOWN
);
298 wxTranslateKeyEvent(keyEvent
, win
, (Widget
) 0, event
);
300 return win
->GetEventHandler()->ProcessEvent( keyEvent
);
306 // bool wxApp::CheckForKeyUp(WXEvent* event) { wxFAIL; return false; }
308 bool CheckForKeyUp(XEvent
* event
)
310 if (event
->xany
.type
== KeyRelease
)
312 Widget widget
= XtWindowToWidget(event
->xany
.display
,
314 wxWindow
* win
= NULL
;
316 // Find the first wxWindow that corresponds to this event window
317 while (widget
&& ((win
= wxGetWindowFromTable(widget
))!=NULL
))
318 widget
= XtParent(widget
);
323 wxKeyEvent
keyEvent(wxEVT_KEY_UP
);
324 wxTranslateKeyEvent(keyEvent
, win
, (Widget
) 0, event
);
326 return win
->GetEventHandler()->ProcessEvent( keyEvent
);
332 // ----------------------------------------------------------------------------
333 // executes one main loop iteration (declared in include/wx/motif/private.h)
334 // ----------------------------------------------------------------------------
336 bool wxDoEventLoopIteration( wxEventLoop
& evtLoop
)
338 bool moreRequested
, pendingEvents
;
342 pendingEvents
= evtLoop
.Pending();
343 if( pendingEvents
) break;
344 moreRequested
= ::SendIdleMessage();
345 if( !moreRequested
) break;
349 if( !pendingEvents
&& !moreRequested
)
351 // leave the main loop to give other threads a chance to
352 // perform their GUI work
359 if( !evtLoop
.Dispatch() )
365 // ----------------------------------------------------------------------------
366 // ::wxWakeUpIdle implementation
367 // ----------------------------------------------------------------------------
369 // As per Vadim's suggestion, we open a pipe, and XtAppAddInputSource it;
370 // writing a single byte to the pipe will cause wxEventLoop::Pending
371 // to return true, and wxEventLoop::Dispatch to dispatch an input handler
372 // that simply removes the byte(s), and to return, which will cause
373 // an idle event to be sent
375 // also wxEventLoop::Exit is implemented that way, so that exiting an
376 // event loop won't require an event being in the queue
378 #include "wx/module.h"
380 #include <sys/types.h>
381 #include <sys/time.h>
384 static int idleFds
[2] = { -1, -1 };
386 class wxIdlePipeModule
: public wxModule
389 wxIdlePipeModule() {};
391 virtual bool OnInit()
393 // Must be done before modules are initialized
395 if( pipe(idleFds
) != 0 )
401 virtual void OnExit()
407 DECLARE_DYNAMIC_CLASS(wxIdlePipeModule
)
410 IMPLEMENT_DYNAMIC_CLASS(wxIdlePipeModule
, wxModule
)
412 static void wxInputCallback( XtPointer
, int* fd
, XtInputId
* )
416 // wxWakeUpIdle may have been called more than once
420 struct timeval timeout
;
426 wxFD_SET( *fd
, &in
);
428 if( select( *fd
+ 1, &in
, NULL
, NULL
, &timeout
) <= 0 )
430 if( read( *fd
, buffer
, sizeof(buffer
) - 1 ) != sizeof(buffer
) - 1 )
435 static void wxBreakDispatch()
437 char dummy
= 0; // for valgrind
439 // check if wxWakeUpIdle has already been called
441 struct timeval timeout
;
447 wxFD_SET( idleFds
[0], &in
);
449 if( select( idleFds
[0] + 1, &in
, NULL
, NULL
, &timeout
) > 0 )
452 // write a single byte
453 write( idleFds
[1], &dummy
, 1 );
456 void wxApp::WakeUpIdle()
463 if( pipe(idleFds
) != 0 )
468 bool wxAddIdleCallback()
470 if (!wxInitIdleFds())
473 // install input handler for wxWakeUpIdle
474 XtAppAddInput((XtAppContext
) wxTheApp
->GetAppContext(),
476 (XtPointer
)XtInputReadMask
,