From 75a8e0e68e4980647a6d588a15bb300d132b6650 Mon Sep 17 00:00:00 2001 From: Jedidiah Barber Date: Sun, 12 Jan 2025 18:49:32 +1300 Subject: Fixed several preprocessor ABI version issues --- doc/fl_group.html | 25 +++++++++++++++++++------ doc/fl_text_editor.html | 23 ++++++++++++++++++----- doc/fl_tooltip.html | 48 +++++++++++++++++++++++++++++++++++++++++------- 3 files changed, 78 insertions(+), 18 deletions(-) (limited to 'doc') diff --git a/doc/fl_group.html b/doc/fl_group.html index da6f604..2b97b02 100644 --- a/doc/fl_group.html +++ b/doc/fl_group.html @@ -51,6 +51,11 @@ Extended_Index + + int + Clip_Mode + +   Cursor @@ -113,7 +118,7 @@ procedure Set_Current
 Fl_Widget *& _ddfdesign_kludge();
 
-  +Intentionally left unbound. @@ -221,16 +226,24 @@ procedure Clear
-void clip_children(int c);
+unsigned int clip_children();
+
+
+function Get_Clip_Mode
+       (This : in Group)
+    return Clip_Mode;
 
-TBA
-unsigned int clip_children();
+void clip_children(int c);
+
+
+procedure Set_Clip_Mode
+       (This : in out Group;
+        Mode : in     Clip_Mode := Clip);
 
-TBA @@ -265,7 +278,7 @@ void focus(Fl_Widget *W);
 void forms_end();
 
-  +Intentionally left unbound. diff --git a/doc/fl_text_editor.html b/doc/fl_text_editor.html index 79c9488..ad319e8 100644 --- a/doc/fl_text_editor.html +++ b/doc/fl_text_editor.html @@ -42,10 +42,15 @@ -   + int Insert_Mode + + int + Tab_Navigation + + Key_Func Key_Func @@ -575,16 +580,24 @@ procedure Remove_Key_Binding
-void tab_nav(int val);
+int tab_nav() const;
+
+
+function Get_Tab_Mode
+       (This : in Text_Editor)
+    return Tab_Navigation;
 
-TBA
-int tab_nav() const;
+void tab_nav(int val);
+
+
+procedure Set_Tab_Mode
+       (This : in out Text_Editor;
+        To   : in     Tab_Navigation);
 
-TBA diff --git a/doc/fl_tooltip.html b/doc/fl_tooltip.html index b826f53..48b9d95 100644 --- a/doc/fl_tooltip.html +++ b/doc/fl_tooltip.html @@ -26,8 +26,30 @@ + - + + + + + + + + + + + + +
Functions and Procedures
Static Attributes
+static void(*enter)(Fl_Widget *w) = 0;
+
Intentionally left unbound.
+static void(*exit)(Fl_Widget *w) = 0;
+
Intentionally left unbound.
+ + + + + - + @@ -102,7 +126,7 @@ static void enable(int b=1); @@ -118,7 +142,8 @@ function Is_Enabled - + @@ -199,7 +227,10 @@ function Get_Margin_Width - + @@ -256,7 +287,10 @@ function Get_Wrap_Width - +
Static Functions and Procedures
@@ -93,7 +115,9 @@ procedure Set_Delay
 
 static void disable();
 
See static void enable(int b=1);
+procedure Disable;
+
 procedure Set_Enabled
-       (To : in Boolean);
+       (To : in Boolean := True);
 
-static void enter_area(Fl_Widget *w, int X, int Y, int W, int H, const char *tip);
+static void enter_area(Fl_Widget *w, int X, int Y, int W, int H,
+    const char *tip);
 
 procedure Enter_Area
@@ -182,7 +207,10 @@ function Get_Margin_Height
 
 static void margin_height(int v);
 
Disabled pending ABI version check bugfix in FLTK
+procedure Set_Margin_Height
+       (To : in Natural);
+
 static void margin_width(int v);
 
Disabled pending ABI version check bugfix in FLTK
+procedure Set_Margin_Width
+       (To : in Natural);
+
 static void wrap_width(int v);
 
Disabled pending ABI version check bugfix in FLTK
+procedure Set_Wrap_Width
+       (To : in Natural);
+
-- cgit