FLTK 1.4.0
|
The Fl is the FLTK global (static) class containing state information and global methods for the current application. More...
#include <Fl.H>
Public Types | |
enum | Fl_Option { OPTION_ARROW_FOCUS = 0 , OPTION_VISIBLE_FOCUS , OPTION_DND_TEXT , OPTION_SHOW_TOOLTIPS , OPTION_FNFC_USES_GTK , OPTION_FNFC_USES_ZENITY , OPTION_FNFC_USES_KDIALOG , OPTION_PRINTER_USES_GTK , OPTION_SHOW_SCALING , OPTION_SIMPLE_ZOOM_SHORTCUT , OPTION_LAST } |
Enumerator for global FLTK options. More... | |
Static Public Member Functions | |
static int | abi_check (const int val=FL_ABI_VERSION) |
Returns whether the runtime library ABI version is correct. More... | |
static int | abi_version () |
Returns the compiled-in value of the FL_ABI_VERSION constant. More... | |
static int | add_awake_handler_ (Fl_Awake_Handler, void *) |
Adds an awake handler for use in awake(). | |
static void | add_check (Fl_Timeout_Handler, void *=0) |
FLTK will call this callback just before it flushes the display and waits for events. More... | |
static void | add_clipboard_notify (Fl_Clipboard_Notify_Handler h, void *data=0) |
FLTK will call the registered callback whenever there is a change to the selection buffer or the clipboard. More... | |
static void | add_fd (int fd, Fl_FD_Handler cb, void *=0) |
Adds file descriptor fd to listen to. More... | |
static void | add_fd (int fd, int when, Fl_FD_Handler cb, void *=0) |
Adds file descriptor fd to listen to. More... | |
static void | add_handler (Fl_Event_Handler ha) |
Install a function to parse unrecognized events. More... | |
static void | add_handler (Fl_Event_Handler ha, Fl_Event_Handler before) |
Install a function to parse unrecognized events with less priority than another function. More... | |
static void | add_idle (Fl_Idle_Handler cb, void *data=0) |
Adds a callback function that is called every time by Fl::wait() and also makes it act as though the timeout is zero (this makes Fl::wait() return immediately, so if it is in a loop it is called repeatedly, and thus the idle function is called repeatedly). More... | |
static void | add_system_handler (Fl_System_Handler h, void *data) |
Install a function to intercept system events. More... | |
static void | add_timeout (double t, Fl_Timeout_Handler cb, void *data=0) |
Adds a one-shot timeout callback. More... | |
static int | api_version () |
Returns the compiled-in value of the FL_API_VERSION constant. More... | |
static int | arg (int argc, char **argv, int &i) |
Parse a single switch from argv , starting at word i . More... | |
static void | args (int argc, char **argv) |
Parse all command line switches matching standard FLTK options only. More... | |
static int | args (int argc, char **argv, int &i, Fl_Args_Handler cb=0) |
Parse command line switches using the cb argument handler. More... | |
static int | args_to_utf8 (int argc, char **&argv) |
Convert Windows commandline arguments to UTF-8. More... | |
static int | awake (Fl_Awake_Handler cb, void *message=0) |
See void awake(void* message=0). More... | |
static void | awake (void *message=0) |
Sends a message pointer to the main thread, causing any pending Fl::wait() call to terminate so that the main thread can retrieve the message and any pending redraws can be processed. More... | |
static void | background (uchar, uchar, uchar) |
Changes fl_color(FL_BACKGROUND_COLOR) to the given color, and changes the gray ramp from 32 to 56 to black to white. More... | |
static void | background2 (uchar, uchar, uchar) |
Changes the alternative background color. More... | |
static Fl_Widget * | belowmouse () |
Gets the widget that is below the mouse. More... | |
static void | belowmouse (Fl_Widget *) |
Sets the widget that is below the mouse. More... | |
static int | box_border_radius_max () |
Get the maximum border radius of all "rounded" boxtypes in pixels. More... | |
static void | box_border_radius_max (int R) |
Set the maximum border radius of all "rounded" boxtypes in pixels. More... | |
static Fl_Color | box_color (Fl_Color) |
Gets the drawing color to be used for the background of a box. More... | |
static int | box_dh (Fl_Boxtype) |
Returns the height offset for the given boxtype. More... | |
static int | box_dw (Fl_Boxtype) |
Returns the width offset for the given boxtype. More... | |
static int | box_dx (Fl_Boxtype) |
Returns the X offset for the given boxtype. More... | |
static int | box_dy (Fl_Boxtype) |
Returns the Y offset for the given boxtype. More... | |
static int | box_shadow_width () |
Get the box shadow width of all "shadow" boxtypes in pixels. More... | |
static void | box_shadow_width (int W) |
Set the box shadow width of all "shadow" boxtypes in pixels. More... | |
static bool | cairo_autolink_context () |
Gets the current autolink mode for Cairo support. More... | |
static void | cairo_autolink_context (bool alink) |
When FLTK_HAVE_CAIRO is defined and cairo_autolink_context() is true, any current window dc is linked to a current Cairo context. More... | |
static cairo_t * | cairo_cc () |
Gets the current Cairo context linked with a fltk window. | |
static void | cairo_cc (cairo_t *c, bool own=false) |
Sets the current Cairo context to c . More... | |
static void | cairo_flush (cairo_t *c) |
Flush Cairo drawings on Cairo context c . More... | |
static cairo_t * | cairo_make_current (Fl_Window *w) |
Provides a Cairo context for window wi. More... | |
static Fl_Callback_Reason | callback_reason () |
Give the reason for calling a callback. More... | |
static int | check () |
Same as Fl::wait(0). More... | |
static void | clear_widget_pointer (Fl_Widget const *w) |
Clears a widget pointer in the watch list. More... | |
static int | clipboard_contains (const char *type) |
Returns non 0 if the clipboard contains data matching type . More... | |
static int | compose (int &del) |
Any text editing widget should call this for each FL_KEYBOARD event. More... | |
static void | compose_reset () |
If the user moves the cursor, be sure to call Fl::compose_reset(). More... | |
static void | copy (const char *stuff, int len, int destination=0, const char *type=Fl::clipboard_plain_text) |
Copies the data pointed to by stuff to the selection buffer (destination is 0), the clipboard (destination is 1), or both (destination is 2). More... | |
static int | damage () |
If true then flush() will do something. | |
static void | damage (int d) |
If true then flush() will do something. | |
static void | default_atclose (Fl_Window *, void *) |
Default callback for window widgets. More... | |
static void | delete_widget (Fl_Widget *w) |
Schedules a widget for deletion at the next call to the event loop. More... | |
static void | disable_im () |
Disables the system input methods facilities. More... | |
static void | display (const char *) |
Sets the X or Wayland display to use for all windows. More... | |
static int | dnd () |
Initiate a Drag And Drop operation. More... | |
static int | dnd_text_ops () |
Gets whether drag and drop text operations are supported. More... | |
static void | dnd_text_ops (int v) |
Sets whether drag and drop text operations are supported. More... | |
static void | do_widget_deletion () |
Deletes widgets previously scheduled for deletion. More... | |
static int | draw_box_active () |
Determines if the currently drawn box is active or inactive. More... | |
static int | draw_GL_text_with_textures () |
returns whether whether OpenGL uses textures to draw all text. More... | |
static void | draw_GL_text_with_textures (int val) |
sets whether OpenGL uses textures to draw all text. More... | |
static void | enable_im () |
Enables the system input methods facilities. More... | |
static int | event () |
Returns the last event that was processed. More... | |
static int | event_alt () |
Returns non-zero if the Alt key is pressed. | |
static int | event_button () |
Gets which particular mouse button caused the current event. More... | |
static int | event_button1 () |
Returns non-zero if mouse button 1 is currently held down. More... | |
static int | event_button2 () |
Returns non-zero if button 2 is currently held down. More... | |
static int | event_button3 () |
Returns non-zero if button 3 is currently held down. More... | |
static int | event_buttons () |
Returns the mouse buttons state bits; if non-zero, then at least one button is pressed now. More... | |
static int | event_clicks () |
Returns non zero if we had a double click event. More... | |
static void | event_clicks (int i) |
Manually sets the number returned by Fl::event_clicks(). More... | |
static void * | event_clipboard () |
During an FL_PASTE event of non-textual data, returns a pointer to the pasted data. More... | |
static const char * | event_clipboard_type () |
Returns the type of the pasted data during an FL_PASTE event. More... | |
static int | event_command () |
Returns non-zero if the FL_COMMAND key is pressed, either FL_CTRL or on OSX FL_META. | |
static int | event_ctrl () |
Returns non-zero if the Control key is pressed. | |
static Fl_Event_Dispatch | event_dispatch () |
Return the current event dispatch function. | |
static void | event_dispatch (Fl_Event_Dispatch d) |
Set a new event dispatch function. More... | |
static int | event_dx () |
Returns the current horizontal mouse scrolling associated with the FL_MOUSEWHEEL event. More... | |
static int | event_dy () |
Returns the current vertical mouse scrolling associated with the FL_MOUSEWHEEL event. More... | |
static int | event_inside (const Fl_Widget *) |
Returns whether or not the mouse event is inside a given child widget. More... | |
static int | event_inside (int, int, int, int) |
Returns whether or not the mouse event is inside the given rectangle. More... | |
static int | event_is_click () |
Returns non-zero if the mouse has not moved far enough and not enough time has passed since the last FL_PUSH or FL_KEYBOARD event for it to be considered a "drag" rather than a "click". More... | |
static void | event_is_click (int i) |
Clears the value returned by Fl::event_is_click(). More... | |
static int | event_key () |
Gets which key on the keyboard was last pushed. More... | |
static int | event_key (int key) |
Returns true if the given key was held down (or pressed) during the last event. More... | |
static int | event_length () |
Returns the length of the text in Fl::event_text(). More... | |
static int | event_original_key () |
Returns the keycode of the last key event, regardless of the NumLock state. More... | |
static int | event_shift () |
Returns non-zero if the Shift key is pressed. | |
static int | event_state () |
Returns the keyboard and mouse button states of the last event. More... | |
static int | event_state (int mask) |
Returns non-zero if any of the passed event state bits are turned on. More... | |
static const char * | event_text () |
Returns the text associated with the current event, including FL_PASTE or FL_DND_RELEASE events. More... | |
static int | event_x () |
Returns the mouse position of the event relative to the Fl_Window it was passed to. | |
static int | event_x_root () |
Returns the mouse position on the screen of the event. More... | |
static int | event_y () |
Returns the mouse position of the event relative to the Fl_Window it was passed to. | |
static int | event_y_root () |
Returns the mouse position on the screen of the event. More... | |
static Fl_Window * | first_window () |
Returns the first top-level window in the list of shown() windows. More... | |
static void | first_window (Fl_Window *) |
Sets the window that is returned by first_window(). More... | |
static void | flush () |
Causes all the windows that need it to be redrawn and graphics forced out through the pipes. More... | |
static Fl_Widget * | focus () |
Gets the current Fl::focus() widget. More... | |
static void | focus (Fl_Widget *) |
Sets the widget that will receive FL_KEYBOARD events. More... | |
static void | foreground (uchar, uchar, uchar) |
Changes fl_color(FL_FOREGROUND_COLOR). | |
static void | free_color (Fl_Color i, int overlay=0) |
Frees the specified color from the colormap, if applicable. More... | |
static int | get_awake_handler_ (Fl_Awake_Handler &, void *&) |
Gets the last stored awake handler for use in awake(). | |
static Fl_Box_Draw_F * | get_boxtype (Fl_Boxtype) |
Gets the current box drawing function for the specified box type. | |
static unsigned | get_color (Fl_Color i) |
Returns the RGB value(s) for the given FLTK color index. More... | |
static void | get_color (Fl_Color i, uchar &red, uchar &green, uchar &blue) |
Returns the RGB value(s) for the given FLTK color index. More... | |
static void | get_color (Fl_Color i, uchar &red, uchar &green, uchar &blue, uchar &alpha) |
Returns the RGBA value(s) for the given FLTK color index. More... | |
static const char * | get_font (Fl_Font) |
Gets the string for this face. More... | |
static const char * | get_font_name (Fl_Font, int *attributes=0) |
Get a human-readable string describing the family of this face. More... | |
static int | get_font_sizes (Fl_Font, int *&sizep) |
Return an array of sizes in sizep . More... | |
static int | get_key (int key) |
Returns true if the given key is held down now. More... | |
static void | get_mouse (int &, int &) |
Return where the mouse is on the screen by doing a round-trip query to the server. More... | |
static void | get_system_colors () |
Read the user preference colors from the system and use them to call Fl::foreground(), Fl::background(), and Fl::background2(). More... | |
static int | gl_visual (int, int *alist=0) |
This does the same thing as Fl::visual(int) but also requires OpenGL drawing to work. More... | |
static Fl_Window * | grab () |
Returns the window that currently receives all events. More... | |
static void | grab (Fl_Window &win) |
See grab(Fl_Window*) | |
static void | grab (Fl_Window *) |
Selects the window to grab. More... | |
static int | h () |
Returns the height in pixels of the main screen work area. | |
static int | handle (int, Fl_Window *) |
Handle events from the window system. More... | |
static int | handle_ (int, Fl_Window *) |
Handle events from the window system. More... | |
static int | has_check (Fl_Timeout_Handler, void *=0) |
Returns 1 if the check exists and has not been called yet, 0 otherwise. | |
static int | has_idle (Fl_Idle_Handler cb, void *data=0) |
Returns true if the specified idle callback is currently installed. | |
static int | has_timeout (Fl_Timeout_Handler cb, void *data=0) |
Returns true if the timeout exists and has not been called yet. More... | |
static void | hide_all_windows () |
Hide all visible windows to make FLTK leave Fl::run(). More... | |
static int | is_scheme (const char *name) |
Returns whether the current scheme is the given name. More... | |
static void | keyboard_screen_scaling (int value) |
Controls the possibility to scale all windows by ctrl/+/-/0/ or cmd/+/-/0/. More... | |
static Fl_Event_Handler | last_handler () |
Returns the last function installed by a call to Fl::add_handler() | |
static int | lock () |
The lock() method blocks the current thread until it can safely access FLTK widgets and data. More... | |
static int | menu_linespacing () |
Gets the default line spacing used by menus. More... | |
static void | menu_linespacing (int H) |
Sets the default line spacing used by menus. More... | |
static Fl_Window * | modal () |
Returns the top-most modal() window currently shown. More... | |
static Fl_Window * | next_window (const Fl_Window *) |
Returns the next top-level window in the list of shown() windows. More... | |
static Fl_Timestamp | now (double offset=0) |
Set a time stamp at this point in time with optional signed offset in seconds. More... | |
static bool | option (Fl_Option opt) |
FLTK library options management. More... | |
static void | option (Fl_Option opt, bool val) |
Override an option while the application is running. More... | |
static void | own_colormap () |
Makes FLTK use its own colormap. More... | |
static void | paste (Fl_Widget &receiver) |
Backward compatibility only. More... | |
static void | paste (Fl_Widget &receiver, int source, const char *type=Fl::clipboard_plain_text) |
Pastes the data from the selection buffer (source is 0) or the clipboard (source is 1) into receiver . More... | |
static int | program_should_quit () |
Returns non-zero when a request for program termination was received and accepted. More... | |
static void | program_should_quit (int should_i) |
Indicate to the FLTK library whether a program termination request was received and accepted. More... | |
static Fl_Widget * | pushed () |
Gets the widget that is being pushed. More... | |
static void | pushed (Fl_Widget *) |
Sets the widget that is being pushed. More... | |
static Fl_Widget * | readqueue () |
Reads the default callback queue and returns the first widget. More... | |
static int | ready () |
This is similar to Fl::check() except this does not call Fl::flush() or any callbacks, which is useful if your program is in a state where such callbacks are illegal. More... | |
static void | redraw () |
Redraws all widgets. | |
static void | release () |
Releases the current grabbed window, equals grab(0). More... | |
static void | release_widget_pointer (Fl_Widget *&w) |
Releases a widget pointer from the watch list. More... | |
static int | reload_scheme () |
Called internally when setting a new scheme according to scheme name. More... | |
static void | remove_check (Fl_Timeout_Handler, void *=0) |
Removes a check callback. More... | |
static void | remove_clipboard_notify (Fl_Clipboard_Notify_Handler h) |
Stop calling the specified callback when there are changes to the selection buffer or the clipboard. | |
static void | remove_fd (int) |
Removes a file descriptor handler. | |
static void | remove_fd (int, int when) |
Removes a file descriptor handler. | |
static void | remove_handler (Fl_Event_Handler h) |
Removes a previously added event handler. More... | |
static void | remove_idle (Fl_Idle_Handler cb, void *data=0) |
Removes the specified idle callback, if it is installed. | |
static int | remove_next_timeout (Fl_Timeout_Handler cb, void *data=0, void **data_return=0) |
Remove the next matching timeout callback and return its data pointer. More... | |
static void | remove_system_handler (Fl_System_Handler h) |
Removes a previously added system event handler. More... | |
static void | remove_timeout (Fl_Timeout_Handler cb, void *data=0) |
Remove one or more matching timeout callbacks from the timer queue. More... | |
static void | repeat_timeout (double t, Fl_Timeout_Handler cb, void *data=0) |
Repeats a timeout callback from the expiration of the previous timeout, allowing for more accurate timing. More... | |
static int | run () |
Calls Fl::wait()repeatedly as long as any windows are displayed. More... | |
static void | run_checks () |
static void | run_idle () |
static const char * | scheme () |
See void scheme(const char *name) | |
static int | scheme (const char *name) |
Sets the current widget scheme. More... | |
static int | screen_count () |
Gets the total count of available screens. More... | |
static void | screen_dpi (float &h, float &v, int n=0) |
Gets the screen resolution in dots-per-inch for the given screen. More... | |
static Fl_Screen_Driver * | screen_driver () |
Returns a pointer to the unique Fl_Screen_Driver object of the platform. | |
static int | screen_num (int x, int y) |
Gets the screen number of a screen that contains the specified screen position x , y . More... | |
static int | screen_num (int x, int y, int w, int h) |
Gets the screen number for the screen which intersects the most with the rectangle defined by x , y , w , h . More... | |
static float | screen_scale (int n) |
Current value of the GUI scaling factor for screen number n (n ∈ [0 , Fl::screen_count()-1]) | |
static void | screen_scale (int n, float factor) |
Sets the value of the GUI scaling factor for screen number n (n ∈ [0 , Fl::screen_count()-1]). More... | |
static int | screen_scaling_supported () |
See if scaling factors are supported by this platform. More... | |
static void | screen_work_area (int &X, int &Y, int &W, int &H) |
Gets the bounding box of the work area of the screen that contains the mouse pointer. More... | |
static void | screen_work_area (int &X, int &Y, int &W, int &H, int mx, int my) |
Gets the bounding box of the work area of a screen that contains the specified screen position mx , my . More... | |
static void | screen_work_area (int &X, int &Y, int &W, int &H, int n) |
Gets the bounding box of the work area of the given screen. More... | |
static void | screen_xywh (int &X, int &Y, int &W, int &H) |
Gets the bounding box of a screen that contains the mouse pointer. More... | |
static void | screen_xywh (int &X, int &Y, int &W, int &H, int mx, int my) |
Gets the bounding box of a screen that contains the specified screen position mx , my . More... | |
static void | screen_xywh (int &X, int &Y, int &W, int &H, int mx, int my, int mw, int mh) |
Gets the screen bounding rect for the screen which intersects the most with the rectangle defined by mx , my , mw , mh . More... | |
static void | screen_xywh (int &X, int &Y, int &W, int &H, int n) |
Gets the screen bounding rect for the given screen. More... | |
static int | scrollbar_size () |
Gets the default scrollbar size used by Fl_Browser_, Fl_Help_View, Fl_Scroll, and Fl_Text_Display widgets. More... | |
static void | scrollbar_size (int W) |
Sets the default scrollbar size that is used by the Fl_Browser_, Fl_Help_View, Fl_Scroll, and Fl_Text_Display widgets. More... | |
static double | seconds_between (Fl_Timestamp &back, Fl_Timestamp &further_back) |
Return the time in seconds between two time stamps. More... | |
static double | seconds_since (Fl_Timestamp &then) |
Return the time in seconds between now and a previously taken time stamp. More... | |
static void | selection (Fl_Widget &owner, const char *, int len) |
Changes the current selection. More... | |
static Fl_Widget * | selection_owner () |
back-compatibility only: Gets the widget owning the current selection More... | |
static void | selection_owner (Fl_Widget *) |
Back-compatibility only: The single-argument call can be used to move the selection to another widget or to set the owner to NULL, without changing the actual text of the selection. More... | |
static int | selection_to_clipboard () |
Returns the current selection_to_clipboard mode. More... | |
static void | selection_to_clipboard (int mode) |
Copies selections on X11 directly to the clipboard if enabled. More... | |
static void | set_abort (Fl_Abort_Handler f) |
For back compatibility, sets the void Fl::fatal handler callback. | |
static void | set_atclose (Fl_Atclose_Handler f) |
For back compatibility, sets the Fl::atclose handler callback. More... | |
static void | set_box_color (Fl_Color) |
Sets the drawing color for the box that is currently drawn. More... | |
static void | set_boxtype (Fl_Boxtype, Fl_Box_Draw_F *, uchar, uchar, uchar, uchar, Fl_Box_Draw_Focus_F *=NULL) |
Sets the function to call to draw a specific box type. More... | |
static void | set_boxtype (Fl_Boxtype, Fl_Boxtype from) |
Copies the from boxtype. | |
static void | set_color (Fl_Color i, unsigned c) |
Sets an entry in the fl_color index table. More... | |
static void | set_color (Fl_Color, uchar, uchar, uchar) |
Sets an entry in the fl_color index table. More... | |
static void | set_color (Fl_Color, uchar, uchar, uchar, uchar) |
Sets an entry in the fl_color index table. More... | |
static void | set_font (Fl_Font, const char *) |
Changes a face. More... | |
static void | set_font (Fl_Font, Fl_Font) |
Copies one face to another. | |
static Fl_Font | set_fonts (const char *=0) |
FLTK will open the display, and add every fonts on the server to the face table. More... | |
static void | set_idle (Fl_Old_Idle_Handler cb) |
Sets an idle callback. More... | |
static void | set_labeltype (Fl_Labeltype, Fl_Label_Draw_F *, Fl_Label_Measure_F *) |
Sets the functions to call to draw and measure a specific labeltype. | |
static void | set_labeltype (Fl_Labeltype, Fl_Labeltype from) |
Sets the functions to call to draw and measure a specific labeltype. | |
static int | system (const char *command) |
Run a command line on the computer. | |
static Fl_System_Driver * | system_driver () |
Returns a pointer to the unique Fl_System_Driver object of the platform. | |
static int | test_shortcut (Fl_Shortcut) |
Tests the current event, which must be an FL_KEYBOARD or FL_SHORTCUT, against a shortcut value (described in Fl_Button). More... | |
static void * | thread_message () |
The thread_message() method returns the last message that was sent from a child by the awake() method. More... | |
static long | ticks_between (Fl_Timestamp &back, Fl_Timestamp &further_back) |
Return the time in ticks (60Hz) between two time stamps. More... | |
static long | ticks_since (Fl_Timestamp &then) |
Return the time in ticks (60Hz) between now and a previously taken time stamp. More... | |
static void | unlock () |
The unlock() method releases the lock that was set using the lock() method. More... | |
static int | use_high_res_GL () |
returns whether GL windows should be drawn at high resolution on Apple computers with retina displays. More... | |
static void | use_high_res_GL (int val) |
sets whether GL windows should be drawn at high resolution on Apple computers with retina displays More... | |
static double | version () |
Returns the compiled-in value of the FL_VERSION constant. More... | |
static int | visible_focus () |
Gets or sets the visible keyboard focus on buttons and other non-text widgets. More... | |
static void | visible_focus (int v) |
Gets or sets the visible keyboard focus on buttons and other non-text widgets. More... | |
static int | visual (int) |
Selects a visual so that your graphics are drawn correctly. More... | |
static int | w () |
Returns the width in pixels of the main screen work area. | |
static int | wait () |
Waits until "something happens" and then returns. More... | |
static double | wait (double time) |
Waits a maximum of time_to_wait seconds or until "something happens". More... | |
static void | watch_widget_pointer (Fl_Widget *&w) |
Adds a widget pointer to the widget watch list. More... | |
static int | x () |
Returns the leftmost x coordinate of the main screen work area. | |
static int | y () |
Returns the topmost y coordinate of the main screen work area. | |
Static Public Attributes | |
static void(* | atclose )(Fl_Window *, void *) |
Back compatibility: default window callback handler. More... | |
static char const *const | clipboard_image = "image" |
Denotes image data. | |
static char const *const | clipboard_plain_text = "text/plain" |
Denotes plain textual data. | |
static void(* | error )(const char *,...) = Fl_System_Driver::error |
FLTK calls Fl::error() to output a normal error message. More... | |
static void(* | fatal )(const char *,...) = Fl_System_Driver::fatal |
FLTK calls Fl::fatal() to output a fatal error message. More... | |
static const char *const | help = helpmsg+13 |
Usage string displayed if Fl::args() detects an invalid argument. More... | |
static void(* | idle )() |
The currently executing idle callback function: DO NOT USE THIS DIRECTLY! More... | |
static void(* | warning )(const char *,...) = Fl_System_Driver::warning |
FLTK calls Fl::warning() to output a warning message. More... | |
Friends | |
class | Fl_System_Driver |
The Fl is the FLTK global (static) class containing state information and global methods for the current application.
enum Fl::Fl_Option |
Enumerator for global FLTK options.
These options can be set system wide, per user, or for the running application only.
Enumerator | |
---|---|
OPTION_ARROW_FOCUS | When switched on, moving the text cursor beyond the start or end of a text in a text widget will change focus to the next text widget. (This is considered 'old' behavior) When switched off (default), the cursor will stop at the end of the text. Pressing Tab or Ctrl-Tab will advance the keyboard focus. See also: Fl_Input_::tab_nav() |
OPTION_VISIBLE_FOCUS | If visible focus is switched on (default), FLTK will draw a dotted rectangle inside the widget that will receive the next keystroke. If switched off, no such indicator will be drawn and keyboard navigation is disabled. |
OPTION_DND_TEXT | If text drag-and-drop is enabled (default), the user can select and drag text from any text widget. If disabled, no dragging is possible, however dropping text from other applications still works. |
OPTION_SHOW_TOOLTIPS | If tooltips are enabled (default), hovering the mouse over a widget with a tooltip text will open a little tooltip window until the mouse leaves the widget. If disabled, no tooltip is shown. |
OPTION_FNFC_USES_GTK | When switched on (default), Fl_Native_File_Chooser runs GTK file dialogs if the GTK library is available on the platform (linux/unix only). When switched off, GTK file dialogs aren't used even if the GTK library is available. |
OPTION_FNFC_USES_ZENITY | Meaningful for the Wayland/X11 platform only. When switched on, the library uses a Zenity-based file dialog. When switched off (default), no zenity-based file dialog is used. |
OPTION_FNFC_USES_KDIALOG | Meaningful for the Wayland/X11 platform only. When switched on, the library uses a kdialog-based file dialog if command 'kdialog' is available on the running system. When switched off (default), no kdialog-based file dialog is used. |
OPTION_PRINTER_USES_GTK | When switched on (default), Fl_Printer runs the GTK printer dialog if the GTK library is available on the platform (linux/unix only). When switched off, the GTK printer dialog isn't used even if the GTK library is available. |
OPTION_SHOW_SCALING | When switched on (default), the library shows in a transient yellow window the zoom factor value. When switched off, no such window gets displayed. |
OPTION_SIMPLE_ZOOM_SHORTCUT | When switched on and when the keyboard in use has '+' in the shifted position of its key, pressing that key and ctrl triggers the zoom-in operation. When switched off (default), the zoom-in operation requires that also the shift key is pressed. Under macOS, this option has no effect because the OS itself generates ⌘= followed by ⌘+ when pressing ⌘ and the '=|+' key without pressing shift. |
OPTION_LAST | For internal use only. |
|
inlinestatic |
Returns whether the runtime library ABI version is correct.
This enables you to check the ABI version of the linked FLTK library at runtime.
Returns 1 (true) if the compiled ABI version (in the header files) and the linked library ABI version (used at runtime) are the same, 0 (false) otherwise.
Argument val
can be used to query a particular library ABI version. Use for instance 10303 to query if the runtime library is compatible with FLTK ABI version 1.3.3. This is rarely useful.
The default val
argument is FL_ABI_VERSION, which checks the version defined at configure time (i.e. in the header files at program compilation time) against the linked library version used at runtime. This is particularly useful if you linked with a shared object library, but it also concerns static linking.
|
static |
Returns the compiled-in value of the FL_ABI_VERSION constant.
This is useful for checking the version of a shared library.
|
static |
FLTK will call this callback just before it flushes the display and waits for events.
This is different than an idle callback because it is only called once, then FLTK calls the system and tells it not to return until an event happens.
This can be used by code that wants to monitor the application's state, such as to keep a display up to date. The advantage of using a check callback is that it is called only when no events are pending. If events are coming in quickly, whole blocks of them will be processed before this is called once. This can save significant time and avoid the application falling behind the events.
Sample code:
|
static |
Adds file descriptor fd to listen to.
See Fl::add_fd(int fd, int when, Fl_FD_Handler cb, void* = 0) for details
|
static |
Adds file descriptor fd to listen to.
When the fd becomes ready for reading Fl::wait() will call the callback and then return. The callback is passed the fd and the arbitrary void* argument.
This version takes a when bitfield, with the bits FL_READ, FL_WRITE, and FL_EXCEPT defined, to indicate when the callback should be done.
There can only be one callback of each type for a file descriptor. Fl::remove_fd() gets rid of all the callbacks for a given file descriptor.
Under UNIX/Linux/macOS any file descriptor can be monitored (files, devices, pipes, sockets, etc.). Due to limitations in Microsoft Windows, Windows applications can only monitor sockets.
Under macOS, Fl::add_fd() opens the display if that's not been done before.
|
static |
Adds a callback function that is called every time by Fl::wait() and also makes it act as though the timeout is zero (this makes Fl::wait() return immediately, so if it is in a loop it is called repeatedly, and thus the idle function is called repeatedly).
The idle function can be used to get background processing done.
You can have multiple idle callbacks. To remove an idle callback use Fl::remove_idle().
Fl::wait() and Fl::check() call idle callbacks, but Fl::ready() does not.
The idle callback can call any FLTK functions, including Fl::wait(), Fl::check(), and Fl::ready().
FLTK will not recursively call the idle callback.
|
static |
Adds a one-shot timeout callback.
The callback function cb
will be called by Fl::wait() at time
seconds after this function is called. The callback function must have the signature Fl_Timeout_Handler. The optional data
argument is passed to the callback (default: NULL).
The timer is removed from the timer queue before the callback function is called. It is safe to reschedule the timeout inside the callback function.
You can have multiple timeout callbacks, even the same timeout callback with different timeout values and/or different data
values. They are all considered different timer objects.
To remove a timeout while it is active (pending) use Fl::remove_timeout().
If you need more accurate, repeated timeouts, use Fl::repeat_timeout() to reschedule the subsequent timeouts. Please see Fl::repeat_timeout() for an example.
Since version 1.4, a timeout can be started from a child thread under the condition that the call to Fl::add_timeout is wrapped in Fl::lock() and Fl::unlock().
[in] | time | delta time in seconds until the timer expires |
[in] | cb | callback function |
[in] | data | optional user data (default: NULL ) |
|
static |
Returns the compiled-in value of the FL_API_VERSION constant.
This is useful for checking the version of a shared library.
|
static |
Parse a single switch from argv
, starting at word i
.
Returns the number of words eaten (1 or 2, or 0 if it is not recognized) and adds the same value to i
.
This is the default argument handler used internally by Fl::args(...), but you can use this function if you prefer to step through the standard FLTK switches yourself.
All standard FLTK switches except -bg2 may be abbreviated to just one letter and case is ignored:
Color values are commonly given as three digit or six digit hex numbers.
If your program requires other switches in addition to the standard FLTK options, you will need to pass your own argument handler to Fl::args(int,char**,int&,Fl_Args_Handler) explicitly.
|
static |
Parse all command line switches matching standard FLTK options only.
It parses all the switches, and if any are not recognized it calls Fl::abort(Fl::help), i.e. unlike the long form, an unrecognized switch generates an error message and causes the program to exit.
|
static |
Parse command line switches using the cb
argument handler.
Returns 0 on error, or the number of words processed.
FLTK provides this as an entirely optional command line switch parser. You don't have to call it if you don't want to. Everything it can do can be done with other calls to FLTK.
To use the switch parser, call Fl::args(...) near the start of your program. This does not open the display, instead switches that need the display open are stashed into static variables. Then you must display your first window by calling window->show(argc,argv)
, which will do anything stored in the static variables.
Providing an argument handler callback cb
lets you define your own switches. It is called with the same argc
and argv
, and with i
set to the index of the switch to be processed. The cb
handler should return zero if the switch is unrecognized, and not change i
. It should return non-zero to indicate the number of words processed if the switch is recognized, i.e. 1 for just the switch, and more than 1 for the switch plus associated parameters. i
should be incremented by the same amount.
The cb
handler is called before any other tests, so you can also override any standard FLTK switch (this is why FLTK can use very short switches instead of the long ones all other toolkits force you to use). See Fl::arg() for descriptions of the standard switches.
On return i
is set to the index of the first non-switch. This is either:
argc
The return value is i
unless an unrecognized switch is found, in which case it is zero. If your program takes no arguments other than switches you should produce an error if the return value is less than argc
.
A usage string is displayed if Fl::args() detects an invalid argument on the command-line. You can change the message by setting the Fl::help pointer.
A very simple command line parser can be found in examples/howto-parse-args.cxx
The simpler Fl::args(int argc, char **argv) form is useful if your program does not have command line switches of its own.
|
static |
Convert Windows commandline arguments to UTF-8.
'#ifdef _WIN32'
etc. - it's your choice. Calling it on other platforms returns quickly w/o wasting much CPU time.This function must be called on Windows platforms in main()
before the array argv
is used if your program uses any commandline argument strings (these should be UTF-8 encoded). This applies also to standard FLTK commandline arguments like "-name" (class name) and "-title" (window title in the title bar).
Unfortunately Windows neither provides commandline arguments in UTF-8 encoding nor as Windows "Wide Character" strings in the standard main()
and/or the Windows specific WinMain()
function.
On Windows platforms (no matter which build system) this function calls a Windows specific function to retrieve commandline arguments as Windows "Wide Character" strings, converts these strings to an internally allocated buffer (or multiple buffers) and returns the result in argv
. For implementation details please refer to the source code; however these details may be changed in the future.
Note that argv
is provided by reference so it can be overwritten.
In the recommended simple form the function overwrites the variable argv
and allocates a new array of strings pointed to by argv
. You may use this form on all platforms and it is as simple as adding one line to old programs to make them work with international (UTF-8) commandline arguments.
For an example see 'examples/howto-parse-args.cxx' in the FLTK sources.
If you want to retain the original argc
and argv
variables the following slightly longer and more complicated code works as well on all platforms.
[in] | argc | used only on non-Windows platforms |
[out] | argv | modified only on Windows platforms |
Changes fl_color(FL_BACKGROUND_COLOR) to the given color, and changes the gray ramp from 32 to 56 to black to white.
These are the colors used as backgrounds by almost all widgets and used to draw the edges of all the boxtypes.
Changes the alternative background color.
This color is used as a background by Fl_Input and other text widgets.
This call may change fl_color(FL_FOREGROUND_COLOR) if it does not provide sufficient contrast to FL_BACKGROUND2_COLOR.
|
inlinestatic |
Get the maximum border radius of all "rounded" boxtypes in pixels.
|
inlinestatic |
Set the maximum border radius of all "rounded" boxtypes in pixels.
Must be at least 5, default = 15.
The box border radius of "rounded" boxtypes is typically calculated as about 2/5 of the box height or width, whichever is smaller. The upper limit can be set by this method for all "rounded" boxtypes.
Gets the drawing color to be used for the background of a box.
This method is only useful inside box drawing code. It returns the color to be used, either fl_inactive(c) if the widget is !active_r() or c
otherwise.
|
static |
Returns the height offset for the given boxtype.
|
static |
Returns the width offset for the given boxtype.
|
static |
Returns the X offset for the given boxtype.
|
static |
Returns the Y offset for the given boxtype.
These functions return the offset values necessary for a given boxtype, useful for computing the area inside a box's borders, to prevent overdrawing the borders.
For instance, in the case of a boxtype like FL_DOWN_BOX where the border width might be 2 pixels all around, the above functions would return 2, 2, 4, and 4 for box_dx, box_dy, box_dw, and box_dh respectively.
An example to compute the area inside a widget's box():
These functions are mainly useful in the draw() code for deriving custom widgets, where one wants to avoid drawing over the widget's own border box().
|
inlinestatic |
Get the box shadow width of all "shadow" boxtypes in pixels.
|
inlinestatic |
Set the box shadow width of all "shadow" boxtypes in pixels.
Must be at least 1, default = 3. There is no upper limit.
|
static |
Same as Fl::wait(0).
Calling this during a big calculation will keep the screen up to date and the interface responsive:
This returns non-zero if any windows are displayed, and 0 if no windows are displayed (this is likely to change in future versions of FLTK).
|
static |
Sets the X or Wayland display to use for all windows.
This sets the environment variable $DISPLAY or $WAYLAND_DISPLAY to the passed string, so this only works before you show() the first window or otherwise open the display.
This does nothing on other platforms.
|
inlinestatic |
Gets whether drag and drop text operations are supported.
This returns whether selected text can be dragged from text fields or dragged within a text field as a cut/paste shortcut.
|
inlinestatic |
Sets whether drag and drop text operations are supported.
This specifically affects whether selected text can be dragged from text fields or dragged within a text field as a cut/paste shortcut.
|
static |
Determines if the currently drawn box is active or inactive.
If inactive, the box color should be changed to the inactive color.
|
inlinestatic |
returns whether whether OpenGL uses textures to draw all text.
Default is yes.
|
inlinestatic |
sets whether OpenGL uses textures to draw all text.
By default, FLTK draws OpenGL text using textures, if the necessary hardware support is available. Call Fl::draw_GL_text_with_textures(0)
once in your program before the first call to gl_font() to have FLTK draw instead OpenGL text using a legacy, platform-dependent procedure. It's recommended not to deactivate textures under the MacOS platform because the MacOS legacy procedure is extremely rudimentary.
val | use 0 to prevent FLTK from drawing GL text with textures |
|
static |
Causes all the windows that need it to be redrawn and graphics forced out through the pipes.
This is what wait() does before looking for events.
Note: in multi-threaded applications you should only call Fl::flush() from the main thread. If a child thread needs to trigger a redraw event, it should instead call Fl::awake() to get the main thread to process the event queue.
|
static |
Read the user preference colors from the system and use them to call Fl::foreground(), Fl::background(), and Fl::background2().
This is done by Fl_Window::show(argc,argv) before applying the -fg and -bg switches.
On X this reads some common values from the Xdefaults database. KDE users can set these values by running the "krdb" program, and newer versions of KDE set this automatically if you check the "apply style to other X programs" switch in their control panel.
|
static |
This does the same thing as Fl::visual(int) but also requires OpenGL drawing to work.
This must be done if you want to draw in normal windows with OpenGL with gl_start() and gl_end(). It may be useful to call this so your X windows use the same visual as an Fl_Gl_Window, which on some servers will reduce colormap flashing.
See Fl_Gl_Window for a list of additional values for the argument.
|
static |
Returns true if the timeout exists and has not been called yet.
Both arguments cb
and data
must match with at least one timer in the queue of active timers to return true (1).
data
argument as a wildcard (match all) if it is zero (NULL) which Fl::remove_timeout() does. This is so for backwards compatibility with FLTK 1.3.x. Therefore using 0 (zero, NULL) as the timeout data
value is discouraged unless you're sure that you don't need to use Fl::has_timeout(callback, (void *)0);
or Fl::remove_timeout(callback, (void *)0);
.[in] | cb | Timer callback |
[in] | data | User data |
0 | not found |
1 | found |
|
static |
|
inlinestatic |
Returns whether the current scheme is the given name.
This is a fast inline convenience function to support scheme-specific code in widgets, e.g. in their draw() methods, if required.
Use a valid scheme name, not NULL
(although NULL
is allowed, this is not a useful argument - see below).
If Fl::scheme() has not been set or has been set to the default scheme ("none" or "base"), then this will always return 0 regardless of the argument, because Fl::scheme() is NULL
in this case.
Example:
[in] | name | lowercase string of requested scheme name. |
|
static |
Gets the default line spacing used by menus.
|
static |
Sets the default line spacing used by menus.
Default is 4.
[in] | H | The new default line spacing between menu items, in pixels. |
|
static |
Set a time stamp at this point in time with optional signed offset in seconds.
The time stamp is an opaque type and does not represent the time of day or some time and date in the calendar. It is used with Fl::seconds_between() and Fl::seconds_since() to measure elapsed time.
Depending on the system the resolution may be milliseconds or microseconds. Under certain conditions (particularly on Windows) the value in member sec
may wrap around and does not represent a real time (maybe runtime of the system). Function seconds_since() below uses this to subtract two timestamps which is always a correct delta time with milliseconds or microseconds resolution.
offset | optional signed offset in seconds added to the current time |
offset
as an opaque time stamp
|
static |
FLTK library options management.
Options provide a way for the user to modify the behavior of an FLTK application. For example, clearing the OPTION_SHOW_TOOLTIPS
will disable tooltips for all FLTK applications.
Options are set by the user or the administrator on user or machine level. In 1.3, FLUID has an Options dialog for that. In 1.4, there is an app named fltk-options
that can be used from the command line or as a GUI tool. The machine level setting is read first, and the user setting can override the machine setting.
This function is used throughout FLTK to quickly query the user's wishes. There are options for using a native file chooser instead of the FLTK one wherever possible, disabling tooltips, disabling visible focus, disabling FLTK file chooser preview, etc. .
See Fl::Fl_Option
for a list of available options.
Example:
fltk-options
program, new in FLTK 1.4.0. In 1.3.x, options can be set in FLUID.opt | which option |
|
static |
Override an option while the application is running.
Apps can override the machine settings and the user settings by calling Fl::option(option, bool)
. The override takes effect immediately for this option for all widgets in the app for the life time of the app.
The override is not saved anywhere, and relaunching the app will restore the old settings.
Example:
opt | which option |
val | set to true or false |
|
static |
Makes FLTK use its own colormap.
This may make FLTK display better and will reduce conflicts with other programs that want lots of colors. However the colors may flash as you move the cursor between windows.
This does nothing if the current visual is not colormapped.
|
inlinestatic |
Returns non-zero when a request for program termination was received and accepted.
On the MacOS platform, the "Quit xxx" item of the application menu is such a request, that is considered accepted when all windows are closed. On other platforms, this function returns 0 until Fl::program_should_quit(1)
is called.
|
inlinestatic |
Indicate to the FLTK library whether a program termination request was received and accepted.
A program may set this to 1, for example, while performing a platform-independent command asking the program to cleanly terminate, similarly to the "Quit xxx" item of the application menu under MacOS.
|
static |
Reads the default callback queue and returns the first widget.
All Fl_Widgets that don't have a callback defined use the default callback static
Fl_Widget::default_callback() that puts a pointer to the widget in a queue. This method reads the oldest widget out of this queue.
The queue (FIFO) is limited (currently 20 items). If the queue overflows, the oldest entry (Fl_Widget *) is discarded.
Relying on the default callback and reading the callback queue with Fl::readqueue() is not recommended. If you need a callback, you should set one with Fl_Widget::callback(Fl_Callback *cb, void *data) or one of its variants.
|
static |
This is similar to Fl::check() except this does not call Fl::flush() or any callbacks, which is useful if your program is in a state where such callbacks are illegal.
This returns true if Fl::check() would do anything (it will continue to return true until you call Fl::check() or Fl::wait()).
|
inlinestatic |
Releases the current grabbed window, equals grab(0).
|
static |
Called internally when setting a new scheme according to scheme name.
Loads or reloads the current scheme selection.
See void Fl::scheme(const char *name)
|
static |
Removes a check callback.
It is harmless to remove a check callback that no longer exists.
|
static |
Remove the next matching timeout callback and return its data
pointer.
This method removes only the next matching timeout and returns in data_return
(if non-NULL) the data
member given when the timeout was scheduled.
This method is useful if you remove a timeout before it is scheduled and you need to get and use its data value, for instance to free() or delete the data associated with the timeout.
This method returns non-zero if a matching timeout was found and zero if no timeout matched the request.
If the return value is N
> 1 then there are N - 1 more matching timeouts pending.
If you need to remove all timeouts with a particular callback cb
you must repeat this call until it returns 1 (all timeouts removed) or zero (no matching timeout), whichever occurs first.
[in] | cb | Timer callback to be removed (must match) |
[in] | data | Wildcard if NULL, must match otherwise |
[in,out] | data_return | Pointer to (void *) to receive the data value |
0 | no matching timer was found |
1 | the last matching timeout was found and removed |
N>1 | a matching timeout was removed and there are (N - 1) matching timeouts pending |
|
static |
Remove one or more matching timeout callbacks from the timer queue.
This method removes all matching timeouts, not just the first one.
If the data
argument is NULL
(the default!) only the callback cb
must match, i.e. all timer entries with this callback are removed.
It is harmless to remove a timeout callback that no longer exists.
If you want to remove only the next matching timeout you can use Fl::remove_next_timeout(Fl_Timeout_Handler cb, void *data, void **data_return) (available since FLTK 1.4.0).
[in] | cb | Timer callback to be removed (must match) |
[in] | data | Wildcard if NULL (default), must match otherwise |
|
static |
Repeats a timeout callback from the expiration of the previous timeout, allowing for more accurate timing.
You should call this method only inside a timeout callback of the same or a logically related timer from whose expiration time the new timeout shall be scheduled. Otherwise the timing accuracy can't be improved and the exact behavior is undefined.
If you call this outside a timeout callback the behavior is the same as Fl::add_timeout().
Example: The following code will print "TICK" each second on stdout with a fair degree of accuracy:
[in] | time | delta time in seconds until the timer expires |
[in] | cb | callback function |
[in] | data | optional user data (default: NULL ) |
|
static |
Calls Fl::wait()repeatedly as long as any windows are displayed.
When all the windows are closed it returns zero (supposedly it would return non-zero on any errors, but FLTK calls exit directly for these). A normal program will end main() with return Fl::run();.
|
static |
Sets the current widget scheme.
NULL will use the scheme defined in the FLTK_SCHEME environment variable or the scheme resource under X11. Otherwise, any of the following schemes can be used:
If the given scheme name is unknown, the default scheme will be used.
Setting the scheme (name) is case insensitive, but the stored scheme name will always be lowercase and Fl::scheme() will return this lowercase name or NULL
if no scheme or the default scheme ("none" or "base") was set.
[in] | s | Scheme name of NULL |
0 | if the scheme has not been set or is the default scheme |
1 | if a scheme other than "none"/"base" was set |
|
static |
Gets the default scrollbar size used by Fl_Browser_, Fl_Help_View, Fl_Scroll, and Fl_Text_Display widgets.
|
static |
Sets the default scrollbar size that is used by the Fl_Browser_, Fl_Help_View, Fl_Scroll, and Fl_Text_Display widgets.
[in] | W | The new default size for widget scrollbars, in pixels. |
|
static |
Return the time in seconds between two time stamps.
[in] | back | a previously taken time stamp |
[in] | further_back | an even earlier time stamp |
|
static |
Return the time in seconds between now and a previously taken time stamp.
[in] | then | a previously taken time stamp |
|
static |
Sets the drawing color for the box that is currently drawn.
This method sets the current drawing color fl_color() depending on the widget's state to either c
or fl_inactive(c).
It should be used whenever a box background is drawn in the box (type) drawing code instead of calling fl_color(Fl_Color bg) with the background color bg
, usually Fl_Widget::color().
This method is only useful inside box drawing code. Whenever a box is drawn with one of the standard box drawing methods, a static variable is set depending on the widget's current state - if the widget is !active_r() then the internal variable is false (0), otherwise it is true (1). This is faster than calling Fl_Widget::active_r() because the state is cached.
|
static |
Sets the function to call to draw a specific box type.
[in] | t | index of the box type between 0 (FL_NO_BOX) and up to and including FL_MAX_BOXTYPE |
[in] | f | callback function that draws the box |
[in] | dx,dy | top left frame width, distance in pixels to box contents |
[in] | dw,dh | left plus right frame width, top plus bottom frame width |
[in] | ff | optional callback that draws the box focus, defaults to a rectangle, inset by dx, dy, dw, dh |
|
inlinestatic |
Sets an idle callback.
|
static |
Return the time in ticks (60Hz) between two time stamps.
[in] | back | a previously taken time stamp |
[in] | further_back | an even earlier time stamp |
|
static |
Return the time in ticks (60Hz) between now and a previously taken time stamp.
Ticks are a convenient way to time animations 'per frame'. Even though modern computers use all kinds of screen refresh rates, 60Hz is a very good base for animation that is typically shown in user interface graphics.
[in] | then | a previously taken time stamp |
|
inlinestatic |
returns whether GL windows should be drawn at high resolution on Apple computers with retina displays.
Default is no.
|
inlinestatic |
sets whether GL windows should be drawn at high resolution on Apple computers with retina displays
|
static |
Returns the compiled-in value of the FL_VERSION constant.
This is useful for checking the version of a shared library.
|
inlinestatic |
Gets or sets the visible keyboard focus on buttons and other non-text widgets.
The default mode is to enable keyboard focus for all widgets.
|
inlinestatic |
Gets or sets the visible keyboard focus on buttons and other non-text widgets.
The default mode is to enable keyboard focus for all widgets.
|
static |
Selects a visual so that your graphics are drawn correctly.
This is only allowed before you call show() on any windows. This does nothing if the default visual satisfies the capabilities, or if no visual satisfies the capabilities, or on systems that don't have such brain-dead notions.
Only the following combinations do anything useful:
This returns true if the system has the capabilities by default or FLTK succeeded in turning them on. Your program will still work even if this returns false (it just won't look as good).
|
static |
Waits until "something happens" and then returns.
Call this repeatedly to "run" your program. You can also check what happened each time after this returns, which is quite useful for managing program state.
What this really does is call all idle callbacks, all elapsed timeouts, call Fl::flush() to get the screen to update, and then wait some time (zero if there are idle callbacks, the shortest of all pending timeouts, or infinity), for any events from the user or any Fl::add_fd() callbacks. It then handles the events and calls the callbacks and then returns.
|
static |
Waits a maximum of time_to_wait
seconds or until "something happens".
See Fl::wait() for the description of operations performed when "something happens".
|
static |
Usage string displayed if Fl::args() detects an invalid argument.
This may be changed to point to customized text at run-time.
|
static |
The currently executing idle callback function: DO NOT USE THIS DIRECTLY!
This is now used as part of a higher level system allowing multiple idle callback functions to be called.