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_dial.html | 166 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 166 insertions(+) create mode 100644 doc/fl_dial.html (limited to 'doc/fl_dial.html') diff --git a/doc/fl_dial.html b/doc/fl_dial.html new file mode 100644 index 0000000..9c54e4b --- /dev/null +++ b/doc/fl_dial.html @@ -0,0 +1,166 @@ + + + + + + + Fl_Dial Binding Map + + + + + + +

Fl_Dial Binding Map

+ + + + + + + + + + +
Package name
Fl_DialFLTK.Widgets.Valuators.Dials
+ + + + + + + + + + + + + + + + + + + + + +
Types
Fl_DialDial
 Dial_Reference
 Dial_Kind
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Functions and Procedures
+Fl_Dial(int x, int y, int w, int h, const char *l=0);
+
+function Create
+       (X, Y, W, H : in Integer;
+        Text       : in String)
+    return Dial;
+
+short angle1() const;
+
+function Get_First_Angle
+       (This : in Dial)
+    return Integer;
+
+void angle1(short a);
+
+procedure Set_First_Angle
+       (This : in out Dial;
+        To   : in     Integer);
+
+short angle2() const;
+
+function Get_Second_Angle
+       (This : in Dial)
+    return Integer;
+
+void angle2(short a);
+
+procedure Set_Second_Angle
+       (This : in out Dial;
+        To   : in     Integer);
+
+void angles(short a, short b);
+
+procedure Set_Angles
+       (This     : in out Dial;
+        One, Two : in     Integer);
+
+void draw();
+
+procedure Draw
+       (This : in out Dial);
+
+int handle(int);
+
+function Handle
+       (This  : in out Dial;
+        Event : in     Event_Kind)
+    return Event_Outcome;
+
See type() methods for Fl_Widget
+function Get_Dial_Type
+       (This : in Dial)
+    return Dial_Kind;
+
See type() methods for Fl_Widget
+procedure Set_Dial_Type
+       (This : in out Dial;
+        To   : in     Dial_Kind);
+
+ + + + + -- cgit