1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: 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 // ----------------------------------------------------------------------------
20 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
21 #pragma implementation "evtloop.h"
25 #define XtParent XTPARENT
26 #define XtDisplay XTDISPLAY
29 // For compilers that support precompilation, includes "wx.h".
30 #include "wx/wxprec.h"
35 #include "wx/evtloop.h"
38 #include "wx/window.h"
41 #pragma message disable nosimpint
46 #pragma message enable nosimpint
49 #include "wx/motif/private.h"
51 static bool CheckForKeyUp(XEvent
* event
);
52 static bool CheckForKeyDown(XEvent
* event
);
53 static bool CheckForAccelerator(XEvent
* event
);
54 static void ProcessXEvent(XEvent
* event
);
55 static void wxBreakDispatch();
57 // ----------------------------------------------------------------------------
59 // ----------------------------------------------------------------------------
61 class WXDLLEXPORT wxEventLoopImpl
65 wxEventLoopImpl() { SetExitCode(0); }
67 // set/get the exit code
68 void SetExitCode(int exitcode
) { m_exitcode
= exitcode
; }
69 int GetExitCode() const { return m_exitcode
; }
71 bool SendIdleMessage();
72 bool GetKeepGoing() const { return m_keepGoing
; }
73 void SetKeepGoing(bool keepGoing
) { m_keepGoing
= keepGoing
; }
75 // the exit code of the event loop
80 // ----------------------------------------------------------------------------
81 // wxEventLoopImpl idle event processing
82 // ----------------------------------------------------------------------------
84 static bool SendIdleMessage()
86 return wxTheApp
->ProcessIdle();
89 bool wxEventLoopImpl::SendIdleMessage()
91 return ::SendIdleMessage();
94 // ============================================================================
95 // wxEventLoop implementation
96 // ============================================================================
98 // ----------------------------------------------------------------------------
99 // wxEventLoop running and exiting
100 // ----------------------------------------------------------------------------
102 wxEventLoop
*wxEventLoop::ms_activeLoop
= NULL
;
104 wxEventLoop::~wxEventLoop()
106 wxASSERT_MSG( !m_impl
, _T("should have been deleted in Run()") );
109 bool wxEventLoop::IsRunning() const
111 return m_impl
!= NULL
;
114 int wxEventLoop::Run()
116 // event loops are not recursive, you need to create another loop!
117 wxCHECK_MSG( !IsRunning(), -1, _T("can't reenter a message loop") );
119 wxEventLoop
*oldLoop
= ms_activeLoop
;
120 ms_activeLoop
= this;
122 m_impl
= new wxEventLoopImpl
;
123 m_impl
->SetKeepGoing( true );
127 if( !wxDoEventLoopIteration( *this ) )
131 int exitcode
= m_impl
->GetExitCode();
135 ms_activeLoop
= oldLoop
;
140 void wxEventLoop::Exit(int rc
)
142 wxCHECK_RET( IsRunning(), _T("can't call Exit() if not running") );
144 m_impl
->SetExitCode(rc
);
145 m_impl
->SetKeepGoing( false );
150 // ----------------------------------------------------------------------------
151 // wxEventLoop message processing dispatching
152 // ----------------------------------------------------------------------------
154 bool wxEventLoop::Pending() const
156 return XtAppPending( (XtAppContext
)wxTheApp
->GetAppContext() ) != 0;
159 bool wxEventLoop::Dispatch()
162 XtAppContext context
= (XtAppContext
)wxTheApp
->GetAppContext();
164 if( XtAppPeekEvent( context
, &event
) != 0 )
166 XtAppNextEvent( context
, &event
);
167 ProcessXEvent( &event
);
171 XtAppProcessEvent( context
, XtIMTimer
|XtIMAlternateInput
);
173 XtAppProcessEvent( context
, XtIMTimer
|XtIMAlternateInput
|XtIMSignal
);
176 return m_impl
? m_impl
->GetKeepGoing() : true;
179 // ----------------------------------------------------------------------------
180 // Static functions (originally in app.cpp)
181 // ----------------------------------------------------------------------------
183 void ProcessXEvent(XEvent
* event
)
185 if (event
->type
== KeyPress
)
187 if (CheckForAccelerator(event
))
189 // Do nothing! We intercepted and processed the event as an
193 // It seemed before that this hack was redundant and
194 // key down events were being generated by wxCanvasInputEvent.
195 // But no longer - why ???
197 else if (CheckForKeyDown(event
))
199 // We intercepted and processed the key down event
204 XtDispatchEvent(event
);
208 else if (event
->type
== KeyRelease
)
210 // TODO: work out why we still need this ! -michael
212 if (::CheckForKeyUp(event
))
214 // We intercepted and processed the key up event
219 XtDispatchEvent(event
);
223 else if (event
->type
== PropertyNotify
)
225 wxTheApp
->HandlePropertyChange(event
);
228 else if (event
->type
== ResizeRequest
)
230 /* Terry Gitnick <terryg@scientech.com> - 1/21/98
231 * If resize event, don't resize until the last resize event for this
232 * window is recieved. Prevents flicker as windows are resized.
235 Display
*disp
= event
->xany
.display
;
236 Window win
= event
->xany
.window
;
241 while( XCheckTypedWindowEvent (disp
, win
, ResizeRequest
, &report
));
243 // TODO: when implementing refresh optimization, we can use
244 // XtAddExposureToRegion to expand the window's paint region.
246 XtDispatchEvent(event
);
250 XtDispatchEvent(event
);
254 // Returns true if an accelerator has been processed
255 bool CheckForAccelerator(XEvent
* event
)
257 if (event
->xany
.type
== KeyPress
)
259 // Find a wxWindow for this window
260 // TODO: should get display for the window, not the current display
261 Widget widget
= XtWindowToWidget(event
->xany
.display
,
263 wxWindow
* win
= NULL
;
265 // Find the first wxWindow that corresponds to this event window
266 while (widget
&& !(win
= wxGetWindowFromTable(widget
)))
267 widget
= XtParent(widget
);
272 wxKeyEvent
keyEvent(wxEVT_CHAR
);
273 wxTranslateKeyEvent(keyEvent
, win
, (Widget
) 0, event
);
275 // Now we have a wxKeyEvent and we have a wxWindow.
276 // Go up the hierarchy until we find a matching accelerator,
277 // or we get to the top.
280 if (win
->ProcessAccelerator(keyEvent
))
282 win
= win
->GetParent();
289 // bool wxApp::CheckForKeyDown(WXEvent* event) { wxFAIL; return false; }
291 bool CheckForKeyDown(XEvent
* event
)
293 if (event
->xany
.type
== KeyPress
)
295 Widget widget
= XtWindowToWidget(event
->xany
.display
,
297 wxWindow
* win
= NULL
;
299 // Find the first wxWindow that corresponds to this event window
300 while (widget
&& !(win
= wxGetWindowFromTable(widget
)))
301 widget
= XtParent(widget
);
306 wxKeyEvent
keyEvent(wxEVT_KEY_DOWN
);
307 wxTranslateKeyEvent(keyEvent
, win
, (Widget
) 0, event
);
309 return win
->GetEventHandler()->ProcessEvent( keyEvent
);
315 // bool wxApp::CheckForKeyUp(WXEvent* event) { wxFAIL; return false; }
317 bool CheckForKeyUp(XEvent
* event
)
319 if (event
->xany
.type
== KeyRelease
)
321 Widget widget
= XtWindowToWidget(event
->xany
.display
,
323 wxWindow
* win
= NULL
;
325 // Find the first wxWindow that corresponds to this event window
326 while (widget
&& !(win
= wxGetWindowFromTable(widget
)))
327 widget
= XtParent(widget
);
332 wxKeyEvent
keyEvent(wxEVT_KEY_UP
);
333 wxTranslateKeyEvent(keyEvent
, win
, (Widget
) 0, event
);
335 return win
->GetEventHandler()->ProcessEvent( keyEvent
);
341 // ----------------------------------------------------------------------------
342 // executes one main loop iteration (declared in include/wx/motif/private.h)
343 // ----------------------------------------------------------------------------
345 bool wxDoEventLoopIteration( wxEventLoop
& evtLoop
)
347 bool moreRequested
, pendingEvents
;
351 pendingEvents
= evtLoop
.Pending();
352 if( pendingEvents
) break;
353 moreRequested
= ::SendIdleMessage();
354 if( !moreRequested
) break;
358 if( !pendingEvents
&& !moreRequested
)
360 // leave the main loop to give other threads a chance to
361 // perform their GUI work
368 if( !evtLoop
.Dispatch() )
374 // ----------------------------------------------------------------------------
375 // ::wxWakeUpIdle implementation
376 // ----------------------------------------------------------------------------
378 // As per Vadim's suggestion, we open a pipe, and XtAppAddInputSource it;
379 // writing a single byte to the pipe will cause wxEventLoop::Pending
380 // to return true, and wxEventLoop::Dispatch to dispatch an input handler
381 // that simply removes the byte(s), and to return, which will cause
382 // an idle event to be sent
384 // also wxEventLoop::Exit is implemented that way, so that exiting an
385 // event loop won't require an event being in the queue
387 #include "wx/module.h"
389 #include <sys/types.h>
390 #include <sys/time.h>
393 static XtInputId inputId
;
394 static int idleFds
[2] = { -1, -1 };
396 class wxIdlePipeModule
: public wxModule
399 wxIdlePipeModule() {};
401 virtual bool OnInit()
403 // Must be done before modules are initialized
405 if( pipe(idleFds
) != 0 )
411 virtual void OnExit()
417 DECLARE_DYNAMIC_CLASS(wxIdlePipeModule
);
420 IMPLEMENT_DYNAMIC_CLASS(wxIdlePipeModule
, wxModule
);
422 static void wxInputCallback( XtPointer
, int* fd
, XtInputId
* )
426 // wxWakeUpIdle may have been called more than once
430 struct timeval timeout
;
438 if( select( *fd
+ 1, &in
, NULL
, NULL
, &timeout
) <= 0 )
440 if( read( *fd
, buffer
, sizeof(buffer
) - 1 ) != sizeof(buffer
) - 1 )
445 static void wxBreakDispatch()
447 char dummy
= 0; // for valgrind
449 // check if wxWakeUpIdle has already been called
451 struct timeval timeout
;
457 FD_SET( idleFds
[0], &in
);
459 if( select( idleFds
[0] + 1, &in
, NULL
, NULL
, &timeout
) > 0 )
462 // write a single byte
463 write( idleFds
[1], &dummy
, 1 );
466 void wxApp::WakeUpIdle()
473 if( pipe(idleFds
) != 0 )
478 bool wxAddIdleCallback()
480 if (!wxInitIdleFds())
483 // install input handler for wxWakeUpIdle
484 inputId
= XtAppAddInput( (XtAppContext
) wxTheApp
->GetAppContext(),
486 (XtPointer
)XtInputReadMask
,