From e93b9bbc02e2791f3a35b6f077fcbb8514c28aed Mon Sep 17 00:00:00 2001 From: Jedidiah Barber Date: Sun, 12 Jan 2025 01:14:58 +1300 Subject: Refactored draw/handle methods in Widgets hierarchy, improved docs, added a few minor method bindings here and there --- doc/fl_input_choice.html | 86 ++++++++++++++++++++++++------------------------ 1 file changed, 43 insertions(+), 43 deletions(-) (limited to 'doc/fl_input_choice.html') diff --git a/doc/fl_input_choice.html b/doc/fl_input_choice.html index ebd1d9c..9afac9e 100644 --- a/doc/fl_input_choice.html +++ b/doc/fl_input_choice.html @@ -46,7 +46,36 @@ - + + + + + + + + + + + + +
Functions and Procedures
Attributes
+Fl_Input * input();
+
+function Text_Field
+       (This : in out Input_Choice)
+    return FLTK.Widgets.Inputs.Text.Text_Input_Reference;
+
+Fl_Menu_Button * menubutton();
+
+function Button_Menu
+       (This : in out Input_Choice)
+    return FLTK.Widgets.Menus.Menu_Buttons.Menu_Button_Reference;
+
+ + + + + +
Constructors
@@ -55,16 +84,23 @@ Fl_Input_Choice(int X, int Y, int W, int H, const char *L=0);
 
 function Create
        (X, Y, W, H : in Integer;
-        Text       : in String)
+        Text       : in String := "")
     return Input_Choice;
 
+ + + + + + - + @@ -120,35 +156,6 @@ procedure Set_Down_Box - - - - - - - - - - - - - - - - - - - - -- cgit
Functions and Procedures
 void add(const char *s);
 
Use Menu_Button insteadUse menubutton / Button_Menu instead.
 
-procedure Draw
-       (This : in out Input_Choice);
-
 
-function Handle
-       (This  : in out Input_Choice;
-        Event : in     Event_Kind)
-    return Event_Outcome;
-
-Fl_Input * input();
-
-function Text_Field
-       (This : in out Input_Choice)
-    return FLTK.Widgets.Inputs.Text.Text_Input_Reference;
-
 const Fl_Menu_Item * menu();
@@ -165,20 +172,13 @@ void menu(const Fl_Menu_Item *m);
 
   
-Fl_Menu_Button * menubutton();
-
-function Button_Menu
-       (This : in out Input_Choice)
-    return FLTK.Widgets.Menus.Menu_Buttons.Menu_Button_Reference;
+void resize(int X, int Y, int W, int H);
 
-void resize(int X, int Y, int W, int H);
+procedure Resize
+       (This       : in out Input_Choice;
+        X, Y, W, H : in     Integer);