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)));
57FL_EXPORT
int fl_ask(const
char *, ...)
__fl_attr((__format__(__printf__, 1, 2), __deprecated__));
59FL_EXPORT
int fl_choice(const
char *q, const
char *b0, const
char *b1, const
char *b2, ...)
60 __fl_attr((__format__(__printf__, 1, 5)));
61FL_EXPORT const
char *fl_input(const
char *
label, const
char *deflt = 0, ...)
__fl_attr((__format__(__printf__, 1, 3)));
62FL_EXPORT const
char *fl_password(const
char *
label, const
char *deflt = 0, ...)
63 __fl_attr((__format__(__printf__, 1, 3)));
68FL_EXPORT
int fl_choice_n(const
char *q, const
char *b0, const
char *b1, const
char *b2, ...)
69 __fl_attr((__format__(__printf__, 1, 5)));
73FL_EXPORT const
char *fl_input(
int maxchar, const
char *
label, const
char *deflt = 0, ...)
74 __fl_attr((__format__(__printf__, 2, 4)));
76FL_EXPORT const
char *fl_password(
int maxchar, const
char *
label, const
char *deflt = 0, ...)
77 __fl_attr((__format__(__printf__, 2, 4)));
86FL_EXPORT std::string fl_input_str(
int maxchar,
const char *
label,
const char *deflt = 0, ...)
87 __fl_attr((__format__(__printf__, 2, 4)));
89FL_EXPORT std::
string fl_input_str(
int &ret,
int maxchar, const
char *
label, const
char *deflt = 0, ...)
90 __fl_attr((__format__(__printf__, 3, 5)));
92FL_EXPORT std::
string fl_password_str(
int maxchar, const
char *
label, const
char *deflt = 0, ...)
93 __fl_attr((__format__(__printf__, 2, 4)));
95FL_EXPORT std::
string fl_password_str(
int &ret,
int maxchar, const
char *
label, const
char *deflt = 0, ...)
96 __fl_attr((__format__(__printf__, 3, 5)));
101extern FL_EXPORT
Fl_Font fl_message_font_;
104 fl_message_font_ = f;
105 fl_message_size_ = s;
128extern FL_EXPORT
const char *
fl_no;
129extern FL_EXPORT
const char *
fl_yes;
130extern FL_EXPORT
const char *
fl_ok;
132extern 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:1057
int Fl_Fontsize
Size of a font in pixels.
Definition Enumerations.H:1086
Fl_Beep
Defines the different system beeps available.
Definition fl_ask.H:40
@ FL_BEEP_MESSAGE
Message beep.
Definition fl_ask.H:42
@ FL_BEEP_NOTIFICATION
Notification beep.
Definition fl_ask.H:46
@ FL_BEEP_QUESTION
Question beep.
Definition fl_ask.H:44
@ FL_BEEP_ERROR
Error beep.
Definition fl_ask.H:43
@ FL_BEEP_PASSWORD
Password beep.
Definition fl_ask.H:45
@ FL_BEEP_DEFAULT
Default beep.
Definition fl_ask.H:41
This file defines compiler-specific macros.
#define __fl_attr(x)
This section lists macros for Doxygen documentation only.
Definition fl_attr.h:55
const char * fl_yes
string pointer used in common dialogs, you can change it to another language
Definition fl_ask.cxx:64
const char * fl_close
string pointer used in common dialogs, you can change it to another language
Definition fl_ask.cxx:67
void fl_message_position(const int x, const int y, const int center=0)
Sets the preferred position for the message box used in many common dialogs like fl_message(),...
Definition fl_ask.cxx:540
const char * fl_ok
string pointer used in common dialogs, you can change it to another language
Definition fl_ask.cxx:65
int const char const char int const char const char 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:289
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:671
void fl_beep(int type=FL_BEEP_DEFAULT)
Emits a system beep.
Definition fl_ask.cxx:96
void fl_message_title(const char *title)
Sets the title of the dialog window used in many common dialogs.
Definition fl_ask.cxx:650
const char * fl_cancel
string pointer used in common dialogs, you can change it to another language
Definition fl_ask.cxx:66
void fl_message_icon_label(const char *str)
Sets the icon label of the dialog window used in many common dialogs.
Definition fl_ask.cxx:695
const char * fl_no
string pointer used in common dialogs, you can change it to another language
Definition fl_ask.cxx:63
int fl_message_hotspot(void)
Gets whether or not to move the message box used in many common dialogs like fl_message(),...
Definition fl_ask.cxx:631