From 5c1f074e4db5d2e701011c60cc3e6f486fb2ecf4 Mon Sep 17 00:00:00 2001 From: Jed Barber Date: Fri, 20 Apr 2018 02:24:26 +1000 Subject: Polishing some Valuators --- doc/fl_counter.html | 203 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 203 insertions(+) create mode 100644 doc/fl_counter.html (limited to 'doc/fl_counter.html') diff --git a/doc/fl_counter.html b/doc/fl_counter.html new file mode 100644 index 0000000..fce7fa4 --- /dev/null +++ b/doc/fl_counter.html @@ -0,0 +1,203 @@ + + + + + + + Fl_Counter Binding Map + + + + + + +

Fl_Counter Binding Map

+ + + + + + + + + + +
Package name
Fl_CounterFLTK.Widgets.Valuators.Counters
+ + + + + + + + + + + + + + + + +
Types
Fl_CounterCounter
 Counter_Reference
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Functions and Procedures
+Fl_Counter(int X, int Y, int W, int H, const char *L=0);
+
+function Create
+       (X, Y, W, H : in Integer;
+        Text       : in String)
+    return Counter;
+
+void draw();
+
+procedure Draw
+       (This : in out Counter);
+
+int handle(int);
+
+function Handle
+       (This  : in out Counter;
+        Event : in     Event_Kind)
+    return Event_Outcome;
+
+void lstep(double a);
+
+procedure Set_Long_Step
+       (This : in out Counter;
+        To   : in     Long_Float);
+
 
+function Get_Long_Step
+       (This : in Counter)
+    return Long_Float;
+
+void step(double a, double b);
+
 
+void step(double a);
+
+procedure Set_Step
+       (This : in out Counter;
+        To   : in     Long_Float);
+
+double step() const;
+
+function Get_Step
+       (This : in Counter)
+    return Long_Float;
+
+Fl_Color textcolor() const;
+
+function Get_Text_Color
+       (This : in Counter)
+    return Color;
+
+void textcolor(Fl_Color s);
+
+procedure Set_Text_Color
+       (This : in out Counter;
+        To   : in     Color);
+
+Fl_Font textfont() const;
+
+function Get_Text_Font
+       (This : in Counter)
+    return Font_Kind;
+
+void textfont(Fl_Font s);
+
+procedure Set_Text_Font
+       (This : in out Counter;
+        To   : in     Font_Kind);
+
+Fl_Fontsize textsize() const;
+
+function Get_Text_Size
+       (This : in Counter)
+    return Font_Size;
+
+void textsize(Fl_Fontsize s);
+
+procedure Set_Text_Size
+       (This : in out Counter;
+        To   : in     Font_Size);
+
+ + + + + -- cgit