From edbb0173d98b170ef75eda0149a132b9836e239d Mon Sep 17 00:00:00 2001 From: Jedidiah Barber Date: Mon, 25 Nov 2024 16:17:52 +1300 Subject: Package renames for avoiding name clashes and abbreviations --- doc/common_dialogs.html | 266 ------------------------------------------------ 1 file changed, 266 deletions(-) delete mode 100644 doc/common_dialogs.html (limited to 'doc/common_dialogs.html') diff --git a/doc/common_dialogs.html b/doc/common_dialogs.html deleted file mode 100644 index a35be43..0000000 --- a/doc/common_dialogs.html +++ /dev/null @@ -1,266 +0,0 @@ - - - - - - - Common Dialogs Binding Map - - - - - - -

Common Dialogs Binding Map

- - -Back to Index - - - - - - - - - - -
Package name
Fl_AskFLTK.Dialogs
- - - - - - - - - - - - - - - - - - - - - - - - - - -
Types
Fl_BeepBeep_Kind
 Choice
 RGB_Float
 RGB_Int
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Functions and Procedures
-void fl_alert(const char *fmt,...);
-
-procedure Alert
-       (Message : String);
-
-int fl_ask(const char *fmt,...);
-
Present but disabled due to fl_ask being deprecated
-void fl_beep(int type);
-
-procedure Beep
-       (Kind : in Beep_Kind);
-
-int fl_choice(const char *fmt, const char *b0, const char *b1, const char *b2,...);
-
-function Three_Way_Choice
-       (Message, Button1, Button2, Button3 : in String)
-    return Choice;
-
-int fl_color_chooser(const char *name, double &r, double &g, double &b, int cmode);
-
-function Color_Chooser
-       (Title   : in     String;
-        R, G, B : in out RGB_Float;
-        Mode    : in     FLTK.Widgets.Groups.Color_Choosers.Color_Mode :=
-            FLTK.Widgets.Groups.Color_Choosers.RGB)
-    return Boolean;
-
-int fl_color_chooser(const char *name, uchar &r, uchar &g, uchar &b, int cmode);
-
-function Color_Chooser
-       (Title   : in     String;
-        R, G, B : in out RGB_Int;
-        Mode    : in     FLTK.Widgets.Groups.Color_Choosers.Color_Mode :=
-            FLTK.Widgets.Groups.Color_Choosers.RGB)
-    return Boolean;
-
-char * fl_dir_chooser(const char *message, const char *fname, int relative);
-
-function Dir_Chooser
-       (Message, Default : in String;
-        Relative         : in Boolean := False)
-    return String;
-
-char * fl_file_chooser(const char *message, const char *pat, const char *fname, int relative);
-
-function File_Chooser
-       (Message, Filter_Pattern, Default : in String;
-        Relative                         : in Boolean := False)
-    return String;
-
-void fl_file_chooser_callback(void(*cb)(const char *));
-
 
-void fl_file_chooser_ok_label(const char *l);
-
 
-const char * fl_input(const char *fmt, const char *defstr,...);
-
-function Text_Input
-       (Message : in String;
-        Default : in String := "")
-    return String;
-
-void fl_message(const char *fmt,...);
-
-procedure Message_Box
-       (Message : in String);
-
-void fl_message_font(Fl_Font f, Fl_Fontsize s);
-
-procedure Set_Message_Font
-       (Font : in Font_Kind;
-        Size : in Font_Size);
-
-void fl_message_hotspot(int enable);
-
-procedure Set_Hotspot
-       (To : in Boolean);
-
-int fl_message_hotspot(void);
-
-function Get_Hotspot
-    return Boolean;
-
-Fl_Widget * fl_message_icon();
-
-function Get_Message_Icon
-    return FLTK.Widgets.Boxes.Box_Reference;
-
-void fl_message_title(const char *title);
-
-procedure Set_Message_Title
-       (To : in String);
-
-void fl_message_title_default(const char *title);
-
-procedure Set_Message_Title_Default
-       (To : in String);
-
-const char * fl_password(const char *fmt, const char *defstr,...);
-
-function Password
-       (Message : in String;
-        Default : in String := "")
-    return String;
-
- - - - - -- cgit