From 36e546c1c9a9bb8e778fb637c17f94390b4d23c2 Mon Sep 17 00:00:00 2001 From: Jedidiah Barber Date: Sat, 15 Feb 2025 14:29:16 +1300 Subject: Reorganising Fl / FLTK, improving enum docs --- doc/fl.html | 123 +++++++++--------------------------------------------------- 1 file changed, 18 insertions(+), 105 deletions(-) (limited to 'doc/fl.html') diff --git a/doc/fl.html b/doc/fl.html index 7803d33..7d4d3ee 100644 --- a/doc/fl.html +++ b/doc/fl.html @@ -37,30 +37,20 @@ - enum + enum {
+ FL_MENU_INACTIVE = 1,
+ FL_MENU_TOGGLE = 2,
+ FL_MENU_VALUE = 4,
+ FL_MENU_RADIO = 8,
+ FL_MENU_INVISIBLE = 0x10,
+ FL_SUBMENU_POINTER = 0x20,
+ FL_SUBMENU = 0x40,
+ FL_MENU_DIVIDER = 0x80,
+ FL_MENU_HORIZONTAL = 0x100 }
+ Menu_Flag - - Fl_Abort_Handler -   - - - - Fl_Args_Handler -   - - - - Fl_Atclose_Handler -   - - - - Fl_Old_Idle_Handler -   - - @@ -77,34 +67,6 @@ - - - - - - - - - - - - - - - - - - -
Static Attributes
-static void (*atclose)(Fl_Window *, void *);
-
Deprecated, set the callback for the Window instead.
-static const char * const help = helpmsg + 13;
-
 
-static void (*idle)();
-
Should not be used directly.
- - - @@ -141,27 +103,6 @@ function API_Version - - - - - - - - - - - - - - - - - - - - @@ -257,6 +191,13 @@ static void delete_widget(Fl_Widget *w); + + + + + - - - - - - - - - - - - - - - @@ -397,13 +317,6 @@ function Version - - - - -
Static Functions and Procedures
-static int arg(int argc, char **argv, int &i);
-
 
-static int args(int argc, char **argv, int &i, Fl_Args_Handler cb=0);
-
 
-static void args(int argc, char **argv);
-
 
 static void awake(void *message=0);
 
@@ -171,13 +112,6 @@ procedure Awake;
 
   
-static int awake(Fl_Awake_Handler cb, void *message=0);
-
 
 static void cairo_autolink_context(bool alink);
 
 
+static void do_widget_deletion();
+
Marked as internal use only.
 static void flush();
 
@@ -327,27 +268,6 @@ function Run
 
   
-static void set_abort(Fl_Abort_Handler f);
-
Marked as backwards compatibility only.
-static void set_atclose(Fl_Atclose_Handler f);
-
Marked as backwards compatibility only.
-static void set_idle(Fl_Old_Idle_Handler cb);
-
Deprecated, use add_idle / Add_Idle instead.
 static void * thread_message();
 
 
-static int visual(int);
-
 
 static int wait();
 
-- 
cgit