%name(Timer) class wxPyTimer : public wxEvtHandler
{
public:
- %addtofunc wxPyTimer "self._setCallbackInfo(self, Timer)"
+ %pythonAppend wxPyTimer "self._setCallbackInfo(self, Timer)"
// if you don't call SetOwner() or provide an owner in the contstructor
// then you must override Notify() inorder to receive the timer
// return True if the timer is one shot
bool IsOneShot() const;
+
+ // return the timer ID
+ int GetId() const;
+
};