]>
Commit | Line | Data |
---|---|---|
91407318 VZ |
1 | /////////////////////////////////////////////////////////////////////////////// |
2 | // Name: wx/osx/cocoa/evtloop.h | |
3 | // Purpose: declaration of wxGUIEventLoop for wxOSX/Cocoa | |
4 | // Author: Vadim Zeitlin | |
5 | // Created: 2008-12-28 | |
6 | // RCS-ID: $Id$ | |
7 | // Copyright: (c) 2006 Vadim Zeitlin <vadim@wxwindows.org> | |
8 | // Licence: wxWindows licence | |
9 | /////////////////////////////////////////////////////////////////////////////// | |
10 | ||
11 | #ifndef _WX_OSX_COCOA_EVTLOOP_H_ | |
12 | #define _WX_OSX_COCOA_EVTLOOP_H_ | |
13 | ||
5cd99866 | 14 | class WXDLLIMPEXP_BASE wxGUIEventLoop : public wxCFEventLoop |
91407318 VZ |
15 | { |
16 | public: | |
17 | wxGUIEventLoop(); | |
902ddbfd SC |
18 | ~wxGUIEventLoop(); |
19 | ||
20 | void BeginModalSession( wxWindow* modalWindow ); | |
21 | ||
22 | void EndModalSession(); | |
ce00f59b | 23 | |
85a74f93 SC |
24 | virtual void WakeUp(); |
25 | ||
4b0a48db SC |
26 | void OSXUseLowLevelWakeup(bool useIt) |
27 | { m_osxLowLevelWakeUp = useIt ; } | |
28 | ||
6b8ef0b3 | 29 | protected: |
0056673c | 30 | virtual int DoDispatchTimeout(unsigned long timeout); |
ce00f59b | 31 | |
80eee837 SC |
32 | virtual void DoRun(); |
33 | ||
34 | virtual void DoStop(); | |
ce00f59b | 35 | |
7934e447 | 36 | virtual CFRunLoopRef CFGetCurrentRunLoop() const; |
902ddbfd SC |
37 | |
38 | void* m_modalSession; | |
0aff141c SC |
39 | |
40 | wxWindow* m_modalWindow; | |
41 | ||
902ddbfd | 42 | WXWindow m_dummyWindow; |
0aff141c SC |
43 | |
44 | int m_modalNestedLevel; | |
4b0a48db SC |
45 | |
46 | bool m_osxLowLevelWakeUp; | |
91407318 VZ |
47 | }; |
48 | ||
49 | #endif // _WX_OSX_COCOA_EVTLOOP_H_ | |
50 |