[Overview][Types][Classes][Variables][Index] |
[Properties (by Name)] [Methods (by Name)] [Events (by Name)]
Abstract driver class
Source position: fptimer.pp line 104
type TFPTimerDriver = class(TObject) |
||
public |
||
constructor Create(); virtual; |
|
Creates a new driver instance |
procedure StartTimer; virtual; abstract; |
|
Start the timer |
procedure StopTimer; virtual; abstract; |
|
Stop the timer |
property Timer: TFPCustomTimer; [r] |
|
Timer tick |
property TimerStarted: Boolean; [r] |
|
True when the timer driver has called its StartTimer method |
end; |
|
Abstract driver class |
|
| | ||
TFPTimerDriver is the abstract timer driver class: it simply provides an interface for the TFPCustomTimer class to use.
The fpTimer unit implements a descendent of this class which implements the default timer mechanism.
|
Custom timer class |
|
|
Actual timer class to be used |