]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/os2/timer.h
fixed wxImage->wxBitmap conversion for images with alpha channel
[wxWidgets.git] / include / wx / os2 / timer.h
index b4f8a2fc517b3f47c3ae0dd7a04c9a422875629a..62ab0c423e4a08c48089784547b4e688ce1e0216 100644 (file)
 #ifndef _WX_TIMER_H_
 #define _WX_TIMER_H_
 
+#ifdef __GNUG__
+    #pragma interface "timer.h"
+#endif
+
 #include "wx/object.h"
 
 class WXDLLEXPORT wxTimer: public wxTimerBase
@@ -29,12 +33,14 @@ public:
         { Init(); }
     ~wxTimer();
 
+    virtual void Notify(void);
     virtual bool Start( int  nMilliseconds = -1
                        ,bool bOneShot = FALSE
                       );
     virtual void Stop(void);
 
     inline virtual bool IsRunning(void) const { return m_ulId != 0L; }
+    inline          int GetTimerId(void) const { return m_idTimer; }
 
 protected:
     void Init(void);