From 2cbec01126c34e70fc8e11d77553ef5bfd94cec7 Mon Sep 17 00:00:00 2001 From: Jed Barber Date: Fri, 18 May 2018 16:21:25 +1000 Subject: Added Choices, Pixmaps, GIFs, XPMs --- doc/fl_choice.html | 130 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 130 insertions(+) create mode 100644 doc/fl_choice.html (limited to 'doc/fl_choice.html') diff --git a/doc/fl_choice.html b/doc/fl_choice.html new file mode 100644 index 0000000..34b8778 --- /dev/null +++ b/doc/fl_choice.html @@ -0,0 +1,130 @@ + + + + + + + Fl_Choice Binding Map + + + + + + +

Fl_Choice Binding Map

+ + + + + + + + + + +
Package name
Fl_ChoiceFLTK.Widgets.Menus.Choices
+ + + + + + + + + + + + + + + + +
Types
Fl_ChoiceChoice
 Choice_Reference
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Functions and Procedures
+Fl_Choice(int X, int Y, int W, int H, const char *L=0);
+
+function Create
+       (X, Y, W, H : in Integer;
+        Text       : in String)
+    return Choice;
+
+void draw();
+
+procedure Draw
+       (This : in out Choice);
+
+int handle(int);
+
+function Handle
+       (This  : in out Choice;
+        Event : in     Event_Kind)
+    return Event_Outcome;
+
 
+function Chosen
+       (This : in Choice)
+    return FLTK.Menu_Items.Menu_Item_Reference;
+
+int value() const;
+
+function Chosen_Index
+       (This : in Choice)
+    return Extended_Index;
+
+int value(int v);
+
+procedure Set_Chosen
+       (This  : in out Choice;
+        Place : in     Index);
+
+int value(const Fl_Menu_Item *v);
+
+procedure Set_Chosen
+       (This : in out Choice;
+        Item : in     FLTK.Menu_Items.Menu_Item);
+
+ + + + + -- cgit