mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2025-02-19 01:51:31 +00:00
49 lines
1.2 KiB
C
49 lines
1.2 KiB
C
|
///////////////////////////////////////////////////////////////////////////////
|
||
|
// Name: wx/osx/cocoa/evtloop.h
|
||
|
// Purpose: declaration of wxGUIEventLoop for wxOSX/Cocoa
|
||
|
// Author: Vadim Zeitlin
|
||
|
// Created: 2008-12-28
|
||
|
// Copyright: (c) 2006 Vadim Zeitlin <vadim@wxwidgets.org>
|
||
|
// Licence: wxWindows licence
|
||
|
///////////////////////////////////////////////////////////////////////////////
|
||
|
|
||
|
#ifndef _WX_OSX_COCOA_EVTLOOP_H_
|
||
|
#define _WX_OSX_COCOA_EVTLOOP_H_
|
||
|
|
||
|
class WXDLLIMPEXP_BASE wxGUIEventLoop : public wxCFEventLoop
|
||
|
{
|
||
|
public:
|
||
|
wxGUIEventLoop();
|
||
|
~wxGUIEventLoop();
|
||
|
|
||
|
void BeginModalSession( wxWindow* modalWindow );
|
||
|
|
||
|
void EndModalSession();
|
||
|
|
||
|
virtual void WakeUp() wxOVERRIDE;
|
||
|
|
||
|
void OSXUseLowLevelWakeup(bool useIt)
|
||
|
{ m_osxLowLevelWakeUp = useIt ; }
|
||
|
|
||
|
protected:
|
||
|
virtual int DoDispatchTimeout(unsigned long timeout) wxOVERRIDE;
|
||
|
|
||
|
virtual void OSXDoRun() wxOVERRIDE;
|
||
|
virtual void OSXDoStop() wxOVERRIDE;
|
||
|
|
||
|
virtual CFRunLoopRef CFGetCurrentRunLoop() const wxOVERRIDE;
|
||
|
|
||
|
void* m_modalSession;
|
||
|
|
||
|
wxWindow* m_modalWindow;
|
||
|
|
||
|
WXWindow m_dummyWindow;
|
||
|
|
||
|
int m_modalNestedLevel;
|
||
|
|
||
|
bool m_osxLowLevelWakeUp;
|
||
|
};
|
||
|
|
||
|
#endif // _WX_OSX_COCOA_EVTLOOP_H_
|
||
|
|