summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorJedidiah Barber <contact@jedbarber.id.au>2025-01-12 18:49:32 +1300
committerJedidiah Barber <contact@jedbarber.id.au>2025-01-12 18:49:32 +1300
commit75a8e0e68e4980647a6d588a15bb300d132b6650 (patch)
treea728a05b9a4db547ad0886bb6975f8e0729c919c /doc
parent8b01c23e0ba1fd22e0bfc797d6ca540c79079674 (diff)
Fixed several preprocessor ABI version issues
Diffstat (limited to 'doc')
-rw-r--r--doc/fl_group.html25
-rw-r--r--doc/fl_text_editor.html23
-rw-r--r--doc/fl_tooltip.html48
3 files changed, 78 insertions, 18 deletions
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
@@ -52,6 +52,11 @@
</tr>
<tr>
+ <td>int</td>
+ <td>Clip_Mode</td>
+ </tr>
+
+ <tr>
<td>&nbsp;</td>
<td>Cursor</td>
</tr>
@@ -113,7 +118,7 @@ procedure Set_Current
<td><pre>
Fl_Widget *& _ddfdesign_kludge();
</pre></td>
-<td>&nbsp;</td>
+<td>Intentionally left unbound.</td>
</tr>
<tr>
@@ -221,16 +226,24 @@ procedure Clear
<tr>
<td><pre>
-void clip_children(int c);
+unsigned int clip_children();
+</pre></td>
+<td><pre>
+function Get_Clip_Mode
+ (This : in Group)
+ return Clip_Mode;
</pre></td>
-<td>TBA</td>
</tr>
<tr>
<td><pre>
-unsigned int clip_children();
+void clip_children(int c);
+</pre></td>
+<td><pre>
+procedure Set_Clip_Mode
+ (This : in out Group;
+ Mode : in Clip_Mode := Clip);
</pre></td>
-<td>TBA</td>
</tr>
<tr>
@@ -265,7 +278,7 @@ void focus(Fl_Widget *W);
<td><pre>
void forms_end();
</pre></td>
-<td>&nbsp;</td>
+<td>Intentionally left unbound.</td>
</tr>
<tr>
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,11 +42,16 @@
</tr>
<tr>
- <td>&nbsp;</td>
+ <td>int</td>
<td>Insert_Mode</td>
</tr>
<tr>
+ <td>int</td>
+ <td>Tab_Navigation</td>
+ </tr>
+
+ <tr>
<td>Key_Func</td>
<td>Key_Func</td>
</tr>
@@ -575,16 +580,24 @@ procedure Remove_Key_Binding
<tr>
<td><pre>
-void tab_nav(int val);
+int tab_nav() const;
+</pre></td>
+<td><pre>
+function Get_Tab_Mode
+ (This : in Text_Editor)
+ return Tab_Navigation;
</pre></td>
-<td>TBA</td>
</tr>
<tr>
<td><pre>
-int tab_nav() const;
+void tab_nav(int val);
+</pre></td>
+<td><pre>
+procedure Set_Tab_Mode
+ (This : in out Text_Editor;
+ To : in Tab_Navigation);
</pre></td>
-<td>TBA</td>
</tr>
</table>
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 @@
</table>
+
<table class="function">
- <tr><th colspan="2">Functions and Procedures</th></tr>
+ <tr><th colspan="2">Static Attributes</th></tr>
+
+ <tr>
+<td><pre>
+static void(*enter)(Fl_Widget *w) = 0;
+</pre></td>
+<td>Intentionally left unbound.</td>
+ </tr>
+
+ <tr>
+<td><pre>
+static void(*exit)(Fl_Widget *w) = 0;
+</pre></td>
+<td>Intentionally left unbound.</td>
+ </tr>
+
+</table>
+
+
+
+<table class="function">
+ <tr><th colspan="2">Static Functions and Procedures</th></tr>
<tr>
<td><pre>
@@ -93,7 +115,9 @@ procedure Set_Delay
<td><pre>
static void disable();
</pre></td>
-<td>See static void enable(int b=1);</td>
+<td><pre>
+procedure Disable;
+</pre></td>
</tr>
<tr>
@@ -102,7 +126,7 @@ static void enable(int b=1);
</pre></td>
<td><pre>
procedure Set_Enabled
- (To : in Boolean);
+ (To : in Boolean := True);
</pre></td>
</tr>
@@ -118,7 +142,8 @@ function Is_Enabled
<tr>
<td><pre>
-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);
</pre></td>
<td><pre>
procedure Enter_Area
@@ -182,7 +207,10 @@ function Get_Margin_Height
<td><pre>
static void margin_height(int v);
</pre></td>
-<td>Disabled pending ABI version check bugfix in FLTK</td>
+<td><pre>
+procedure Set_Margin_Height
+ (To : in Natural);
+</pre></td>
</tr>
<tr>
@@ -199,7 +227,10 @@ function Get_Margin_Width
<td><pre>
static void margin_width(int v);
</pre></td>
-<td>Disabled pending ABI version check bugfix in FLTK</td>
+<td><pre>
+procedure Set_Margin_Width
+ (To : in Natural);
+</pre></td>
</tr>
<tr>
@@ -256,7 +287,10 @@ function Get_Wrap_Width
<td><pre>
static void wrap_width(int v);
</pre></td>
-<td>Disabled pending ABI version check bugfix in FLTK</td>
+<td><pre>
+procedure Set_Wrap_Width
+ (To : in Natural);
+</pre></td>
</tr>
</table>