]> git.saurik.com Git - wxWidgets.git/blob - include/wx/cocoa/evtloop.h
Add more checks for Intel compiler.
[wxWidgets.git] / include / wx / cocoa / evtloop.h
1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: wx/cocoa/evtloop.h
3 // Purpose: declaration of wxGUIEventLoop for wxCocoa
4 // Author: Vadim Zeitlin
5 // Created: 2008-12-28
6 // Copyright: (c) 2008 Vadim Zeitlin <vadim@wxwidgets.org>
7 // Licence: wxWindows licence
8 ///////////////////////////////////////////////////////////////////////////////
9
10 #ifndef _WX_COCOA_EVTLOOP_H_
11 #define _WX_COCOA_EVTLOOP_H_
12
13 // ----------------------------------------------------------------------------
14 // wxGUIEventLoop for wxCocoa
15 // ----------------------------------------------------------------------------
16
17 class WXDLLIMPEXP_CORE wxGUIEventLoop : public wxEventLoopBase
18 {
19 public:
20 wxGUIEventLoop() { m_exitcode = 0; }
21
22 virtual void ScheduleExit(int rc = 0);
23 virtual bool Pending() const;
24 virtual bool Dispatch();
25 virtual int DispatchTimeout(unsigned long timeout);
26 virtual void WakeUp() { }
27 virtual bool YieldFor(long eventsToProcess);
28
29 protected:
30 virtual int DoRun();
31
32 int m_exitcode;
33
34 wxDECLARE_NO_COPY_CLASS(wxGUIEventLoop);
35 };
36
37 #endif // _WX_COCOA_EVTLOOP_H_
38