second part of #10320: move wxApp event handling functions to wxEventLoopBase (in particular move Yield() functions); add backward compatible redirections to wxApp; update docs; remove global lists wxPendingEvents and wxPendingEventsLocker
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@58911 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -66,7 +66,6 @@ public:
|
||||
// Implementation
|
||||
virtual bool Initialize(int& argc, wxChar **argv);
|
||||
virtual void CleanUp();
|
||||
virtual bool DoYield(bool onlyIfNeeded, long eventsToProcess);
|
||||
|
||||
// the installed application event handler
|
||||
WXEVENTHANDLERREF MacGetEventHandler() { return m_macEventHandler ; }
|
||||
|
@@ -26,6 +26,7 @@ public:
|
||||
virtual int DispatchTimeout(unsigned long timeout);
|
||||
|
||||
virtual void WakeUp();
|
||||
virtual bool YieldFor(long eventsToProcess);
|
||||
|
||||
private:
|
||||
// dispatch an event and release it
|
||||
|
@@ -22,6 +22,7 @@ public:
|
||||
virtual int DispatchTimeout(unsigned long timeout);
|
||||
|
||||
virtual void WakeUp();
|
||||
virtual bool YieldFor(long eventsToProcess);
|
||||
|
||||
private:
|
||||
double m_sleepTime;
|
||||
|
Reference in New Issue
Block a user