]> git.saurik.com Git - wxWidgets.git/blame - include/wx/msw/timer.h
1. regenerated the makefiles to include menucmn.cpp
[wxWidgets.git] / include / wx / msw / timer.h
CommitLineData
2bda0e17
KB
1/////////////////////////////////////////////////////////////////////////////
2// Name: timer.h
3// Purpose: wxTimer class
4// Author: Julian Smart
5// Modified by:
6// Created: 01/02/97
7// RCS-ID: $Id$
bbcdf8bc 8// Copyright: (c) Julian Smart
73974df1 9// Licence: wxWindows licence
2bda0e17
KB
10/////////////////////////////////////////////////////////////////////////////
11
bbcdf8bc
JS
12#ifndef _WX_TIMER_H_
13#define _WX_TIMER_H_
2bda0e17
KB
14
15#ifdef __GNUG__
16#pragma interface "timer.h"
17#endif
18
19#include "wx/object.h"
20
03f38c58 21class WXDLLEXPORT wxTimer : public wxObject
2bda0e17 22{
c085e333
VZ
23friend void wxProcessTimer(wxTimer& timer);
24
03f38c58
VZ
25public:
26 wxTimer();
27 ~wxTimer();
28
29 virtual bool Start(int milliseconds = -1,
30 bool one_shot = FALSE); // Start timer
31 virtual void Stop(); // Stop timer
32
33 virtual void Notify() = 0; // Override this member
34
35 // Returns the current interval time (0 if stop)
36 int Interval() const { return milli; };
37 bool OneShot() const { return oneShot; }
38
c085e333 39protected:
73974df1
VZ
40 bool oneShot;
41 int milli;
42 int lastMilli;
03f38c58
VZ
43
44 long id;
45
46private:
47 DECLARE_ABSTRACT_CLASS(wxTimer)
2bda0e17
KB
48};
49
2bda0e17 50#endif
bbcdf8bc 51 // _WX_TIMERH_