]> git.saurik.com Git - wxWidgets.git/blame_incremental - include/wx/osx/cocoa/evtloop.h
Allow returning NULL windows from GetCompositeWindowParts().
[wxWidgets.git] / include / wx / osx / cocoa / evtloop.h
... / ...
CommitLineData
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
14class WXDLLIMPEXP_BASE wxGUIEventLoop : public wxCFEventLoop
15{
16public:
17 wxGUIEventLoop();
18 ~wxGUIEventLoop();
19
20 void BeginModalSession( wxWindow* modalWindow );
21
22 void EndModalSession();
23
24 virtual void WakeUp();
25
26protected:
27 virtual int DoDispatchTimeout(unsigned long timeout);
28
29 virtual void DoRun();
30
31 virtual void DoStop();
32
33 virtual CFRunLoopRef CFGetCurrentRunLoop() const;
34
35 void* m_modalSession;
36
37 wxWindow* m_modalWindow;
38
39 WXWindow m_dummyWindow;
40
41 int m_modalNestedLevel;
42};
43
44#endif // _WX_OSX_COCOA_EVTLOOP_H_
45