From a4b6a06f372923fb38ae4d3c7e0429ce93ea7748 Mon Sep 17 00:00:00 2001 From: Jed Barber Date: Sun, 15 Apr 2018 19:41:33 +1000 Subject: Started process of polishing packages --- doc/fl_button.html | 203 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 203 insertions(+) create mode 100644 doc/fl_button.html (limited to 'doc/fl_button.html') diff --git a/doc/fl_button.html b/doc/fl_button.html new file mode 100644 index 0000000..be21c60 --- /dev/null +++ b/doc/fl_button.html @@ -0,0 +1,203 @@ + + + + + + + Fl_Button Binding Map + + + + + + +

Fl_Button Binding Map

+ + + + + + + + + +
Package name
Fl_ButtonFLTK.Widgets.Buttons
+ + + + + + + + + + + + + + + + + + + + + +
Types
Fl_ButtonButton
 Button_Reference
 State
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Functions and Procedures
+Fl_Button(int X, int Y, int W, int H, const char *L=0);
+
+function Create
+       (X, Y, W, H : in Integer;
+        Text       : in String)
+    return Button;
+
+int clear();
+
See int value();
+Fl_Boxtype down_box() const;
+
+function Get_Down_Box
+       (This : in Button)
+    return Box_Kind;
+
+void down_box(Fl_Boxtype b);
+
+procedure Set_Down_Box
+       (This : in out Button;
+        To   : in     Box_Kind);
+
+Fl_Color down_color() const;
+
 
+void down_color(unsigned c);
+
 
+virtual void draw();
+
+procedure Draw
+       (This : in out Button);
+
+virtual int handle(int);
+
+function Handle
+       (This  : in out Button;
+        Event : in     Event_Kind)
+    return Event_Outcome;
+
+int set();
+
See int value();
+void setonly();
+
+procedure Set_Only
+       (This : in out Button);
+
+int shortcut() const;
+
+function Get_Shortcut
+       (This : in Button)
+    return Shortcut_Key;
+
+void shortcut(int s);
+
+procedure Set_Shortcut
+       (This : in out Button;
+        Key  : in     Shortcut_Key);
+
+void shortcut(const char *s);
+
See void shortcut(int s);
+int value(int v);
+
+procedure Set_State
+       (This : in out Button;
+        St   : in     State);
+
+char value() const;
+
+function Get_State
+       (This : in Button)
+    return State;
+
+ + + + + -- cgit