From a6163888f3c56123b1db313743c6147ba498732c Mon Sep 17 00:00:00 2001 From: Yuval Adam Date: Fri, 8 Aug 2014 14:42:07 +0300 Subject: Add third_party libs --- .../fltk-1.1.10/documentation/Fl_Timer.html | 62 ++++++++++++++++++++++ 1 file changed, 62 insertions(+) create mode 100644 third_party/windows/fltk-1.1.10/documentation/Fl_Timer.html (limited to 'third_party/windows/fltk-1.1.10/documentation/Fl_Timer.html') diff --git a/third_party/windows/fltk-1.1.10/documentation/Fl_Timer.html b/third_party/windows/fltk-1.1.10/documentation/Fl_Timer.html new file mode 100644 index 0000000..0ef93c4 --- /dev/null +++ b/third_party/windows/fltk-1.1.10/documentation/Fl_Timer.html @@ -0,0 +1,62 @@ + + + Fl_Timer + + + +

class Fl_Timer

+
+

Class Hierarchy

+ +

Include Files

+ +

Description

+ This is provided only to emulate the Forms Timer widget. It works by +making a timeout callback every 1/5 second. This is wasteful and +inaccurate if you just want something to happen a fixed time in the +future. You should directly call +Fl::add_timeout() instead. +

Methods

+ +

Fl_Timer::Fl_Timer(uchar type, int x, int +y, int w, int h, const char *label = 0)

+ Creates a new Fl_Timer widget using the given type, position, +size, and label string. The type parameter can be any of the +following symbolic constants: + +

virtual Fl_Timer::~Fl_Timer()

+ Destroys the timer and removes the timeout. +

char direction() const +
void direction(char d)

+ Gets or sets the direction of the timer. If the direction is zero +then the timer will count up, otherwise it will count down from the +initial value(). +

char suspended() const +
void suspended(char d)

+ Gets or sets whether the timer is suspended. +

float value() const +
void value(float)

+ Gets or sets the current timer value. -- cgit v1.3.1