]>
Commit | Line | Data |
---|---|---|
1 | ///////////////////////////////////////////////////////////////////////////// | |
2 | // Name: _timer.i | |
3 | // Purpose: SWIG interface definitions wxTimer | |
4 | // | |
5 | // Author: Robin Dunn | |
6 | // | |
7 | // Created: 18-June-1999 | |
8 | // RCS-ID: $Id$ | |
9 | // Copyright: (c) 2003 by Total Control Software | |
10 | // Licence: wxWindows license | |
11 | ///////////////////////////////////////////////////////////////////////////// | |
12 | ||
13 | // Not a %module | |
14 | ||
15 | ||
16 | //--------------------------------------------------------------------------- | |
17 | %newgroup | |
18 | ||
19 | enum { | |
20 | // generate notifications periodically until the timer is stopped (default) | |
21 | wxTIMER_CONTINUOUS, | |
22 | ||
23 | // only send the notification once and then stop the timer | |
24 | wxTIMER_ONE_SHOT, | |
25 | }; | |
26 | ||
27 | // Timer event type | |
28 | %constant wxEventType wxEVT_TIMER; | |
29 | ||
30 | ||
31 | //--------------------------------------------------------------------------- | |
32 | ||
33 | ||
34 | %{ | |
35 | IMP_PYCALLBACK__(wxPyTimer, wxTimer, Notify); | |
36 | ||
37 | IMPLEMENT_ABSTRACT_CLASS(wxPyTimer, wxTimer); | |
38 | ||
39 | wxPyTimer::wxPyTimer(wxEvtHandler *owner, int id) | |
40 | : wxTimer(owner, id) | |
41 | { | |
42 | if (owner == NULL) | |
43 | SetOwner(this); | |
44 | } | |
45 | %} | |
46 | ||
47 | ||
48 | MustHaveApp(wxPyTimer); | |
49 | ||
50 | %rename(Timer) wxPyTimer; | |
51 | class wxPyTimer : public wxEvtHandler | |
52 | { | |
53 | public: | |
54 | // Don't let the OOR or callback info hold references to the object so | |
55 | // there won't be a reference cycle and it can clean itself up via normal | |
56 | // Python refcounting | |
57 | %pythonAppend wxPyTimer | |
58 | "self._setCallbackInfo(self, Timer, 0); self._setOORInfo(self, 0)" | |
59 | ||
60 | // if you don't call SetOwner() or provide an owner in the ctor | |
61 | // then you must override Notify() in order to receive the timer | |
62 | // notification. If the owner is set then it will get the timer | |
63 | // notifications which can be handled with EVT_TIMER. | |
64 | wxPyTimer(wxEvtHandler *owner = NULL, int id = wxID_ANY); | |
65 | ||
66 | // Destructor. | |
67 | virtual ~wxPyTimer(); | |
68 | ||
69 | void _setCallbackInfo(PyObject* self, PyObject* _class, int incref = 1); | |
70 | ||
71 | // Set the owner instance that will receive the EVT_TIMER events | |
72 | // using the given id. | |
73 | void SetOwner(wxEvtHandler *owner, int id = wxID_ANY); | |
74 | wxEvtHandler* GetOwner(); | |
75 | ||
76 | // start the timer: if milliseconds == -1, use the same value as for the | |
77 | // last Start() | |
78 | // | |
79 | // it is now valid to call Start() multiple times: this just restarts the | |
80 | // timer if it is already running | |
81 | virtual bool Start(int milliseconds = -1, bool oneShot = false); | |
82 | ||
83 | // stop the timer | |
84 | virtual void Stop(); | |
85 | ||
86 | // override this in your wxTimer-derived class if you need to process timer | |
87 | // messages in it; otherwise, use non-default ctor or call SetOwner() | |
88 | virtual void Notify(); | |
89 | ||
90 | // return True if the timer is running | |
91 | virtual bool IsRunning() const; | |
92 | ||
93 | // get the (last) timer interval in milliseconds | |
94 | int GetInterval() const; | |
95 | ||
96 | // return the timer ID | |
97 | int GetId() const; | |
98 | ||
99 | // return True if the timer is one shot | |
100 | bool IsOneShot() const; | |
101 | ||
102 | %pythoncode { | |
103 | def Destroy(self): | |
104 | """NO-OP: Timers must be destroyed by normal reference counting""" | |
105 | pass | |
106 | } | |
107 | }; | |
108 | ||
109 | ||
110 | %pythoncode { | |
111 | %# For backwards compatibility with 2.4 | |
112 | class PyTimer(Timer): | |
113 | def __init__(self, notify): | |
114 | Timer.__init__(self) | |
115 | self.notify = notify | |
116 | ||
117 | def Notify(self): | |
118 | if self.notify: | |
119 | self.notify() | |
120 | ||
121 | ||
122 | EVT_TIMER = wx.PyEventBinder( wxEVT_TIMER, 1 ) | |
123 | ||
124 | }; | |
125 | ||
126 | ||
127 | ||
128 | class wxTimerEvent : public wxEvent | |
129 | { | |
130 | public: | |
131 | wxTimerEvent(int timerid = 0, int interval = 0); | |
132 | int GetInterval() const; | |
133 | }; | |
134 | ||
135 | ||
136 | ||
137 | // wxTimerRunner: starts the timer in its ctor, stops in the dtor | |
138 | MustHaveApp(wxTimerRunner); | |
139 | class wxTimerRunner | |
140 | { | |
141 | public: | |
142 | %nokwargs wxTimerRunner; | |
143 | wxTimerRunner(wxTimer& timer); | |
144 | wxTimerRunner(wxTimer& timer, int milli, bool oneShot = false); | |
145 | ~wxTimerRunner(); | |
146 | ||
147 | void Start(int milli, bool oneShot = false); | |
148 | }; | |
149 | ||
150 | ||
151 | //--------------------------------------------------------------------------- | |
152 | %init %{ | |
153 | wxPyPtrTypeMap_Add("wxTimer", "wxPyTimer"); | |
154 | %} | |
155 | //--------------------------------------------------------------------------- |