summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorJedidiah Barber <contact@jedbarber.id.au>2024-02-06 21:53:06 +1300
committerJedidiah Barber <contact@jedbarber.id.au>2024-02-06 21:53:06 +1300
commitc47bea48a24e51e178354f3e3bb53d8b9964b769 (patch)
tree0235aa00983da4722cc49de315f76d3ea3978026 /doc
parentfeef4803ef4cabd6190e5a76c34ccc9866da380d (diff)
Moved mouse cursors and added cursor functions to FLTK.Draw
Diffstat (limited to 'doc')
-rw-r--r--doc/fl.html5
-rw-r--r--doc/fl_draw.html13
-rw-r--r--doc/fl_window.html9
3 files changed, 19 insertions, 8 deletions
diff --git a/doc/fl.html b/doc/fl.html
index bb32af7..254a06e 100644
--- a/doc/fl.html
+++ b/doc/fl.html
@@ -222,6 +222,11 @@
<td>&nbsp;</td>
</tr>
+ <tr>
+ <td>Fl_Cursor</td>
+ <td>Mouse_Cursor</td>
+ </tr>
+
</table>
diff --git a/doc/fl_draw.html b/doc/fl_draw.html
index 3725377..71da104 100644
--- a/doc/fl_draw.html
+++ b/doc/fl_draw.html
@@ -269,11 +269,22 @@ procedure Set_Color
<tr>
<td><pre>
void fl_cursor(Fl_Cursor);
+</pre></td>
+<td><pre>
+procedure Set_Cursor
+ (To : in Mouse_Cursor);
+</pre></td>
+ </tr>
+ <tr>
+<td><pre>
void fl_cursor(Fl_Cursor, Fl_Color fg, Fl_Color bg=FL_WHITE);
</pre></td>
<td><pre>
-
+procedure Set_Cursor
+ (To : in Mouse_Cursor;
+ Fore : in Color;
+ Back : in Color := White_Color);
</pre></td>
</tr>
diff --git a/doc/fl_window.html b/doc/fl_window.html
index bfba28f..518dc97 100644
--- a/doc/fl_window.html
+++ b/doc/fl_window.html
@@ -52,11 +52,6 @@
<td>Modal_State</td>
</tr>
- <tr>
- <td>&nbsp;</td>
- <td>Cursor</td>
- </tr>
-
</table>
@@ -159,7 +154,7 @@ void cursor(Fl_Cursor);
<td><pre>
procedure Set_Cursor
(This : in out Window;
- To : in Cursor);
+ To : in Mouse_Cursor);
</pre></td>
</tr>
@@ -211,7 +206,7 @@ void default_cursor(Fl_Cursor);
<td><pre>
procedure Set_Default_Cursor
(This : in out Window;
- To : in Cursor);
+ To : in Mouse_Cursor);
</pre></td>
</tr>