]> git.saurik.com Git - wxWidgets.git/blame - include/wx/os2/timer.h
Escape underscores
[wxWidgets.git] / include / wx / os2 / timer.h
CommitLineData
0e320a79
DW
1/////////////////////////////////////////////////////////////////////////////
2// Name: timer.h
3// Purpose: wxTimer class
d90895ac 4// Author: David Webster
0e320a79 5// Modified by:
d90895ac 6// Created: 10/17/99
0e320a79 7// RCS-ID: $Id$
d90895ac 8// Copyright: (c) David Webster
65571936 9// Licence: wxWindows licence
0e320a79
DW
10/////////////////////////////////////////////////////////////////////////////
11
12#ifndef _WX_TIMER_H_
13#define _WX_TIMER_H_
14
0e320a79
DW
15#include "wx/object.h"
16
9ed0fac8 17class WXDLLEXPORT wxTimer: public wxTimerBase
0e320a79 18{
d90895ac
DW
19friend void wxProcessTimer(wxTimer& timer);
20
0e320a79 21public:
b9cf5e6d
DW
22 wxTimer() { Init(); }
23 wxTimer( wxEvtHandler* pOwner
24 ,int nId = -1
25 )
26 : wxTimerBase( pOwner
27 ,nId
28 )
29 { Init(); }
0e320a79
DW
30 ~wxTimer();
31
6c0fdfbb 32 virtual void Notify(void);
9ed0fac8
DW
33 virtual bool Start( int nMilliseconds = -1
34 ,bool bOneShot = FALSE
35 );
36 virtual void Stop(void);
0e320a79 37
9ed0fac8 38 inline virtual bool IsRunning(void) const { return m_ulId != 0L; }
5d644707 39 inline int GetTimerId(void) const { return m_idTimer; }
0e320a79
DW
40
41protected:
b9cf5e6d
DW
42 void Init(void);
43
9ed0fac8
DW
44 ULONG m_ulId;
45 HAB m_Hab;
0e320a79
DW
46
47private:
48 DECLARE_ABSTRACT_CLASS(wxTimer)
49};
50
b9cf5e6d
DW
51extern ULONG wxTimerProc( HWND WXUNUSED(hwnd)
52 ,ULONG
53 ,int nIdTimer
54 ,ULONG
55 );
0e320a79
DW
56#endif
57 // _WX_TIMER_H_