From 157f44ff7034212a29696c5bb2b87e4f6f20d625 Mon Sep 17 00:00:00 2001 From: Jedidiah Barber Date: Thu, 16 Jan 2025 23:44:10 +1300 Subject: Added convenience widget constructors that specify the parent group to add to --- doc/fl_adjuster.html | 12 ++++++++++++ doc/fl_box.html | 25 +++++++++++++++++++++++++ doc/fl_browser.html | 12 ++++++++++++ doc/fl_browser_.html | 12 ++++++++++++ doc/fl_button.html | 12 ++++++++++++ doc/fl_cairo_window.html | 37 ++++++++++++++++++++++++++++++++++++- doc/fl_chart.html | 12 ++++++++++++ doc/fl_check_browser.html | 12 ++++++++++++ doc/fl_check_button.html | 12 ++++++++++++ doc/fl_choice.html | 12 ++++++++++++ doc/fl_clock.html | 25 +++++++++++++++++++++++++ doc/fl_clock_output.html | 12 ++++++++++++ doc/fl_color_chooser.html | 12 ++++++++++++ doc/fl_counter.html | 12 ++++++++++++ doc/fl_dial.html | 12 ++++++++++++ doc/fl_double_window.html | 24 ++++++++++++++++++++++++ doc/fl_file_browser.html | 12 ++++++++++++ doc/fl_file_input.html | 12 ++++++++++++ doc/fl_fill_dial.html | 12 ++++++++++++ doc/fl_fill_slider.html | 12 ++++++++++++ doc/fl_float_input.html | 12 ++++++++++++ doc/fl_gl_window.html | 24 ++++++++++++++++++++++++ doc/fl_group.html | 12 ++++++++++++ doc/fl_help_view.html | 12 ++++++++++++ doc/fl_hold_browser.html | 12 ++++++++++++ doc/fl_hor_fill_slider.html | 12 ++++++++++++ doc/fl_hor_nice_slider.html | 12 ++++++++++++ doc/fl_hor_slider.html | 12 ++++++++++++ doc/fl_hor_value_slider.html | 18 +++++++++++++++--- doc/fl_input.html | 12 ++++++++++++ doc/fl_input_.html | 12 ++++++++++++ doc/fl_input_choice.html | 12 ++++++++++++ doc/fl_int_input.html | 12 ++++++++++++ doc/fl_light_button.html | 12 ++++++++++++ doc/fl_line_dial.html | 12 ++++++++++++ doc/fl_menu_.html | 12 ++++++++++++ doc/fl_menu_bar.html | 12 ++++++++++++ doc/fl_menu_button.html | 12 ++++++++++++ doc/fl_menu_window.html | 24 ++++++++++++++++++++++++ doc/fl_multi_browser.html | 12 ++++++++++++ doc/fl_multiline_input.html | 12 ++++++++++++ doc/fl_multiline_output.html | 12 ++++++++++++ doc/fl_nice_slider.html | 12 ++++++++++++ doc/fl_output.html | 12 ++++++++++++ doc/fl_overlay_window.html | 24 ++++++++++++++++++++++++ doc/fl_pack.html | 12 ++++++++++++ doc/fl_positioner.html | 12 ++++++++++++ doc/fl_progress.html | 12 ++++++++++++ doc/fl_radio_button.html | 12 ++++++++++++ doc/fl_radio_light_button.html | 12 ++++++++++++ doc/fl_radio_round_button.html | 12 ++++++++++++ doc/fl_repeat_button.html | 12 ++++++++++++ doc/fl_return_button.html | 12 ++++++++++++ doc/fl_roller.html | 12 ++++++++++++ doc/fl_round_button.html | 12 ++++++++++++ doc/fl_round_clock.html | 12 ++++++++++++ doc/fl_scroll.html | 12 ++++++++++++ doc/fl_scrollbar.html | 12 ++++++++++++ doc/fl_secret_input.html | 12 ++++++++++++ doc/fl_select_browser.html | 12 ++++++++++++ doc/fl_simple_counter.html | 12 ++++++++++++ doc/fl_single_window.html | 24 ++++++++++++++++++++++++ doc/fl_slider.html | 27 ++++++++++++++++++++++++++- doc/fl_spinner.html | 12 ++++++++++++ doc/fl_tabs.html | 12 ++++++++++++ doc/fl_text_display.html | 12 ++++++++++++ doc/fl_text_editor.html | 12 ++++++++++++ doc/fl_tile.html | 12 ++++++++++++ doc/fl_toggle_button.html | 12 ++++++++++++ doc/fl_valuator.html | 12 ++++++++++++ doc/fl_value_input.html | 12 ++++++++++++ doc/fl_value_output.html | 12 ++++++++++++ doc/fl_value_slider.html | 12 ++++++++++++ doc/fl_widget.html | 12 ++++++++++++ doc/fl_window.html | 24 ++++++++++++++++++++++++ doc/fl_wizard.html | 12 ++++++++++++ 76 files changed, 1051 insertions(+), 5 deletions(-) (limited to 'doc') diff --git a/doc/fl_adjuster.html b/doc/fl_adjuster.html index 9f67d97..ad90328 100644 --- a/doc/fl_adjuster.html +++ b/doc/fl_adjuster.html @@ -60,6 +60,18 @@ function Create + +Rely on the automatic use of begin when a group is created, or use begin/end +explicitly, or add each widget to its intended parent group manually. +
+function Create
+       (Parent     : in out FLTK.Widgets.Groups.Group'Class;
+        X, Y, W, H : in     Integer;
+        Text       : in     String := "")
+    return Adjuster;
+
+ + diff --git a/doc/fl_box.html b/doc/fl_box.html index 566105a..9c03de3 100644 --- a/doc/fl_box.html +++ b/doc/fl_box.html @@ -61,6 +61,19 @@ function Create + +Rely on the automatic use of begin when a group is created, or use begin/end +explicitly, or add each widget to its intended parent group manually. +
+function Create
+       (Parent     : in out FLTK.Widgets.Groups.Group'Class;
+        Kind       : in     Box_Kind;
+        X, Y, W, H : in     Integer;
+        Text       : in     String := "")
+    return Box;
+
+ +
 Fl_Box(int X, int Y, int W, int H, const char *l=0);
@@ -73,6 +86,18 @@ function Create
 
+ +Rely on the automatic use of begin when a group is created, or use begin/end +explicitly, or add each widget to its intended parent group manually. +
+function Create
+       (Parent     : in out FLTK.Widgets.Groups.Group'Class;
+        X, Y, W, H : in     Integer;
+        Text       : in     String := "")
+    return Box;
+
+ + diff --git a/doc/fl_browser.html b/doc/fl_browser.html index 0b0a290..693d7c2 100644 --- a/doc/fl_browser.html +++ b/doc/fl_browser.html @@ -82,6 +82,18 @@ function Create + +Rely on the automatic use of begin when a group is created, or use begin/end +explicitly, or add each widget to its intended parent group manually. +
+function Create
+       (Parent     : in out Groups.Group'Class;
+        X, Y, W, H : in     Integer;
+        Text       : in     String := "")
+    return Textline_Browser;
+
+ + diff --git a/doc/fl_browser_.html b/doc/fl_browser_.html index 8eb131a..1ee2a6a 100644 --- a/doc/fl_browser_.html +++ b/doc/fl_browser_.html @@ -109,6 +109,18 @@ function Create + +Rely on the automatic use of begin when a group is created, or use begin/end +explicitly, or add each widget to its intended parent group manually. +
+function Create
+       (Parent     : in out Groups.Group'Class;
+        X, Y, W, H : in     Integer;
+        Text       : in     String := "")
+    return Browser;
+
+ + diff --git a/doc/fl_button.html b/doc/fl_button.html index c95ebb4..9397807 100644 --- a/doc/fl_button.html +++ b/doc/fl_button.html @@ -78,6 +78,18 @@ function Create + +Rely on the automatic use of begin when a group is created, or use begin/end +explicitly, or add each widget to its intended parent group manually. +
+function Create
+       (Parent     : in out FLTK.Widgets.Groups.Group'Class;
+        X, Y, W, H : in     Integer;
+        Text       : in     String := "")
+    return Button;
+
+ + diff --git a/doc/fl_cairo_window.html b/doc/fl_cairo_window.html index 1454c61..fe696fd 100644 --- a/doc/fl_cairo_window.html +++ b/doc/fl_cairo_window.html @@ -64,12 +64,35 @@ function Create + +Rely on the automatic use of begin when a group is created, or use begin/end +explicitly, or add each widget to its intended parent group manually. +
+function Create
+       (Parent : in out Groups.Group'Class;
+        W, H   : in     Integer)
+    return Cairo_Window;
+
+ + Create a Fl_Cairo_Window and set the label manually.
 function Create
        (W, H : in Integer;
-        Text : in String := "")
+        Text : in String)
+    return Cairo_Window;
+
+ + + +Rely on the automatic use of begin when a group is created, or use begin/end +explicitly, or add each widget to its intended parent group manually. +
+function Create
+       (Parent : in out Groups.Group'Class;
+        W, H   : in     Integer;
+        Text   : in     String)
     return Cairo_Window;
 
@@ -84,6 +107,18 @@ function Create + +Rely on the automatic use of begin when a group is created, or use begin/end +explicitly, or add each widget to its intended parent group manually. +
+function Create
+       (Parent     : in out Groups.Group'Class;
+        X, Y, W, H : in     Integer;
+        Text       : in     String := "")
+    return Cairo_Window;
+
+ + diff --git a/doc/fl_chart.html b/doc/fl_chart.html index be2099b..95277fe 100644 --- a/doc/fl_chart.html +++ b/doc/fl_chart.html @@ -60,6 +60,18 @@ function Create + +Rely on the automatic use of begin when a group is created, or use begin/end +explicitly, or add each widget to its intended parent group manually. +
+function Create
+       (Parent     : in out FLTK.Widgets.Groups.Group'Class;
+        X, Y, W, H : in     Integer;
+        Text       : in     String := "")
+    return Chart;
+
+ + diff --git a/doc/fl_check_browser.html b/doc/fl_check_browser.html index b09bd0e..58d0913 100644 --- a/doc/fl_check_browser.html +++ b/doc/fl_check_browser.html @@ -60,6 +60,18 @@ function Create + +Rely on the automatic use of begin when a group is created, or use begin/end +explicitly, or add each widget to its intended parent group manually. +
+function Create
+       (Parent     : in out Groups.Group'Class;
+        X, Y, W, H : in     Integer;
+        Text       : in     String := "")
+    return Check_Browser;
+
+ + diff --git a/doc/fl_check_button.html b/doc/fl_check_button.html index 46da8fb..ad1aa5c 100644 --- a/doc/fl_check_button.html +++ b/doc/fl_check_button.html @@ -59,6 +59,18 @@ function Create + +Rely on the automatic use of begin when a group is created, or use begin/end +explicitly, or add each widget to its intended parent group manually. +
+function Create
+       (Parent     : in out FLTK.Widgets.Groups.Group'Class;
+        X, Y, W, H : in     Integer;
+        Text       : in     String := "")
+    return Check_Button;
+
+ + diff --git a/doc/fl_choice.html b/doc/fl_choice.html index 777cece..5d4b3d9 100644 --- a/doc/fl_choice.html +++ b/doc/fl_choice.html @@ -60,6 +60,18 @@ function Create + +Rely on the automatic use of begin when a group is created, or use begin/end +explicitly, or add each widget to its intended parent group manually. +
+function Create
+       (Parent     : in out FLTK.Widgets.Groups.Group'Class;
+        X, Y, W, H : in     Integer;
+        Text       : in     String := "")
+    return Choice;
+
+ + diff --git a/doc/fl_clock.html b/doc/fl_clock.html index c648133..311f993 100644 --- a/doc/fl_clock.html +++ b/doc/fl_clock.html @@ -59,6 +59,18 @@ function Create + +Rely on the automatic use of begin when a group is created, or use begin/end +explicitly, or add each widget to its intended parent group manually. +
+function Create
+       (Parent     : in out FLTK.Widgets.Groups.Group'Class;
+        X, Y, W, H : in     Integer;
+        Text       : in     String := "")
+    return Updated_Clock;
+
+ +
 Fl_Clock(uchar t, int X, int Y, int W, int H, const char *L);
@@ -72,6 +84,19 @@ function Create
 
+ +Rely on the automatic use of begin when a group is created, or use begin/end +explicitly, or add each widget to its intended parent group manually. +
+function Create
+       (Parent     : in out FLTK.Widgets.Groups.Group'Class;
+        Kind       : in     Box_Kind;
+        X, Y, W, H : in     Integer;
+        Text       : in     String := "")
+    return Updated_Clock;
+
+ + diff --git a/doc/fl_clock_output.html b/doc/fl_clock_output.html index 115e6d3..7cce93b 100644 --- a/doc/fl_clock_output.html +++ b/doc/fl_clock_output.html @@ -79,6 +79,18 @@ function Create + +Rely on the automatic use of begin when a group is created, or use begin/end +explicitly, or add each widget to its intended parent group manually. +
+function Create
+       (Parent     : in out FLTK.Widgets.Groups.Group'Class;
+        X, Y, W, H : in     Integer;
+        Text       : in     String := "")
+    return Clock;
+
+ + diff --git a/doc/fl_color_chooser.html b/doc/fl_color_chooser.html index d031806..67ae2c8 100644 --- a/doc/fl_color_chooser.html +++ b/doc/fl_color_chooser.html @@ -68,6 +68,18 @@ function Create + +Rely on the automatic use of begin when a group is created, or use begin/end +explicitly, or add each widget to its intended parent group manually. +
+function Create
+       (Parent     : in out Groups.Group'Class;
+        X, Y, W, H : in     Integer;
+        Text       : in     String := "")
+    return Color_Chooser;
+
+ + diff --git a/doc/fl_counter.html b/doc/fl_counter.html index 43e7d92..7a01221 100644 --- a/doc/fl_counter.html +++ b/doc/fl_counter.html @@ -60,6 +60,18 @@ function Create + +Rely on the automatic use of begin when a group is created, or use begin/end +explicitly, or add each widget to its intended parent group manually. +
+function Create
+       (Parent     : in out FLTK.Widgets.Groups.Group'Class;
+        X, Y, W, H : in     Integer;
+        Text       : in     String := "")
+    return Counter;
+
+ + diff --git a/doc/fl_dial.html b/doc/fl_dial.html index 64eb6c3..565b7cf 100644 --- a/doc/fl_dial.html +++ b/doc/fl_dial.html @@ -65,6 +65,18 @@ function Create + +Rely on the automatic use of begin when a group is created, or use begin/end +explicitly, or add each widget to its intended parent group manually. +
+function Create
+       (Parent     : in out FLTK.Widgets.Groups.Group'Class;
+        X, Y, W, H : in     Integer;
+        Text       : in     String := "")
+    return Dial;
+
+ + diff --git a/doc/fl_double_window.html b/doc/fl_double_window.html index 0f6d54b..355761c 100644 --- a/doc/fl_double_window.html +++ b/doc/fl_double_window.html @@ -74,6 +74,18 @@ function Create + +Rely on the automatic use of begin when a group is created, or use begin/end +explicitly, or add each widget to its intended parent group manually. +
+function Create
+       (Parent : in out Groups.Group'Class;
+        W, H   : in     Integer;
+        Text   : in     String := "")
+    return Double_Window;
+
+ +
 Fl_Double_Window(int X, int Y, int W, int H, const char *L=0);
@@ -86,6 +98,18 @@ function Create
 
+ +Rely on the automatic use of begin when a group is created, or use begin/end +explicitly, or add each widget to its intended parent group manually. +
+function Create
+       (Parent     : in out Groups.Group'Class;
+        X, Y, W, H : in     Integer;
+        Text       : in     String := "")
+    return Double_Window;
+
+ + diff --git a/doc/fl_file_browser.html b/doc/fl_file_browser.html index f90bbea..2b70537 100644 --- a/doc/fl_file_browser.html +++ b/doc/fl_file_browser.html @@ -70,6 +70,18 @@ function Create + +Rely on the automatic use of begin when a group is created, or use begin/end +explicitly, or add each widget to its intended parent group manually. +
+function Create
+       (Parent     : in out Groups.Group'Class;
+        X, Y, W, H : in     Integer;
+        Text       : in     String := "")
+    return File_Browser;
+
+ + diff --git a/doc/fl_file_input.html b/doc/fl_file_input.html index 89abfea..1b83909 100644 --- a/doc/fl_file_input.html +++ b/doc/fl_file_input.html @@ -60,6 +60,18 @@ function Create + +Rely on the automatic use of begin when a group is created, or use begin/end +explicitly, or add each widget to its intended parent group manually. +
+function Create
+       (Parent     : in out FLTK.Widgets.Groups.Group'Class;
+        X, Y, W, H : in     Integer;
+        Text       : in     String := "")
+    return File_Input;
+
+ + diff --git a/doc/fl_fill_dial.html b/doc/fl_fill_dial.html index f2419eb..bdd8249 100644 --- a/doc/fl_fill_dial.html +++ b/doc/fl_fill_dial.html @@ -60,6 +60,18 @@ function Create + +Rely on the automatic use of begin when a group is created, or use begin/end +explicitly, or add each widget to its intended parent group manually. +
+function Create
+       (Parent     : in out FLTK.Widgets.Groups.Group'Class;
+        X, Y, W, H : in     Integer;
+        Text       : in     String := "")
+    return Fill_Dial;
+
+ + diff --git a/doc/fl_fill_slider.html b/doc/fl_fill_slider.html index f559b6b..b89d154 100644 --- a/doc/fl_fill_slider.html +++ b/doc/fl_fill_slider.html @@ -60,6 +60,18 @@ function Create + +Rely on the automatic use of begin when a group is created, or use begin/end +explicitly, or add each widget to its intended parent group manually. +
+function Create
+       (Parent     : in out FLTK.Widgets.Groups.Group'Class;
+        X, Y, W, H : in     Integer;
+        Text       : in     String := "")
+    return Fill_Slider;
+
+ + diff --git a/doc/fl_float_input.html b/doc/fl_float_input.html index 747cfe7..6a1ec4f 100644 --- a/doc/fl_float_input.html +++ b/doc/fl_float_input.html @@ -60,6 +60,18 @@ function Create + +Rely on the automatic use of begin when a group is created, or use begin/end +explicitly, or add each widget to its intended parent group manually. +
+function Create
+       (Parent     : in out FLTK.Widgets.Groups.Group'Class;
+        X, Y, W, H : in     Integer;
+        Text       : in     String := "")
+    return Float_Input;
+
+ + diff --git a/doc/fl_gl_window.html b/doc/fl_gl_window.html index 7f169a0..6f5ee38 100644 --- a/doc/fl_gl_window.html +++ b/doc/fl_gl_window.html @@ -65,6 +65,18 @@ function Create + +Rely on the automatic use of begin when a group is created, or use begin/end +explicitly, or add each widget to its intended parent group manually. +
+function Create
+       (Parent : in out Groups.Group'Class;
+        W, H   : in     Integer;
+        Text   : in     String := "")
+    return GL_Window;
+
+ +
 Fl_Gl_Window(int X, int Y, int W, int H, const char *l=0);
@@ -77,6 +89,18 @@ function Create
 
+ +Rely on the automatic use of begin when a group is created, or use begin/end +explicitly, or add each widget to its intended parent group manually. +
+function Create
+       (Parent     : in out Groups.Group'Class;
+        X, Y, W, H : in     Integer;
+        Text       : in     String := "")
+    return GL_Window;
+
+ + diff --git a/doc/fl_group.html b/doc/fl_group.html index 6e2fb25..5608697 100644 --- a/doc/fl_group.html +++ b/doc/fl_group.html @@ -85,6 +85,18 @@ function Create + +Rely on the automatic use of begin when a group is created, or use begin/end +explicitly, or add each widget to its intended parent group manually. +
+function Create
+       (Parent     : in out Group'Class;
+        X, Y, W, H : in     Integer;
+        Text       : in     String := "")
+    return Group;
+
+ + diff --git a/doc/fl_help_view.html b/doc/fl_help_view.html index fed45e0..894c5d6 100644 --- a/doc/fl_help_view.html +++ b/doc/fl_help_view.html @@ -87,6 +87,18 @@ function Create + +Rely on the automatic use of begin when a group is created, or use begin/end +explicitly, or add each widget to its intended parent group manually. +
+function Create
+       (Parent     : in out Groups.Group'Class;
+        X, Y, W, H : in     Integer;
+        Text       : in     String := "")
+    return Help_View;
+
+ + diff --git a/doc/fl_hold_browser.html b/doc/fl_hold_browser.html index 50c6171..d8b9867 100644 --- a/doc/fl_hold_browser.html +++ b/doc/fl_hold_browser.html @@ -60,6 +60,18 @@ function Create + +Rely on the automatic use of begin when a group is created, or use begin/end +explicitly, or add each widget to its intended parent group manually. +
+function Create
+       (Parent     : in out Groups.Group'Class;
+        X, Y, W, H : in     Integer;
+        Text       : in     String := "")
+    return Hold_Browser;
+
+ + diff --git a/doc/fl_hor_fill_slider.html b/doc/fl_hor_fill_slider.html index ca8d484..1aadbc7 100644 --- a/doc/fl_hor_fill_slider.html +++ b/doc/fl_hor_fill_slider.html @@ -60,6 +60,18 @@ function Create + +Rely on the automatic use of begin when a group is created, or use begin/end +explicitly, or add each widget to its intended parent group manually. +
+function Create
+       (Parent     : in out FLTK.Widgets.Groups.Group'Class;
+        X, Y, W, H : in     Integer;
+        Text       : in     String := "")
+    return Horizontal_Fill_Slider;
+
+ + diff --git a/doc/fl_hor_nice_slider.html b/doc/fl_hor_nice_slider.html index 5bf60d6..9a6dc4f 100644 --- a/doc/fl_hor_nice_slider.html +++ b/doc/fl_hor_nice_slider.html @@ -60,6 +60,18 @@ function Create + +Rely on the automatic use of begin when a group is created, or use begin/end +explicitly, or add each widget to its intended parent group manually. +
+function Create
+       (Parent     : in out FLTK.Widgets.Groups.Group'Class;
+        X, Y, W, H : in     Integer;
+        Text       : in     String := "")
+    return Horizontal_Nice_Slider;
+
+ + diff --git a/doc/fl_hor_slider.html b/doc/fl_hor_slider.html index 2b65336..7f676ee 100644 --- a/doc/fl_hor_slider.html +++ b/doc/fl_hor_slider.html @@ -60,6 +60,18 @@ function Create + +Rely on the automatic use of begin when a group is created, or use begin/end +explicitly, or add each widget to its intended parent group manually. +
+function Create
+       (Parent     : in out FLTK.Widgets.Groups.Group'Class;
+        X, Y, W, H : in     Integer;
+        Text       : in     String := "")
+    return Horizontal_Slider;
+
+ + diff --git a/doc/fl_hor_value_slider.html b/doc/fl_hor_value_slider.html index d9aea6a..16b0eca 100644 --- a/doc/fl_hor_value_slider.html +++ b/doc/fl_hor_value_slider.html @@ -33,12 +33,12 @@ Fl_Hor_Value_Slider - Hor_Value_Slider + Horizontal_Value_Slider   - Hor_Value_Slider_Reference + Horizontal_Value_Slider_Reference @@ -56,7 +56,19 @@ Fl_Hor_Value_Slider(int X, int Y, int W, int H, const char *L=0); function Create (X, Y, W, H : in Integer; Text : in String := "") - return Hor_Value_Slider; + return Horizontal_Value_Slider; + + + + +Rely on the automatic use of begin when a group is created, or use begin/end +explicitly, or add each widget to its intended parent group manually. +
+function Create
+       (Parent     : in out FLTK.Widgets.Groups.Group'Class;
+        X, Y, W, H : in     Integer;
+        Text       : in     String := "")
+    return Horizontal_Value_Slider;
 
diff --git a/doc/fl_input.html b/doc/fl_input.html index cd0e6ca..427d4d1 100644 --- a/doc/fl_input.html +++ b/doc/fl_input.html @@ -60,6 +60,18 @@ function Create + +Rely on the automatic use of begin when a group is created, or use begin/end +explicitly, or add each widget to its intended parent group manually. +
+function Create
+       (Parent     : in out FLTK.Widgets.Groups.Group'Class;
+        X, Y, W, H : in     Integer;
+        Text       : in     String := "")
+    return Text_Input;
+
+ + diff --git a/doc/fl_input_.html b/doc/fl_input_.html index 01e1e57..b8e9929 100644 --- a/doc/fl_input_.html +++ b/doc/fl_input_.html @@ -75,6 +75,18 @@ function Create + +Rely on the automatic use of begin when a group is created, or use begin/end +explicitly, or add each widget to its intended parent group manually. +
+function Create
+       (Parent     : in out FLTK.Widgets.Groups.Group'Class;
+        X, Y, W, H : in     Integer;
+        Text       : in     String := "")
+    return Input;
+
+ + diff --git a/doc/fl_input_choice.html b/doc/fl_input_choice.html index 5c49a61..4f5ef44 100644 --- a/doc/fl_input_choice.html +++ b/doc/fl_input_choice.html @@ -89,6 +89,18 @@ function Create + +Rely on the automatic use of begin when a group is created, or use begin/end +explicitly, or add each widget to its intended parent group manually. +
+function Create
+       (Parent     : in out Groups.Group'Class;
+        X, Y, W, H : in     Integer;
+        Text       : in     String := "")
+    return Input_Choice;
+
+ + diff --git a/doc/fl_int_input.html b/doc/fl_int_input.html index eca4ea0..36fe4d2 100644 --- a/doc/fl_int_input.html +++ b/doc/fl_int_input.html @@ -60,6 +60,18 @@ function Create + +Rely on the automatic use of begin when a group is created, or use begin/end +explicitly, or add each widget to its intended parent group manually. +
+function Create
+       (Parent     : in out FLTK.Widgets.Groups.Group'Class;
+        X, Y, W, H : in     Integer;
+        Text       : in     String := "")
+    return Integer_Input;
+
+ + diff --git a/doc/fl_light_button.html b/doc/fl_light_button.html index 25d57e1..f80bc6a 100644 --- a/doc/fl_light_button.html +++ b/doc/fl_light_button.html @@ -59,6 +59,18 @@ function Create + +Rely on the automatic use of begin when a group is created, or use begin/end +explicitly, or add each widget to its intended parent group manually. +
+function Create
+       (Parent     : in out FLTK.Widgets.Groups.Group'Class;
+        X, Y, W, H : in     Integer;
+        Text       : in     String := "")
+    return Light_Button;
+
+ + diff --git a/doc/fl_line_dial.html b/doc/fl_line_dial.html index da3b740..d8e3e53 100644 --- a/doc/fl_line_dial.html +++ b/doc/fl_line_dial.html @@ -60,6 +60,18 @@ function Create + +Rely on the automatic use of begin when a group is created, or use begin/end +explicitly, or add each widget to its intended parent group manually. +
+function Create
+       (Parent     : in out FLTK.Widgets.Groups.Group'Class;
+        X, Y, W, H : in     Integer;
+        Text       : in     String := "")
+    return Line_Dial;
+
+ + diff --git a/doc/fl_menu_.html b/doc/fl_menu_.html index 5099d2e..e92d0ee 100644 --- a/doc/fl_menu_.html +++ b/doc/fl_menu_.html @@ -134,6 +134,18 @@ function Create + +Rely on the automatic use of begin when a group is created, or use begin/end +explicitly, or add each widget to its intended parent group manually. +
+function Create
+       (Parent     : in out FLTK.Widgets.Groups.Group'Class;
+        X, Y, W, H : in     Integer;
+        Text       : in     String := "")
+    return Menu;
+
+ + diff --git a/doc/fl_menu_bar.html b/doc/fl_menu_bar.html index fc21bf7..175881a 100644 --- a/doc/fl_menu_bar.html +++ b/doc/fl_menu_bar.html @@ -60,6 +60,18 @@ function Create + +Rely on the automatic use of begin when a group is created, or use begin/end +explicitly, or add each widget to its intended parent group manually. +
+function Create
+       (Parent     : in out FLTK.Widgets.Groups.Group'Class;
+        X, Y, W, H : in     Integer;
+        Text       : in     String := "")
+    return Menu_Bar;
+
+ + diff --git a/doc/fl_menu_button.html b/doc/fl_menu_button.html index f264774..3919095 100644 --- a/doc/fl_menu_button.html +++ b/doc/fl_menu_button.html @@ -65,6 +65,18 @@ function Create + +Rely on the automatic use of begin when a group is created, or use begin/end +explicitly, or add each widget to its intended parent group manually. +
+function Create
+       (Parent     : in out FLTK.Widgets.Groups.Group'Class;
+        X, Y, W, H : in     Integer;
+        Text       : in     String := "")
+    return Menu_Button;
+
+ + diff --git a/doc/fl_menu_window.html b/doc/fl_menu_window.html index a62f2f0..920ecdd 100644 --- a/doc/fl_menu_window.html +++ b/doc/fl_menu_window.html @@ -60,6 +60,18 @@ function Create + +Rely on the automatic use of begin when a group is created, or use begin/end +explicitly, or add each widget to its intended parent group manually. +
+function Create
+       (Parent : in out Groups.Group'Class;
+        W, H   : in     Integer;
+        Text   : in     String := "")
+    return Menu_Window;
+
+ +
 Fl_Menu_Window(int X, int Y, int W, int H, const char *L=0);
@@ -72,6 +84,18 @@ function Create
 
+ +Rely on the automatic use of begin when a group is created, or use begin/end +explicitly, or add each widget to its intended parent group manually. +
+function Create
+       (Parent     : in out Groups.Group'Class;
+        X, Y, W, H : in     Integer;
+        Text       : in     String := "")
+    return Menu_Window;
+
+ + diff --git a/doc/fl_multi_browser.html b/doc/fl_multi_browser.html index 7db4652..fdc2055 100644 --- a/doc/fl_multi_browser.html +++ b/doc/fl_multi_browser.html @@ -60,6 +60,18 @@ function Create + +Rely on the automatic use of begin when a group is created, or use begin/end +explicitly, or add each widget to its intended parent group manually. +
+function Create
+       (Parent     : in out Groups.Group'Class;
+        X, Y, W, H : in     Integer;
+        Text       : in     String := "")
+    return Multi_Browser;
+
+ + diff --git a/doc/fl_multiline_input.html b/doc/fl_multiline_input.html index fe1af2f..3c0d4f1 100644 --- a/doc/fl_multiline_input.html +++ b/doc/fl_multiline_input.html @@ -60,6 +60,18 @@ function Create + +Rely on the automatic use of begin when a group is created, or use begin/end +explicitly, or add each widget to its intended parent group manually. +
+function Create
+       (Parent     : in out FLTK.Widgets.Groups.Group'Class;
+        X, Y, W, H : in     Integer;
+        Text       : in     String := "")
+    return Multiline_Input;
+
+ + diff --git a/doc/fl_multiline_output.html b/doc/fl_multiline_output.html index eacab31..b9b0162 100644 --- a/doc/fl_multiline_output.html +++ b/doc/fl_multiline_output.html @@ -60,6 +60,18 @@ function Create + +Rely on the automatic use of begin when a group is created, or use begin/end +explicitly, or add each widget to its intended parent group manually. +
+function Create
+       (Parent     : in out FLTK.Widgets.Groups.Group'Class;
+        X, Y, W, H : in     Integer;
+        Text       : in     String := "")
+    return Multiline_Output;
+
+ + diff --git a/doc/fl_nice_slider.html b/doc/fl_nice_slider.html index c2931be..ac6cd87 100644 --- a/doc/fl_nice_slider.html +++ b/doc/fl_nice_slider.html @@ -60,6 +60,18 @@ function Create + +Rely on the automatic use of begin when a group is created, or use begin/end +explicitly, or add each widget to its intended parent group manually. +
+function Create
+       (Parent     : in out FLTK.Widgets.Groups.Group'Class;
+        X, Y, W, H : in     Integer;
+        Text       : in     String := "")
+    return Nice_Slider;
+
+ + diff --git a/doc/fl_output.html b/doc/fl_output.html index 7d42bfb..b3a6290 100644 --- a/doc/fl_output.html +++ b/doc/fl_output.html @@ -60,6 +60,18 @@ function Create + +Rely on the automatic use of begin when a group is created, or use begin/end +explicitly, or add each widget to its intended parent group manually. +
+function Create
+       (Parent     : in out FLTK.Widgets.Groups.Group'Class;
+        X, Y, W, H : in     Integer;
+        Text       : in     String := "")
+    return Output;
+
+ + diff --git a/doc/fl_overlay_window.html b/doc/fl_overlay_window.html index ef338bc..b8416f5 100644 --- a/doc/fl_overlay_window.html +++ b/doc/fl_overlay_window.html @@ -60,6 +60,18 @@ function Create + +Rely on the automatic use of begin when a group is created, or use begin/end +explicitly, or add each widget to its intended parent group manually. +
+function Create
+       (Parent : in out Groups.Group'Class;
+        W, H   : in     Integer;
+        Text   : in     String := "")
+    return Overlay_Window;
+
+ +
 Fl_Overlay_Window(int X, int Y, int W, int H, const char *l=0);
@@ -72,6 +84,18 @@ function Create
 
+ +Rely on the automatic use of begin when a group is created, or use begin/end +explicitly, or add each widget to its intended parent group manually. +
+function Create
+       (Parent     : in out Groups.Group'Class;
+        X, Y, W, H : in     Integer;
+        Text       : in     String := "")
+    return Overlay_Window;
+
+ + diff --git a/doc/fl_pack.html b/doc/fl_pack.html index 583ee08..6dc580a 100644 --- a/doc/fl_pack.html +++ b/doc/fl_pack.html @@ -65,6 +65,18 @@ function Create + +Rely on the automatic use of begin when a group is created, or use begin/end +explicitly, or add each widget to its intended parent group manually. +
+function Create
+       (Parent     : in out Groups.Group'Class;
+        X, Y, W, H : in     Integer;
+        Text       : in     String := "")
+    return Packed_Group;
+
+ + diff --git a/doc/fl_positioner.html b/doc/fl_positioner.html index c38536c..25b2154 100644 --- a/doc/fl_positioner.html +++ b/doc/fl_positioner.html @@ -60,6 +60,18 @@ function Create + +Rely on the automatic use of begin when a group is created, or use begin/end +explicitly, or add each widget to its intended parent group manually. +
+function Create
+       (Parent     : in out FLTK.Widgets.Groups.Group'Class;
+        X, Y, W, H : in     Integer;
+        Text       : in     String := "")
+    return Positioner;
+
+ + diff --git a/doc/fl_progress.html b/doc/fl_progress.html index 398c5c5..7554df4 100644 --- a/doc/fl_progress.html +++ b/doc/fl_progress.html @@ -60,6 +60,18 @@ function Create + +Rely on the automatic use of begin when a group is created, or use begin/end +explicitly, or add each widget to its intended parent group manually. +
+function Create
+       (Parent     : in out FLTK.Widgets.Groups.Group'Class;
+        X, Y, W, H : in     Integer;
+        Text       : in     String := "")
+    return Progress_Bar;
+
+ + diff --git a/doc/fl_radio_button.html b/doc/fl_radio_button.html index cf81c39..5252438 100644 --- a/doc/fl_radio_button.html +++ b/doc/fl_radio_button.html @@ -59,6 +59,18 @@ function Create + +Rely on the automatic use of begin when a group is created, or use begin/end +explicitly, or add each widget to its intended parent group manually. +
+function Create
+       (Parent     : in out FLTK.Widgets.Groups.Group'Class;
+        X, Y, W, H : in     Integer;
+        Text       : in     String := "")
+    return Radio_Button;
+
+ + diff --git a/doc/fl_radio_light_button.html b/doc/fl_radio_light_button.html index 946fc2c..8453f4d 100644 --- a/doc/fl_radio_light_button.html +++ b/doc/fl_radio_light_button.html @@ -59,6 +59,18 @@ function Create + +Rely on the automatic use of begin when a group is created, or use begin/end +explicitly, or add each widget to its intended parent group manually. +
+function Create
+       (Parent     : in out FLTK.Widgets.Groups.Group'Class;
+        X, Y, W, H : in     Integer;
+        Text       : in     String := "")
+    return Radio_Light_Button;
+
+ + diff --git a/doc/fl_radio_round_button.html b/doc/fl_radio_round_button.html index df1971c..39a5c04 100644 --- a/doc/fl_radio_round_button.html +++ b/doc/fl_radio_round_button.html @@ -59,6 +59,18 @@ function Create + +Rely on the automatic use of begin when a group is created, or use begin/end +explicitly, or add each widget to its intended parent group manually. +
+function Create
+       (Parent     : in out FLTK.Widgets.Groups.Group'Class;
+        X, Y, W, H : in     Integer;
+        Text       : in     String := "")
+    return Radio_Round_Button;
+
+ + diff --git a/doc/fl_repeat_button.html b/doc/fl_repeat_button.html index d5f7bc1..4ed4535 100644 --- a/doc/fl_repeat_button.html +++ b/doc/fl_repeat_button.html @@ -59,6 +59,18 @@ function Create + +Rely on the automatic use of begin when a group is created, or use begin/end +explicitly, or add each widget to its intended parent group manually. +
+function Create
+       (Parent     : in out FLTK.Widgets.Groups.Group'Class;
+        X, Y, W, H : in     Integer;
+        Text       : in     String := "")
+    return Repeat_Button;
+
+ + diff --git a/doc/fl_return_button.html b/doc/fl_return_button.html index 43469eb..a2c4ea9 100644 --- a/doc/fl_return_button.html +++ b/doc/fl_return_button.html @@ -59,6 +59,18 @@ function Create + +Rely on the automatic use of begin when a group is created, or use begin/end +explicitly, or add each widget to its intended parent group manually. +
+function Create
+       (Parent     : in out FLTK.Widgets.Groups.Group'Class;
+        X, Y, W, H : in     Integer;
+        Text       : in     String := "")
+    return Enter_Button;
+
+ + diff --git a/doc/fl_roller.html b/doc/fl_roller.html index 597ebe3..8e1014e 100644 --- a/doc/fl_roller.html +++ b/doc/fl_roller.html @@ -60,6 +60,18 @@ function Create + +Rely on the automatic use of begin when a group is created, or use begin/end +explicitly, or add each widget to its intended parent group manually. +
+function Create
+       (Parent     : in out FLTK.Widgets.Groups.Group'Class;
+        X, Y, W, H : in     Integer;
+        Text       : in     String := "")
+    return Roller;
+
+ + diff --git a/doc/fl_round_button.html b/doc/fl_round_button.html index 9a3deb1..c1498ed 100644 --- a/doc/fl_round_button.html +++ b/doc/fl_round_button.html @@ -59,6 +59,18 @@ function Create + +Rely on the automatic use of begin when a group is created, or use begin/end +explicitly, or add each widget to its intended parent group manually. +
+function Create
+       (Parent     : in out FLTK.Widgets.Groups.Group'Class;
+        X, Y, W, H : in     Integer;
+        Text       : in     String := "")
+    return Round_Button;
+
+ + diff --git a/doc/fl_round_clock.html b/doc/fl_round_clock.html index bbb06bb..a14ebe6 100644 --- a/doc/fl_round_clock.html +++ b/doc/fl_round_clock.html @@ -60,6 +60,18 @@ function Create + +Rely on the automatic use of begin when a group is created, or use begin/end +explicitly, or add each widget to its intended parent group manually. +
+function Create
+       (Parent     : in out FLTK.Widgets.Groups.Group'Class;
+        X, Y, W, H : in     Integer;
+        Text       : in     String := "")
+    return Round_Clock;
+
+ + diff --git a/doc/fl_scroll.html b/doc/fl_scroll.html index aa2b5f8..f264792 100644 --- a/doc/fl_scroll.html +++ b/doc/fl_scroll.html @@ -94,6 +94,18 @@ function Create + +Rely on the automatic use of begin when a group is created, or use begin/end +explicitly, or add each widget to its intended parent group manually. +
+function Create
+       (Parent     : in out Groups.Group'Class;
+        X, Y, W, H : in     Integer;
+        Text       : in     String := "")
+    return Scroll;
+
+ + diff --git a/doc/fl_scrollbar.html b/doc/fl_scrollbar.html index 67db2f8..b946944 100644 --- a/doc/fl_scrollbar.html +++ b/doc/fl_scrollbar.html @@ -60,6 +60,18 @@ function Create + +Rely on the automatic use of begin when a group is created, or use begin/end +explicitly, or add each widget to its intended parent group manually. +
+function Create
+       (Parent     : in out FLTK.Widgets.Groups.Group'Class;
+        X, Y, W, H : in     Integer;
+        Text       : in     String := "")
+    return Scrollbar;
+
+ + diff --git a/doc/fl_secret_input.html b/doc/fl_secret_input.html index 6d6504c..93dc95d 100644 --- a/doc/fl_secret_input.html +++ b/doc/fl_secret_input.html @@ -60,6 +60,18 @@ function Create + +Rely on the automatic use of begin when a group is created, or use begin/end +explicitly, or add each widget to its intended parent group manually. +
+function Create
+       (Parent     : in out FLTK.Widgets.Groups.Group'Class;
+        X, Y, W, H : in     Integer;
+        Text       : in     String := "")
+    return Secret_Input;
+
+ + diff --git a/doc/fl_select_browser.html b/doc/fl_select_browser.html index e3cb96c..ab85b10 100644 --- a/doc/fl_select_browser.html +++ b/doc/fl_select_browser.html @@ -60,6 +60,18 @@ function Create + +Rely on the automatic use of begin when a group is created, or use begin/end +explicitly, or add each widget to its intended parent group manually. +
+function Create
+       (Parent     : in out Groups.Group'Class;
+        X, Y, W, H : in     Integer;
+        Text       : in     String := "")
+    return Choice_Browser;
+
+ + diff --git a/doc/fl_simple_counter.html b/doc/fl_simple_counter.html index de14c6c..abcbef8 100644 --- a/doc/fl_simple_counter.html +++ b/doc/fl_simple_counter.html @@ -60,6 +60,18 @@ function Create + +Rely on the automatic use of begin when a group is created, or use begin/end +explicitly, or add each widget to its intended parent group manually. +
+function Create
+       (Parent     : in out FLTK.Widgets.Groups.Group'Class;
+        X, Y, W, H : in     Integer;
+        Text       : in     String := "")
+    return Simple_Counter;
+
+ + diff --git a/doc/fl_single_window.html b/doc/fl_single_window.html index 21f97db..d96f789 100644 --- a/doc/fl_single_window.html +++ b/doc/fl_single_window.html @@ -60,6 +60,18 @@ function Create + +Rely on the automatic use of begin when a group is created, or use begin/end +explicitly, or add each widget to its intended parent group manually. +
+function Create
+       (Parent : in out Groups.Group'Class;
+        W, H   : in     Integer;
+        Text   : in     String := "")
+    return Single_Window;
+
+ +
 Fl_Single_Window(int X, int Y, int W, int H, const char *L=0);
@@ -72,6 +84,18 @@ function Create
 
+ +Rely on the automatic use of begin when a group is created, or use begin/end +explicitly, or add each widget to its intended parent group manually. +
+function Create
+       (Parent     : in out Groups.Group'Class;
+        X, Y, W, H : in     Integer;
+        Text       : in     String := "")
+    return Single_Window;
+
+ + diff --git a/doc/fl_slider.html b/doc/fl_slider.html index 3b99b86..099008d 100644 --- a/doc/fl_slider.html +++ b/doc/fl_slider.html @@ -38,7 +38,7 @@   - Slider + Slider_Reference @@ -65,6 +65,18 @@ function Create + +Rely on the automatic use of begin when a group is created, or use begin/end +explicitly, or add each widget to its intended parent group manually. +
+function Create
+       (Parent     : in out FLTK.Widgets.Groups.Group'Class;
+        X, Y, W, H : in     Integer;
+        Text       : in     String := "")
+    return Slider;
+
+ +
 Fl_Slider(uchar t, int X, int Y, int W, int H, const char *L);
@@ -78,6 +90,19 @@ function Create
 
+ +Rely on the automatic use of begin when a group is created, or use begin/end +explicitly, or add each widget to its intended parent group manually. +
+function Create
+       (Parent     : in out FLTK.Widgets.Groups.Group'Class;
+        Kind       : in     Slider_Kind;
+        X, Y, W, H : in     Integer;
+        Text       : in     String := "")
+    return Slider;
+
+ + diff --git a/doc/fl_spinner.html b/doc/fl_spinner.html index 1160f07..9e3221f 100644 --- a/doc/fl_spinner.html +++ b/doc/fl_spinner.html @@ -88,6 +88,18 @@ function Create + +Rely on the automatic use of begin when a group is created, or use begin/end +explicitly, or add each widget to its intended parent group manually. +
+function Create
+       (Parent     : in out Groups.Group'Class;
+        X, Y, W, H : in     Integer;
+        Text       : in     String := "")
+    return Spinner;
+
+ + diff --git a/doc/fl_tabs.html b/doc/fl_tabs.html index 16595ed..6a29166 100644 --- a/doc/fl_tabs.html +++ b/doc/fl_tabs.html @@ -60,6 +60,18 @@ function Create + +Rely on the automatic use of begin when a group is created, or use begin/end +explicitly, or add each widget to its intended parent group manually. +
+function Create
+       (Parent     : in out Groups.Group'Class;
+        X, Y, W, H : in     Integer;
+        Text       : in     String := "")
+    return Tabbed_Group;
+
+ + diff --git a/doc/fl_text_display.html b/doc/fl_text_display.html index f51f810..e37622c 100644 --- a/doc/fl_text_display.html +++ b/doc/fl_text_display.html @@ -113,6 +113,18 @@ function Create + +Rely on the automatic use of begin when a group is created, or use begin/end +explicitly, or add each widget to its intended parent group manually. +
+function Create
+       (Parent     : in out Groups.Group'Class;
+        X, Y, W, H : in     Integer;
+        Text       : in     String := "")
+    return Text_Display;
+
+ + diff --git a/doc/fl_text_editor.html b/doc/fl_text_editor.html index ad319e8..25d75f0 100644 --- a/doc/fl_text_editor.html +++ b/doc/fl_text_editor.html @@ -104,6 +104,18 @@ function Create + +Rely on the automatic use of begin when a group is created, or use begin/end +explicitly, or add each widget to its intended parent group manually. +
+function Create
+       (Parent     : in out Groups.Group'Class;
+        X, Y, W, H : in     Integer;
+        Text       : in     String := "")
+    return Text_Editor;
+
+ + diff --git a/doc/fl_tile.html b/doc/fl_tile.html index 26f8290..e7509cb 100644 --- a/doc/fl_tile.html +++ b/doc/fl_tile.html @@ -60,6 +60,18 @@ function Create + +Rely on the automatic use of begin when a group is created, or use begin/end +explicitly, or add each widget to its intended parent group manually. +
+function Create
+       (Parent     : in out Groups.Group'Class;
+        X, Y, W, H : in     Integer;
+        Text       : in     String := "")
+    return Tiled_Group;
+
+ + diff --git a/doc/fl_toggle_button.html b/doc/fl_toggle_button.html index 6d71762..2fec723 100644 --- a/doc/fl_toggle_button.html +++ b/doc/fl_toggle_button.html @@ -59,6 +59,18 @@ function Create + +Rely on the automatic use of begin when a group is created, or use begin/end +explicitly, or add each widget to its intended parent group manually. +
+function Create
+       (Parent     : in out FLTK.Widgets.Groups.Group'Class;
+        X, Y, W, H : in     Integer;
+        Text       : in     String := "")
+    return Toggle_Button;
+
+ + diff --git a/doc/fl_valuator.html b/doc/fl_valuator.html index c6965a2..50a0dd3 100644 --- a/doc/fl_valuator.html +++ b/doc/fl_valuator.html @@ -60,6 +60,18 @@ function Create + +Rely on the automatic use of begin when a group is created, or use begin/end +explicitly, or add each widget to its intended parent group manually. +
+function Create
+       (Parent     : in out FLTK.Widgets.Groups.Group'Class;
+        X, Y, W, H : in     Integer;
+        Text       : in     String := "")
+    return Valuator;
+
+ + diff --git a/doc/fl_value_input.html b/doc/fl_value_input.html index 778d37e..00fc50e 100644 --- a/doc/fl_value_input.html +++ b/doc/fl_value_input.html @@ -78,6 +78,18 @@ function Create + +Rely on the automatic use of begin when a group is created, or use begin/end +explicitly, or add each widget to its intended parent group manually. +
+function Create
+       (Parent     : in out FLTK.Widgets.Groups.Group'Class;
+        X, Y, W, H : in     Integer;
+        Text       : in     String := "")
+    return Value_Input;
+
+ + diff --git a/doc/fl_value_output.html b/doc/fl_value_output.html index bb30970..5a1bf12 100644 --- a/doc/fl_value_output.html +++ b/doc/fl_value_output.html @@ -60,6 +60,18 @@ function Create + +Rely on the automatic use of begin when a group is created, or use begin/end +explicitly, or add each widget to its intended parent group manually. +
+function Create
+       (Parent     : in out FLTK.Widgets.Groups.Group'Class;
+        X, Y, W, H : in     Integer;
+        Text       : in     String := "")
+    return Value_Output;
+
+ + diff --git a/doc/fl_value_slider.html b/doc/fl_value_slider.html index 80bdf33..b96e4a2 100644 --- a/doc/fl_value_slider.html +++ b/doc/fl_value_slider.html @@ -60,6 +60,18 @@ function Create + +Rely on the automatic use of begin when a group is created, or use begin/end +explicitly, or add each widget to its intended parent group manually. +
+function Create
+       (Parent     : in out FLTK.Widgets.Groups.Group'Class;
+        X, Y, W, H : in     Integer;
+        Text       : in     String := "")
+    return Value_Slider;
+
+ + diff --git a/doc/fl_widget.html b/doc/fl_widget.html index 88b8aad..cb21c4d 100644 --- a/doc/fl_widget.html +++ b/doc/fl_widget.html @@ -70,6 +70,18 @@ function Create + +Rely on the automatic use of begin when a group is created, or use begin/end +explicitly, or add each widget to its intended parent group manually. +
+function Create
+       (Parent     : in out FLTK.Widgets.Groups.Group'Class;
+        X, Y, W, H : in     Integer;
+        Text       : in     String := "")
+    return Widget;
+
+ + diff --git a/doc/fl_window.html b/doc/fl_window.html index 93ab5fd..8376cf0 100644 --- a/doc/fl_window.html +++ b/doc/fl_window.html @@ -98,6 +98,18 @@ function Create + +Rely on the automatic use of begin when a group is created, or use begin/end +explicitly, or add each widget to its intended parent group manually. +
+function Create
+       (Parent : in out Groups.Group'Class;
+        W, H   : in     Integer;
+        Text   : in     String := "")
+    return Window;
+
+ +
 Fl_Window(int x, int y, int w, int h, const char *title=0);
@@ -110,6 +122,18 @@ function Create
 
+ +Rely on the automatic use of begin when a group is created, or use begin/end +explicitly, or add each widget to its intended parent group manually. +
+function Create
+       (Parent     : in out Groups.Group'Class;
+        X, Y, W, H : in     Integer;
+        Text       : in     String := "")
+    return Window;
+
+ + diff --git a/doc/fl_wizard.html b/doc/fl_wizard.html index bcee170..c7295fd 100644 --- a/doc/fl_wizard.html +++ b/doc/fl_wizard.html @@ -60,6 +60,18 @@ function Create + +Rely on the automatic use of begin when a group is created, or use begin/end +explicitly, or add each widget to its intended parent group manually. +
+function Create
+       (Parent     : in out Groups.Group'Class;
+        X, Y, W, H : in     Integer;
+        Text       : in     String := "")
+    return Wizard;
+
+ + -- cgit