44# define __fl_attr(x) __attribute__ (x)
50FL_EXPORT
void fl_message(
const char *,...) __fl_attr((__format__ (__printf__, 1, 2)));
51FL_EXPORT
void fl_alert(const
char *,...) __fl_attr((__format__ (__printf__, 1, 2)));
55FL_EXPORT
int fl_ask(const
char *,...) __fl_attr((__format__ (__printf__, 1, 2), __deprecated__));
56FL_EXPORT
int fl_choice(const
char *q,const
char *b0,const
char *b1,const
char *b2,...) __fl_attr((__format__ (__printf__, 1, 5)));
57FL_EXPORT const
char *
fl_input(const
char *
label, const
char *deflt = 0, ...) __fl_attr((__format__ (__printf__, 1, 3)));
58FL_EXPORT const
char *
fl_password(const
char *
label, const
char *deflt = 0, ...) __fl_attr((__format__ (__printf__, 1, 3)));
61FL_EXPORT
int fl_choice_n(const
char *q,const
char *b0,const
char *b1,const
char *b2,...) __fl_attr((__format__ (__printf__, 1, 5)));
64extern FL_EXPORT
Fl_Font fl_message_font_;
67 fl_message_font_ = f; fl_message_size_ = s;}
76extern FL_EXPORT
const char*
fl_no;
77extern FL_EXPORT
const char*
fl_yes;
78extern FL_EXPORT
const char*
fl_ok;
80extern FL_EXPORT
const char*
fl_close;
This file contains type definitions and general enumerations.
int Fl_Font
A font number is an index into the internal font table.
Definition: Enumerations.H:875
int Fl_Fontsize
Size of a font in pixels.
Definition: Enumerations.H:904
Fl_Beep
Different system beeps available.
Definition: fl_ask.H:32
@ FL_BEEP_MESSAGE
Message beep.
Definition: fl_ask.H:34
@ FL_BEEP_NOTIFICATION
Notification beep.
Definition: fl_ask.H:38
@ FL_BEEP_QUESTION
Question beep.
Definition: fl_ask.H:36
@ FL_BEEP_ERROR
Error beep.
Definition: fl_ask.H:35
@ FL_BEEP_PASSWORD
Password beep.
Definition: fl_ask.H:37
@ FL_BEEP_DEFAULT
Default beep.
Definition: fl_ask.H:33
FL_EXPORT const char * fl_yes
string pointer used in common dialogs, you can change it to another language
Definition: fl_ask.cxx:278
const char * fl_input(const char *fmt, const char *defstr,...)
Shows an input dialog displaying the fmt message.
Definition: fl_ask.cxx:561
FL_EXPORT const char * fl_close
string pointer used in common dialogs, you can change it to another language
Definition: fl_ask.cxx:281
int fl_choice(const char *fmt, const char *b0, const char *b1, const char *b2,...)
Shows a dialog displaying the printf style fmt message, this dialog features up to 3 customizable cho...
Definition: fl_ask.cxx:465
FL_EXPORT const char * fl_ok
string pointer used in common dialogs, you can change it to another language
Definition: fl_ask.cxx:279
FL_EXPORT int FL_EXPORT const char FL_EXPORT const char FL_EXPORT int FL_EXPORT Fl_Widget * fl_message_icon()
Gets the Fl_Box icon container of the current default dialog used in many common dialogs like fl_mess...
Definition: fl_ask.cxx:533
const char * fl_password(const char *fmt, const char *defstr,...)
Shows an input dialog displaying the fmt message.
Definition: fl_ask.cxx:587
void fl_message(const char *fmt,...)
Shows an information message dialog box.
Definition: fl_ask.cxx:344
FL_EXPORT void fl_message_title_default(const char *title)
Sets the default title of the dialog window used in many common dialogs.
Definition: fl_ask.cxx:663
FL_EXPORT void fl_message_hotspot(int enable)
Sets whether or not to move the common message box used in many common dialogs like fl_message(),...
Definition: fl_ask.cxx:611
FL_EXPORT void fl_beep(int type=FL_BEEP_DEFAULT)
Emits a system beep message.
Definition: fl_ask.cxx:289
int fl_choice_n(const char *fmt, const char *b0, const char *b1, const char *b2,...)
Like fl_choice() but with extended (negative) return values.
Definition: fl_ask.cxx:511
FL_EXPORT void fl_message_title(const char *title)
Sets the title of the dialog window used in many common dialogs.
Definition: fl_ask.cxx:642
FL_EXPORT const char * fl_cancel
string pointer used in common dialogs, you can change it to another language
Definition: fl_ask.cxx:280
int fl_ask(const char *fmt,...)
Shows a dialog displaying the fmt message, this dialog features 2 yes/no buttons.
Definition: fl_ask.cxx:396
void fl_alert(const char *fmt,...)
Shows an alert message dialog box.
Definition: fl_ask.cxx:367
FL_EXPORT const char * fl_no
string pointer used in common dialogs, you can change it to another language
Definition: fl_ask.cxx:277