1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: SWIG interface for wxEventLoop
7 // Created: 18-Sept-2004
9 // Copyright: (c) 2004 by Total Control Software
10 // Licence: wxWindows license
11 /////////////////////////////////////////////////////////////////////////////
16 //---------------------------------------------------------------------------
17 // TODO: wxPyEventLoop that virtualizes all the methods...
19 //---------------------------------------------------------------------------
23 #include <wx/evtloop.h>
30 virtual ~wxEventLoop();
32 // start the event loop, return the exit code when it is finished
35 // exit from the loop with the given exit code
36 virtual void Exit(int rc = 0);
38 // return true if any events are available
39 virtual bool Pending() const;
41 // dispatch a single event, return false if we should exit from the loop
42 virtual bool Dispatch();
44 // is the event loop running now?
45 virtual bool IsRunning() const;
47 // return currently active (running) event loop, may be NULL
48 static wxEventLoop *GetActive();
50 // set currently active (running) event loop
51 static void SetActive(wxEventLoop* loop);
55 //---------------------------------------------------------------------------