Classes |
class | Fl_Color_Chooser |
| The Fl_Color_Chooser widget provides a standard RGB color chooser. More...
|
class | Fl_File_Chooser |
| The Fl_File_Chooser widget displays a standard file selection dialog that supports various selection modes. More...
|
Functions |
void | fl_alert (const char *fmt,...) |
| Shows an alert message dialog box.
|
int | fl_ask (const char *fmt,...) |
| Shows a dialog displaying the fmt message, this dialog features 2 yes/no buttons.
|
void | fl_beep (int type) |
| Emits a system beep message.
|
int | fl_choice (const char *fmt, const char *b0, const char *b1, const char *b2,...) |
| Shows a dialog displaying the fmt message, this dialog features up to 3 customizable choice buttons.
|
int | Fl_Color_Chooser::fl_color_chooser (const char *name, double &r, double &g, double &b, int cmode) |
| Pops up a window to let the user pick an arbitrary RGB color.
|
int | Fl_Color_Chooser::fl_color_chooser (const char *name, uchar &r, uchar &g, uchar &b, int cmode) |
| Pops up a window to let the user pick an arbitrary RGB color.
|
char * | Fl_File_Chooser::fl_dir_chooser (const char *message, const char *fname, int relative) |
char * | Fl_File_Chooser::fl_file_chooser (const char *message, const char *pat, const char *fname, int relative) |
void | Fl_File_Chooser::fl_file_chooser_callback (void(*cb)(const char *)) |
void | Fl_File_Chooser::fl_file_chooser_ok_label (const char *l) |
const char * | fl_input (const char *fmt, const char *defstr,...) |
| Shows an input dialog displaying the fmt message.
|
void | fl_message (const char *fmt,...) |
| Shows an information message dialog box.
|
Fl_Widget * | fl_message_icon () |
| Gets the Fl_Box icon container of the current default dialog used in many common dialogs like fl_message(), fl_alert(), fl_ask(), fl_choice(), fl_input(), fl_password()
|
const char * | fl_password (const char *fmt, const char *defstr,...) |
| Shows an input dialog displaying the fmt message.
|
Variables |
static void(* | Fl::error )(const char *,...) = ::error |
| FLTK calls Fl::error() to output a normal error message.
|
static void(* | Fl::fatal )(const char *,...) = ::fatal |
| FLTK calls Fl::fatal() to output a fatal error message.
|
const char * | fl_cancel = "Cancel" |
| string pointer used in common dialogs, you can change it to a foreign language
|
const char * | fl_close = "Close" |
| string pointer used in common dialogs, you can change it to a foreign language
|
const char * | fl_no = "No" |
| string pointer used in common dialogs, you can change it to a foreign language
|
const char * | fl_ok = "OK" |
| string pointer used in common dialogs, you can change it to a foreign language
|
const char * | fl_yes = "Yes" |
| string pointer used in common dialogs, you can change it to a foreign language
|
static void(* | Fl::warning )(const char *,...) = ::warning |
| FLTK calls Fl::warning() to output a warning message.
|
void(* Fl::error)(const char *format,...) = ::error [static, inherited] |
FLTK calls Fl::error() to output a normal error message.
The default version on Windows displays the error message in a MessageBox window.
The default version on all other platforms prints the error message to stderr.
You can override the behavior by setting the function pointer to your own routine.
Fl::error() means there is a recoverable error such as the inability to read an image file. The default implementation returns after displaying the message.
- Note:
- #include <FL/Fl.H>
void(* Fl::fatal)(const char *format,...) = ::fatal [static, inherited] |
FLTK calls Fl::fatal() to output a fatal error message.
The default version on Windows displays the error message in a MessageBox window.
The default version on all other platforms prints the error message to stderr.
You can override the behavior by setting the function pointer to your own routine.
Fl::fatal() must not return, as FLTK is in an unusable state, however your version may be able to use longjmp or an exception to continue, as long as it does not call FLTK again. The default implementation exits with status 1 after displaying the message.
- Note:
- #include <FL/Fl.H>
void(* Fl::warning)(const char *format,...) = ::warning [static, inherited] |
FLTK calls Fl::warning() to output a warning message.
The default version on Windows returns without printing a warning message, because Windows programs normally don't have stderr (a console window) enabled.
The default version on all other platforms prints the warning message to stderr.
You can override the behavior by setting the function pointer to your own routine.
Fl::warning() means that there was a recoverable problem, the display may be messed up, but the user can probably keep working - all X protocol errors call this, for example. The default implementation returns after displaying the message.
- Note:
- #include <FL/Fl.H>