+ wxEvtHandler *GetOwner() const { return m_owner; }
+
+ virtual ~wxTimerBase();
+
+ // working with the timer
+ // ----------------------
+
+ // start the timer: if milliseconds == -1, use the same value as for the
+ // last Start()
+ //
+ // it is now valid to call Start() multiple times: this just restarts the
+ // timer if it is already running
+ virtual bool Start(int milliseconds = -1, bool oneShot = false);