From ba29d58fb21f0f376dd4c09df61b4e1d38cb1226 Mon Sep 17 00:00:00 2001 From: Jedidiah Barber Date: Sat, 30 Nov 2024 15:13:42 +1300 Subject: Error/Warning/Fatal added to FLTK.Errors --- doc/fl.html | 88 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 88 insertions(+) (limited to 'doc/fl.html') diff --git a/doc/fl.html b/doc/fl.html index 3547287..09b1a3b 100644 --- a/doc/fl.html +++ b/doc/fl.html @@ -24,6 +24,11 @@ FLTK + +   + FLTK.Errors + +   FLTK.Event @@ -226,6 +231,89 @@ Mouse_Cursor + +   + Error_Function + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Attributes
+static void (*atclose)(Fl_Window *, void *);
+
Deprecated, set the callback for the Window instead
+static char const * const clipboard_image = "image";
+
 
+static char const * const clipboard_plain_text = "text/plain";
+
 
+static void (*error)(const char *, ...) = ::error;
+
+procedure Default_Error
+       (Message : in String);
+
+Current_Error : Error_Function := Default_Error'Access;
+
(In FLTK.Errors)
+static void (*fatal)(const char *, ...) = ::fatal;
+
+procedure Default_Fatal
+       (Message : in String);
+
+Current_Fatal : Error_Function := Default_Fatal'Access;
+
(In FLTK.Errors)
+static const char * const help = helpmsg + 13;
+
 
+static void (*idle)();
+
Should not be used directly
+static void (*warning)(const char *, ...) = ::warning;
+
+procedure Default_Warning
+       (Message : in String);
+
+Current_Warning : Error_Function := Default_Warning'Access;
+
(In FLTK.Errors)
-- cgit