mirror of https://github.com/fltk/fltk
Update dependencies and fix whitespace errors
- replace tabs with spaces - remove trailing whitespace
This commit is contained in:
parent
fb00fb3d66
commit
4e75549e7b
|
@ -33,7 +33,7 @@
|
|||
/** To be used in prototypes with a variable list of arguments.
|
||||
This macro helps detection of mismatches between format string and
|
||||
argument list at compilation time.
|
||||
|
||||
|
||||
Usage example: FL/fl_ask.H
|
||||
*/
|
||||
#define __fl_attr(x)
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
|
||||
Fl_Cairo.o: ../FL/Enumerations.H
|
||||
Fl_Cairo.o: ../FL/Fl.H
|
||||
Fl_Cairo.o: ../FL/fl_attr.h
|
||||
Fl_Cairo.o: ../FL/Fl_Bitmap.H
|
||||
Fl_Cairo.o: ../FL/Fl_Cairo.H
|
||||
Fl_Cairo.o: ../FL/fl_casts.H
|
||||
|
|
|
@ -352,7 +352,7 @@ Run `make depend' in the jpeg folder on a Linux system after
|
|||
the system version of libdecor. libdecor will remain as an FLTK bundle to
|
||||
support Linux configurations where the libdecor package is not
|
||||
available or not installed.
|
||||
|
||||
|
||||
FLTK uses libdecor source files without any modification.
|
||||
This part of the libdecor source tree is copied to directory libdecor/ of
|
||||
the FLTK source tree:
|
||||
|
@ -366,5 +366,5 @@ Run `make depend' in the jpeg folder on a Linux system after
|
|||
</pre>
|
||||
Furthermore, directory libdecor/build/ of the FLTK source tree does not
|
||||
originate from the libdecor source tree but contains 3 FLTK-created files.
|
||||
|
||||
|
||||
*/
|
||||
|
|
|
@ -196,7 +196,7 @@ bool openDirectory(const char *dir, char *flags) {
|
|||
if (!p) continue;
|
||||
if (*(p+4)) continue; // is no extension!
|
||||
snprintf(buf, sizeof(buf), "%s/%s", dir, name);
|
||||
if (strstr(name, "debug")) // hack: when name contains 'debug' open single frames
|
||||
if (strstr(name, "debug")) // hack: when name contains 'debug' open single frames
|
||||
strcat(flags, "d");
|
||||
if (openFile(buf, flags, cnt == 0))
|
||||
cnt++;
|
||||
|
|
|
@ -1 +1,43 @@
|
|||
# DO NOT DELETE THIS LINE -- make depend depends on it.
|
||||
|
||||
fltk-options.o: ../config.h
|
||||
fltk-options.o: ../FL/Enumerations.H
|
||||
fltk-options.o: ../FL/filename.H
|
||||
fltk-options.o: ../FL/Fl.H
|
||||
fltk-options.o: ../FL/fl_attr.h
|
||||
fltk-options.o: ../FL/Fl_Bitmap.H
|
||||
fltk-options.o: ../FL/Fl_Box.H
|
||||
fltk-options.o: ../FL/Fl_Browser.H
|
||||
fltk-options.o: ../FL/Fl_Browser_.H
|
||||
fltk-options.o: ../FL/Fl_Button.H
|
||||
fltk-options.o: ../FL/Fl_Cairo.H
|
||||
fltk-options.o: ../FL/fl_casts.H
|
||||
fltk-options.o: ../FL/Fl_Choice.H
|
||||
fltk-options.o: ../FL/fl_config.h
|
||||
fltk-options.o: ../FL/Fl_Device.H
|
||||
fltk-options.o: ../FL/Fl_Double_Window.H
|
||||
fltk-options.o: ../FL/fl_draw.H
|
||||
fltk-options.o: ../FL/Fl_Export.H
|
||||
fltk-options.o: ../FL/Fl_Graphics_Driver.H
|
||||
fltk-options.o: ../FL/Fl_Group.H
|
||||
fltk-options.o: ../FL/Fl_Hold_Browser.H
|
||||
fltk-options.o: ../FL/Fl_Image.H
|
||||
fltk-options.o: ../FL/Fl_Menu_.H
|
||||
fltk-options.o: ../FL/Fl_Menu_Item.H
|
||||
fltk-options.o: ../FL/Fl_Pack.H
|
||||
fltk-options.o: ../FL/Fl_Pixmap.H
|
||||
fltk-options.o: ../FL/Fl_Plugin.H
|
||||
fltk-options.o: ../FL/Fl_Preferences.H
|
||||
fltk-options.o: ../FL/Fl_Rect.H
|
||||
fltk-options.o: ../FL/Fl_RGB_Image.H
|
||||
fltk-options.o: ../FL/Fl_Scroll.H
|
||||
fltk-options.o: ../FL/Fl_Scrollbar.H
|
||||
fltk-options.o: ../FL/Fl_Slider.H
|
||||
fltk-options.o: ../FL/Fl_Tooltip.H
|
||||
fltk-options.o: ../FL/fl_types.h
|
||||
fltk-options.o: ../FL/fl_utf8.h
|
||||
fltk-options.o: ../FL/Fl_Valuator.H
|
||||
fltk-options.o: ../FL/Fl_Widget.H
|
||||
fltk-options.o: ../FL/Fl_Window.H
|
||||
fltk-options.o: ../FL/platform_types.h
|
||||
fltk-options.o: ../src/flstring.h
|
||||
|
|
|
@ -123,7 +123,7 @@ void Fluid_Image::write_static(Fd_Code_Writer& f, int compressed) {
|
|||
if (!img) return;
|
||||
const char *idata_name = f.unique_id(this, "idata", fl_filename_name(name()), 0);
|
||||
function_name_ = f.unique_id(this, "image", fl_filename_name(name()), 0);
|
||||
|
||||
|
||||
if (is_animated_gif_) {
|
||||
// Write animated gif image data...
|
||||
f.write_c("\n");
|
||||
|
|
|
@ -89,7 +89,7 @@ int Shortcut_Button::handle(int e) {
|
|||
The Widget_Bin_Button button is a button that can be used in the widget bin to
|
||||
allow the user to drag and drop widgets into a window or group. This feature
|
||||
makes it easy for the user to position a widget at a specific location within
|
||||
the window or group.
|
||||
the window or group.
|
||||
*/
|
||||
|
||||
/**
|
||||
|
|
|
@ -3,6 +3,8 @@
|
|||
about_panel.o: ../config.h
|
||||
about_panel.o: ../FL/Enumerations.H
|
||||
about_panel.o: ../FL/Fl.H
|
||||
about_panel.o: ../FL/Fl_Anim_GIF_Image.H
|
||||
about_panel.o: ../FL/fl_attr.h
|
||||
about_panel.o: ../FL/Fl_Bitmap.H
|
||||
about_panel.o: ../FL/Fl_Box.H
|
||||
about_panel.o: ../FL/Fl_Button.H
|
||||
|
@ -11,6 +13,7 @@ about_panel.o: ../FL/fl_casts.H
|
|||
about_panel.o: ../FL/fl_config.h
|
||||
about_panel.o: ../FL/Fl_Double_Window.H
|
||||
about_panel.o: ../FL/Fl_Export.H
|
||||
about_panel.o: ../FL/Fl_GIF_Image.H
|
||||
about_panel.o: ../FL/Fl_Group.H
|
||||
about_panel.o: ../FL/Fl_Image.H
|
||||
about_panel.o: ../FL/Fl_Pixmap.H
|
||||
|
@ -57,6 +60,8 @@ alignment_panel.o: ../FL/Fl_Repeat_Button.H
|
|||
alignment_panel.o: ../FL/Fl_Return_Button.H
|
||||
alignment_panel.o: ../FL/Fl_RGB_Image.H
|
||||
alignment_panel.o: ../FL/Fl_Round_Button.H
|
||||
alignment_panel.o: ../FL/Fl_Scheme.H
|
||||
alignment_panel.o: ../FL/Fl_Scheme_Choice.H
|
||||
alignment_panel.o: ../FL/Fl_Scrollbar.H
|
||||
alignment_panel.o: ../FL/Fl_Simple_Terminal.H
|
||||
alignment_panel.o: ../FL/Fl_Slider.H
|
||||
|
@ -79,6 +84,7 @@ alignment_panel.o: widget_browser.h
|
|||
align_widget.o: ../FL/Enumerations.H
|
||||
align_widget.o: ../FL/filename.H
|
||||
align_widget.o: ../FL/Fl.H
|
||||
align_widget.o: ../FL/fl_attr.h
|
||||
align_widget.o: ../FL/Fl_Bitmap.H
|
||||
align_widget.o: ../FL/Fl_Cairo.H
|
||||
align_widget.o: ../FL/fl_casts.H
|
||||
|
@ -106,6 +112,7 @@ align_widget.o: ../FL/Fl_Window.H
|
|||
align_widget.o: ../FL/Fl_Wizard.H
|
||||
align_widget.o: ../FL/platform_types.h
|
||||
align_widget.o: align_widget.h
|
||||
align_widget.o: code.h
|
||||
align_widget.o: fluid.h
|
||||
align_widget.o: Fl_Group_Type.h
|
||||
align_widget.o: Fl_Type.h
|
||||
|
@ -149,6 +156,8 @@ code.o: ../FL/Fl_Repeat_Button.H
|
|||
code.o: ../FL/Fl_Return_Button.H
|
||||
code.o: ../FL/Fl_RGB_Image.H
|
||||
code.o: ../FL/Fl_Round_Button.H
|
||||
code.o: ../FL/Fl_Scheme.H
|
||||
code.o: ../FL/Fl_Scheme_Choice.H
|
||||
code.o: ../FL/Fl_Scrollbar.H
|
||||
code.o: ../FL/Fl_Shared_Image.H
|
||||
code.o: ../FL/Fl_Simple_Terminal.H
|
||||
|
@ -183,6 +192,7 @@ code.o: shell_command.h
|
|||
code.o: widget_browser.h
|
||||
CodeEditor.o: ../FL/Enumerations.H
|
||||
CodeEditor.o: ../FL/Fl.H
|
||||
CodeEditor.o: ../FL/fl_attr.h
|
||||
CodeEditor.o: ../FL/Fl_Bitmap.H
|
||||
CodeEditor.o: ../FL/Fl_Cairo.H
|
||||
CodeEditor.o: ../FL/fl_casts.H
|
||||
|
@ -219,12 +229,14 @@ ExternalCodeEditor_UNIX.o: ../FL/Fl_Cairo.H
|
|||
ExternalCodeEditor_UNIX.o: ../FL/fl_casts.H
|
||||
ExternalCodeEditor_UNIX.o: ../FL/fl_config.h
|
||||
ExternalCodeEditor_UNIX.o: ../FL/Fl_Export.H
|
||||
ExternalCodeEditor_UNIX.o: ../FL/Fl_Image.H
|
||||
ExternalCodeEditor_UNIX.o: ../FL/Fl_Menu_Item.H
|
||||
ExternalCodeEditor_UNIX.o: ../FL/Fl_Preferences.H
|
||||
ExternalCodeEditor_UNIX.o: ../FL/Fl_String.H
|
||||
ExternalCodeEditor_UNIX.o: ../FL/fl_string_functions.h
|
||||
ExternalCodeEditor_UNIX.o: ../FL/fl_types.h
|
||||
ExternalCodeEditor_UNIX.o: ../FL/fl_utf8.h
|
||||
ExternalCodeEditor_UNIX.o: ../FL/Fl_Widget.H
|
||||
ExternalCodeEditor_UNIX.o: ../FL/platform_types.h
|
||||
ExternalCodeEditor_UNIX.o: ExternalCodeEditor_UNIX.h
|
||||
ExternalCodeEditor_UNIX.o: fluid.h
|
||||
|
@ -233,6 +245,7 @@ factory.o: ../FL/Enumerations.H
|
|||
factory.o: ../FL/filename.H
|
||||
factory.o: ../FL/Fl.H
|
||||
factory.o: ../FL/Fl_Adjuster.H
|
||||
factory.o: ../FL/fl_attr.h
|
||||
factory.o: ../FL/Fl_Bitmap.H
|
||||
factory.o: ../FL/Fl_Box.H
|
||||
factory.o: ../FL/Fl_Browser.H
|
||||
|
@ -298,6 +311,7 @@ factory.o: ../FL/Fl_Window.H
|
|||
factory.o: ../FL/Fl_Wizard.H
|
||||
factory.o: ../FL/platform_types.h
|
||||
factory.o: ../src/flstring.h
|
||||
factory.o: code.h
|
||||
factory.o: factory.h
|
||||
factory.o: fluid.h
|
||||
factory.o: Fl_Group_Type.h
|
||||
|
@ -344,6 +358,8 @@ file.o: ../FL/Fl_Repeat_Button.H
|
|||
file.o: ../FL/Fl_Return_Button.H
|
||||
file.o: ../FL/Fl_RGB_Image.H
|
||||
file.o: ../FL/Fl_Round_Button.H
|
||||
file.o: ../FL/Fl_Scheme.H
|
||||
file.o: ../FL/Fl_Scheme_Choice.H
|
||||
file.o: ../FL/Fl_Scrollbar.H
|
||||
file.o: ../FL/Fl_Shared_Image.H
|
||||
file.o: ../FL/Fl_Simple_Terminal.H
|
||||
|
@ -374,6 +390,7 @@ file.o: Fl_Type.h
|
|||
file.o: Fl_Widget_Type.h
|
||||
file.o: Fl_Window_Type.h
|
||||
file.o: shell_command.h
|
||||
file.o: undo.h
|
||||
file.o: widget_browser.h
|
||||
fluid.o: ../config.h
|
||||
fluid.o: ../FL/Enumerations.H
|
||||
|
@ -427,6 +444,8 @@ fluid.o: ../FL/Fl_Repeat_Button.H
|
|||
fluid.o: ../FL/Fl_Return_Button.H
|
||||
fluid.o: ../FL/Fl_RGB_Image.H
|
||||
fluid.o: ../FL/Fl_Round_Button.H
|
||||
fluid.o: ../FL/Fl_Scheme.H
|
||||
fluid.o: ../FL/Fl_Scheme_Choice.H
|
||||
fluid.o: ../FL/Fl_Scrollbar.H
|
||||
fluid.o: ../FL/Fl_Shared_Image.H
|
||||
fluid.o: ../FL/Fl_Simple_Terminal.H
|
||||
|
@ -474,6 +493,7 @@ Fluid_Image.o: ../config.h
|
|||
Fluid_Image.o: ../FL/Enumerations.H
|
||||
Fluid_Image.o: ../FL/filename.H
|
||||
Fluid_Image.o: ../FL/Fl.H
|
||||
Fluid_Image.o: ../FL/Fl_Anim_GIF_Image.H
|
||||
Fluid_Image.o: ../FL/fl_ask.H
|
||||
Fluid_Image.o: ../FL/fl_attr.h
|
||||
Fluid_Image.o: ../FL/Fl_Bitmap.H
|
||||
|
@ -495,6 +515,7 @@ Fluid_Image.o: ../FL/Fl_File_Chooser.H
|
|||
Fluid_Image.o: ../FL/Fl_File_Icon.H
|
||||
Fluid_Image.o: ../FL/Fl_File_Input.H
|
||||
Fluid_Image.o: ../FL/Fl_Flex.H
|
||||
Fluid_Image.o: ../FL/Fl_GIF_Image.H
|
||||
Fluid_Image.o: ../FL/Fl_Graphics_Driver.H
|
||||
Fluid_Image.o: ../FL/Fl_Group.H
|
||||
Fluid_Image.o: ../FL/Fl_Image.H
|
||||
|
@ -514,6 +535,7 @@ Fluid_Image.o: ../FL/Fl_RGB_Image.H
|
|||
Fluid_Image.o: ../FL/Fl_Shared_Image.H
|
||||
Fluid_Image.o: ../FL/Fl_String.H
|
||||
Fluid_Image.o: ../FL/fl_string_functions.h
|
||||
Fluid_Image.o: ../FL/Fl_SVG_Image.H
|
||||
Fluid_Image.o: ../FL/Fl_Tabs.H
|
||||
Fluid_Image.o: ../FL/Fl_Tile.H
|
||||
Fluid_Image.o: ../FL/fl_types.h
|
||||
|
@ -696,6 +718,8 @@ Fl_Menu_Type.o: ../FL/Fl_Repeat_Button.H
|
|||
Fl_Menu_Type.o: ../FL/Fl_Return_Button.H
|
||||
Fl_Menu_Type.o: ../FL/Fl_RGB_Image.H
|
||||
Fl_Menu_Type.o: ../FL/Fl_Round_Button.H
|
||||
Fl_Menu_Type.o: ../FL/Fl_Scheme.H
|
||||
Fl_Menu_Type.o: ../FL/Fl_Scheme_Choice.H
|
||||
Fl_Menu_Type.o: ../FL/Fl_Scrollbar.H
|
||||
Fl_Menu_Type.o: ../FL/Fl_Shared_Image.H
|
||||
Fl_Menu_Type.o: ../FL/Fl_Simple_Terminal.H
|
||||
|
@ -821,6 +845,8 @@ Fl_Widget_Type.o: ../FL/Fl_Repeat_Button.H
|
|||
Fl_Widget_Type.o: ../FL/Fl_Return_Button.H
|
||||
Fl_Widget_Type.o: ../FL/Fl_RGB_Image.H
|
||||
Fl_Widget_Type.o: ../FL/Fl_Round_Button.H
|
||||
Fl_Widget_Type.o: ../FL/Fl_Scheme.H
|
||||
Fl_Widget_Type.o: ../FL/Fl_Scheme_Choice.H
|
||||
Fl_Widget_Type.o: ../FL/Fl_Scroll.H
|
||||
Fl_Widget_Type.o: ../FL/Fl_Scrollbar.H
|
||||
Fl_Widget_Type.o: ../FL/Fl_Shared_Image.H
|
||||
|
@ -907,7 +933,10 @@ Fl_Window_Type.o: ../FL/Fl_Repeat_Button.H
|
|||
Fl_Window_Type.o: ../FL/Fl_Return_Button.H
|
||||
Fl_Window_Type.o: ../FL/Fl_RGB_Image.H
|
||||
Fl_Window_Type.o: ../FL/Fl_Round_Button.H
|
||||
Fl_Window_Type.o: ../FL/Fl_Scheme.H
|
||||
Fl_Window_Type.o: ../FL/Fl_Scheme_Choice.H
|
||||
Fl_Window_Type.o: ../FL/Fl_Scrollbar.H
|
||||
Fl_Window_Type.o: ../FL/Fl_Shared_Image.H
|
||||
Fl_Window_Type.o: ../FL/Fl_Simple_Terminal.H
|
||||
Fl_Window_Type.o: ../FL/Fl_Slider.H
|
||||
Fl_Window_Type.o: ../FL/Fl_Spinner.H
|
||||
|
@ -949,6 +978,7 @@ Fl_Window_Type.o: widget_panel.h
|
|||
function_panel.o: ../FL/Enumerations.H
|
||||
function_panel.o: ../FL/filename.H
|
||||
function_panel.o: ../FL/Fl.H
|
||||
function_panel.o: ../FL/fl_attr.h
|
||||
function_panel.o: ../FL/Fl_Bitmap.H
|
||||
function_panel.o: ../FL/Fl_Box.H
|
||||
function_panel.o: ../FL/Fl_Browser_.H
|
||||
|
@ -990,6 +1020,7 @@ function_panel.o: ../FL/Fl_Valuator.H
|
|||
function_panel.o: ../FL/Fl_Widget.H
|
||||
function_panel.o: ../FL/Fl_Window.H
|
||||
function_panel.o: ../FL/platform_types.h
|
||||
function_panel.o: code.h
|
||||
function_panel.o: CodeEditor.h
|
||||
function_panel.o: factory.h
|
||||
function_panel.o: fluid.h
|
||||
|
@ -1004,6 +1035,7 @@ pixmaps.o: ../FL/Fl_Image.H
|
|||
pixmaps.o: ../FL/Fl_Pixmap.H
|
||||
pixmaps.o: pixmaps.h
|
||||
pixmaps.o: pixmaps/bind.xpm
|
||||
pixmaps.o: pixmaps/compressed.xpm
|
||||
pixmaps.o: pixmaps/flAdjuster.xpm
|
||||
pixmaps.o: pixmaps/flBox.xpm
|
||||
pixmaps.o: pixmaps/flBrowser.xpm
|
||||
|
@ -1099,6 +1131,8 @@ shell_command.o: ../FL/Fl_Repeat_Button.H
|
|||
shell_command.o: ../FL/Fl_Return_Button.H
|
||||
shell_command.o: ../FL/Fl_RGB_Image.H
|
||||
shell_command.o: ../FL/Fl_Round_Button.H
|
||||
shell_command.o: ../FL/Fl_Scheme.H
|
||||
shell_command.o: ../FL/Fl_Scheme_Choice.H
|
||||
shell_command.o: ../FL/Fl_Scrollbar.H
|
||||
shell_command.o: ../FL/Fl_Simple_Terminal.H
|
||||
shell_command.o: ../FL/Fl_Slider.H
|
||||
|
@ -1123,6 +1157,7 @@ Shortcut_Button.o: ../config.h
|
|||
Shortcut_Button.o: ../FL/Enumerations.H
|
||||
Shortcut_Button.o: ../FL/filename.H
|
||||
Shortcut_Button.o: ../FL/Fl.H
|
||||
Shortcut_Button.o: ../FL/fl_attr.h
|
||||
Shortcut_Button.o: ../FL/Fl_Bitmap.H
|
||||
Shortcut_Button.o: ../FL/Fl_Box.H
|
||||
Shortcut_Button.o: ../FL/Fl_Browser_.H
|
||||
|
@ -1171,6 +1206,7 @@ Shortcut_Button.o: ../FL/platform.H
|
|||
Shortcut_Button.o: ../FL/platform_types.h
|
||||
Shortcut_Button.o: ../FL/x11.H
|
||||
Shortcut_Button.o: ../src/flstring.h
|
||||
Shortcut_Button.o: code.h
|
||||
Shortcut_Button.o: CodeEditor.h
|
||||
Shortcut_Button.o: factory.h
|
||||
Shortcut_Button.o: fluid.h
|
||||
|
@ -1250,6 +1286,7 @@ undo.o: ../FL/Fl_Widget.H
|
|||
undo.o: ../FL/Fl_Window.H
|
||||
undo.o: ../FL/platform_types.h
|
||||
undo.o: ../src/flstring.h
|
||||
undo.o: code.h
|
||||
undo.o: file.h
|
||||
undo.o: fluid.h
|
||||
undo.o: Fl_Type.h
|
||||
|
@ -1259,6 +1296,7 @@ undo.o: widget_browser.h
|
|||
widget_browser.o: ../FL/Enumerations.H
|
||||
widget_browser.o: ../FL/filename.H
|
||||
widget_browser.o: ../FL/Fl.H
|
||||
widget_browser.o: ../FL/fl_attr.h
|
||||
widget_browser.o: ../FL/Fl_Bitmap.H
|
||||
widget_browser.o: ../FL/Fl_Browser_.H
|
||||
widget_browser.o: ../FL/Fl_Cairo.H
|
||||
|
@ -1283,6 +1321,7 @@ widget_browser.o: ../FL/fl_utf8.h
|
|||
widget_browser.o: ../FL/Fl_Valuator.H
|
||||
widget_browser.o: ../FL/Fl_Widget.H
|
||||
widget_browser.o: ../FL/platform_types.h
|
||||
widget_browser.o: code.h
|
||||
widget_browser.o: fluid.h
|
||||
widget_browser.o: Fl_Type.h
|
||||
widget_browser.o: Fl_Widget_Type.h
|
||||
|
@ -1290,6 +1329,7 @@ widget_browser.o: pixmaps.h
|
|||
widget_browser.o: widget_browser.h
|
||||
widget_panel.o: ../FL/Enumerations.H
|
||||
widget_panel.o: ../FL/Fl.H
|
||||
widget_panel.o: ../FL/fl_attr.h
|
||||
widget_panel.o: ../FL/Fl_Bitmap.H
|
||||
widget_panel.o: ../FL/Fl_Box.H
|
||||
widget_panel.o: ../FL/Fl_Button.H
|
||||
|
@ -1332,6 +1372,7 @@ widget_panel.o: ../FL/Fl_Value_Input.H
|
|||
widget_panel.o: ../FL/Fl_Widget.H
|
||||
widget_panel.o: ../FL/Fl_Window.H
|
||||
widget_panel.o: ../FL/platform_types.h
|
||||
widget_panel.o: code.h
|
||||
widget_panel.o: CodeEditor.h
|
||||
widget_panel.o: Fl_Type.h
|
||||
widget_panel.o: Fl_Widget_Type.h
|
||||
|
|
|
@ -258,7 +258,7 @@ int Fl::event_inside(const Fl_Widget *o) /*const*/ {
|
|||
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().
|
||||
|
||||
|
@ -2084,7 +2084,7 @@ int Fl::clipboard_contains(const char *type)
|
|||
Under UNIX/Linux/macOS <I>any</I> 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.
|
||||
*/
|
||||
void Fl::add_fd(int fd, int when, Fl_FD_Handler cb, void *d)
|
||||
|
|
|
@ -820,7 +820,7 @@ void Fl_Anim_GIF_Image::draw(int x, int y, int w, int h,
|
|||
Fl_RGB_Image *rgb = fi_->frames[f].rgb;
|
||||
if (rgb) {
|
||||
float s = Fl_Graphics_Driver::default_driver().scale();
|
||||
rgb->scale(s*fi_->frames[f].w, s*fi_->frames[f].h, 0, 1);
|
||||
rgb->scale(s*fi_->frames[f].w, s*fi_->frames[f].h, 0, 1);
|
||||
rgb->draw(x + s*fi_->frames[f].x, y + s*fi_->frames[f].y, w, h, cx, cy);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -179,10 +179,10 @@ int Fl::awake(Fl_Awake_Handler func, void *data) {
|
|||
argument will trigger event loop handling in the main thread. Since
|
||||
it is not possible to call Fl::flush() from a subsidiary thread,
|
||||
Fl::awake() is the best (and only, really) substitute.
|
||||
|
||||
|
||||
It's \e not necessary to wrap calls to any form of Fl::awake() by Fl::lock() and Fl::unlock().
|
||||
Nevertheless, the early, single call to Fl::lock() used to initialize threading support is necessary.
|
||||
|
||||
|
||||
Function Fl::awake() in all its forms is typically called by worker threads, but it can be used safely
|
||||
by the main thread too, as a means to break the event loop.
|
||||
|
||||
|
|
|
@ -996,7 +996,7 @@ static const char *get_prog_name() {
|
|||
the source window and the display top. FLTK can later reposition the same tall popup,
|
||||
without the constraint not to go beyond the display top, at the exact position so that
|
||||
the desired series of menu items appear in the visible part of the tall popup.
|
||||
|
||||
|
||||
In case 1) above, the values that represent the display bounds are given very
|
||||
large values. That's done by member function Fl_Wayland_Window_Driver::menu_window_area().
|
||||
Consequently, FLTK computes an initial layout of future popups relatively to
|
||||
|
@ -1010,7 +1010,7 @@ static const char *get_prog_name() {
|
|||
process_menu_or_tooltip(), makeWindow() calls Fl_Window::wait_for_expose() so its constrained
|
||||
position is known before computing the position of the next popup. This ensures each
|
||||
popup is correctly placed relatively to its parent.
|
||||
|
||||
|
||||
Groups of popups containing a menutitle, the associated menuwindow, and optionally
|
||||
a submenu window and that don't belong to an Fl_Menu_Bar are mapped in a different order:
|
||||
the menuwindow is mapped first, and the menutitle is mapped second above it as a child popup.
|
||||
|
@ -1019,7 +1019,7 @@ static const char *get_prog_name() {
|
|||
the menutitle is mapped only after the menuwindow has been mapped, as a child of it.
|
||||
This positions better the popup group in the display relatively to where the popup
|
||||
was created.
|
||||
|
||||
|
||||
In case 2) above, a tall popup is mapped with XDG_POSITIONER_CONSTRAINT_ADJUSTMENT_SLIDE_Y
|
||||
which puts its top at the display top border. The Wayland system then calls the
|
||||
popup_configure() callback function with the x,y coordinates of the top left corner
|
||||
|
|
257
src/makedepend
257
src/makedepend
File diff suppressed because it is too large
Load Diff
107
test/makedepend
107
test/makedepend
|
@ -3,6 +3,7 @@
|
|||
adjuster.o: ../FL/Enumerations.H
|
||||
adjuster.o: ../FL/Fl.H
|
||||
adjuster.o: ../FL/Fl_Adjuster.H
|
||||
adjuster.o: ../FL/fl_attr.h
|
||||
adjuster.o: ../FL/Fl_Bitmap.H
|
||||
adjuster.o: ../FL/Fl_Box.H
|
||||
adjuster.o: ../FL/Fl_Cairo.H
|
||||
|
@ -20,6 +21,7 @@ adjuster.o: ../FL/Fl_Window.H
|
|||
adjuster.o: ../FL/platform_types.h
|
||||
animated.o: ../FL/Enumerations.H
|
||||
animated.o: ../FL/Fl.H
|
||||
animated.o: ../FL/fl_attr.h
|
||||
animated.o: ../FL/Fl_Bitmap.H
|
||||
animated.o: ../FL/Fl_Button.H
|
||||
animated.o: ../FL/Fl_Cairo.H
|
||||
|
@ -46,6 +48,7 @@ animated.o: ../FL/platform_types.h
|
|||
animated.o: ../FL/x11.H
|
||||
arc.o: ../FL/Enumerations.H
|
||||
arc.o: ../FL/Fl.H
|
||||
arc.o: ../FL/fl_attr.h
|
||||
arc.o: ../FL/Fl_Bitmap.H
|
||||
arc.o: ../FL/Fl_Cairo.H
|
||||
arc.o: ../FL/fl_casts.H
|
||||
|
@ -96,6 +99,7 @@ ask.o: ../FL/Fl_Window.H
|
|||
ask.o: ../FL/platform_types.h
|
||||
bitmap.o: ../FL/Enumerations.H
|
||||
bitmap.o: ../FL/Fl.H
|
||||
bitmap.o: ../FL/fl_attr.h
|
||||
bitmap.o: ../FL/Fl_Bitmap.H
|
||||
bitmap.o: ../FL/Fl_Button.H
|
||||
bitmap.o: ../FL/Fl_Cairo.H
|
||||
|
@ -115,6 +119,7 @@ bitmap.o: pixmaps/sorceress.xbm
|
|||
blocks.o: ../config.h
|
||||
blocks.o: ../FL/Enumerations.H
|
||||
blocks.o: ../FL/Fl.H
|
||||
blocks.o: ../FL/fl_attr.h
|
||||
blocks.o: ../FL/Fl_Bitmap.H
|
||||
blocks.o: ../FL/Fl_Button.H
|
||||
blocks.o: ../FL/Fl_Cairo.H
|
||||
|
@ -159,10 +164,12 @@ blocks.o: pixmaps/yellow.xpm
|
|||
blocks.o: pixmaps/yellow_bomb.xpm
|
||||
boxtype.o: ../FL/Enumerations.H
|
||||
boxtype.o: ../FL/Fl.H
|
||||
boxtype.o: ../FL/fl_attr.h
|
||||
boxtype.o: ../FL/Fl_Bitmap.H
|
||||
boxtype.o: ../FL/Fl_Box.H
|
||||
boxtype.o: ../FL/Fl_Button.H
|
||||
boxtype.o: ../FL/Fl_Cairo.H
|
||||
boxtype.o: ../FL/fl_casts.H
|
||||
boxtype.o: ../FL/Fl_Choice.H
|
||||
boxtype.o: ../FL/fl_config.h
|
||||
boxtype.o: ../FL/Fl_Device.H
|
||||
boxtype.o: ../FL/Fl_Double_Window.H
|
||||
|
@ -171,11 +178,15 @@ boxtype.o: ../FL/Fl_Export.H
|
|||
boxtype.o: ../FL/Fl_Graphics_Driver.H
|
||||
boxtype.o: ../FL/Fl_Group.H
|
||||
boxtype.o: ../FL/Fl_Image.H
|
||||
boxtype.o: ../FL/Fl_Menu_.H
|
||||
boxtype.o: ../FL/Fl_Menu_Item.H
|
||||
boxtype.o: ../FL/Fl_Pixmap.H
|
||||
boxtype.o: ../FL/Fl_Plugin.H
|
||||
boxtype.o: ../FL/Fl_Preferences.H
|
||||
boxtype.o: ../FL/Fl_Rect.H
|
||||
boxtype.o: ../FL/Fl_RGB_Image.H
|
||||
boxtype.o: ../FL/Fl_Scheme.H
|
||||
boxtype.o: ../FL/Fl_Scheme_Choice.H
|
||||
boxtype.o: ../FL/fl_types.h
|
||||
boxtype.o: ../FL/fl_utf8.h
|
||||
boxtype.o: ../FL/Fl_Widget.H
|
||||
|
@ -243,19 +254,25 @@ button.o: ../FL/Fl_Window.H
|
|||
button.o: ../FL/platform_types.h
|
||||
buttons.o: ../FL/Enumerations.H
|
||||
buttons.o: ../FL/Fl.H
|
||||
buttons.o: ../FL/fl_attr.h
|
||||
buttons.o: ../FL/Fl_Bitmap.H
|
||||
buttons.o: ../FL/Fl_Button.H
|
||||
buttons.o: ../FL/Fl_Cairo.H
|
||||
buttons.o: ../FL/fl_casts.H
|
||||
buttons.o: ../FL/Fl_Check_Button.H
|
||||
buttons.o: ../FL/Fl_Choice.H
|
||||
buttons.o: ../FL/fl_config.h
|
||||
buttons.o: ../FL/Fl_Export.H
|
||||
buttons.o: ../FL/Fl_Group.H
|
||||
buttons.o: ../FL/Fl_Image.H
|
||||
buttons.o: ../FL/Fl_Light_Button.H
|
||||
buttons.o: ../FL/Fl_Menu_.H
|
||||
buttons.o: ../FL/Fl_Menu_Item.H
|
||||
buttons.o: ../FL/Fl_Repeat_Button.H
|
||||
buttons.o: ../FL/Fl_Return_Button.H
|
||||
buttons.o: ../FL/Fl_Round_Button.H
|
||||
buttons.o: ../FL/Fl_Scheme.H
|
||||
buttons.o: ../FL/Fl_Scheme_Choice.H
|
||||
buttons.o: ../FL/fl_types.h
|
||||
buttons.o: ../FL/fl_utf8.h
|
||||
buttons.o: ../FL/Fl_Widget.H
|
||||
|
@ -263,6 +280,7 @@ buttons.o: ../FL/Fl_Window.H
|
|||
buttons.o: ../FL/platform_types.h
|
||||
cairo_test.o: ../FL/Enumerations.H
|
||||
cairo_test.o: ../FL/Fl.H
|
||||
cairo_test.o: ../FL/fl_attr.h
|
||||
cairo_test.o: ../FL/Fl_Bitmap.H
|
||||
cairo_test.o: ../FL/Fl_Box.H
|
||||
cairo_test.o: ../FL/Fl_Cairo.H
|
||||
|
@ -378,6 +396,7 @@ clipboard.o: ../FL/Fl_Window.H
|
|||
clipboard.o: ../FL/platform_types.h
|
||||
clock.o: ../FL/Enumerations.H
|
||||
clock.o: ../FL/Fl.H
|
||||
clock.o: ../FL/fl_attr.h
|
||||
clock.o: ../FL/Fl_Bitmap.H
|
||||
clock.o: ../FL/Fl_Cairo.H
|
||||
clock.o: ../FL/fl_casts.H
|
||||
|
@ -424,6 +443,7 @@ colbrowser.o: ../FL/platform_types.h
|
|||
color_chooser.o: ../config.h
|
||||
color_chooser.o: ../FL/Enumerations.H
|
||||
color_chooser.o: ../FL/Fl.H
|
||||
color_chooser.o: ../FL/fl_attr.h
|
||||
color_chooser.o: ../FL/Fl_Bitmap.H
|
||||
color_chooser.o: ../FL/Fl_Box.H
|
||||
color_chooser.o: ../FL/Fl_Button.H
|
||||
|
@ -461,6 +481,7 @@ color_chooser.o: ../FL/x11.H
|
|||
color_chooser.o: list_visuals.cxx
|
||||
contrast.o: ../FL/Enumerations.H
|
||||
contrast.o: ../FL/Fl.H
|
||||
contrast.o: ../FL/fl_attr.h
|
||||
contrast.o: ../FL/Fl_Bitmap.H
|
||||
contrast.o: ../FL/Fl_Box.H
|
||||
contrast.o: ../FL/Fl_Button.H
|
||||
|
@ -543,6 +564,7 @@ cube.o: ../FL/platform_types.h
|
|||
CubeMain.o: ../config.h
|
||||
CubeMain.o: ../FL/Enumerations.H
|
||||
CubeMain.o: ../FL/Fl.H
|
||||
CubeMain.o: ../FL/fl_attr.h
|
||||
CubeMain.o: ../FL/Fl_Bitmap.H
|
||||
CubeMain.o: ../FL/Fl_Box.H
|
||||
CubeMain.o: ../FL/Fl_Cairo.H
|
||||
|
@ -568,6 +590,7 @@ CubeMain.o: CubeViewUI.h
|
|||
CubeView.o: ../config.h
|
||||
CubeView.o: ../FL/Enumerations.H
|
||||
CubeView.o: ../FL/Fl.H
|
||||
CubeView.o: ../FL/fl_attr.h
|
||||
CubeView.o: ../FL/Fl_Bitmap.H
|
||||
CubeView.o: ../FL/Fl_Cairo.H
|
||||
CubeView.o: ../FL/fl_casts.H
|
||||
|
@ -585,6 +608,7 @@ CubeView.o: ../FL/platform_types.h
|
|||
CubeView.o: CubeView.h
|
||||
cursor.o: ../FL/Enumerations.H
|
||||
cursor.o: ../FL/Fl.H
|
||||
cursor.o: ../FL/fl_attr.h
|
||||
cursor.o: ../FL/Fl_Bitmap.H
|
||||
cursor.o: ../FL/Fl_Box.H
|
||||
cursor.o: ../FL/Fl_Cairo.H
|
||||
|
@ -616,6 +640,7 @@ cursor.o: ../FL/Fl_Window.H
|
|||
cursor.o: ../FL/platform_types.h
|
||||
curve.o: ../FL/Enumerations.H
|
||||
curve.o: ../FL/Fl.H
|
||||
curve.o: ../FL/fl_attr.h
|
||||
curve.o: ../FL/Fl_Bitmap.H
|
||||
curve.o: ../FL/Fl_Button.H
|
||||
curve.o: ../FL/Fl_Cairo.H
|
||||
|
@ -670,6 +695,8 @@ demo.o: ../FL/Fl_Plugin.H
|
|||
demo.o: ../FL/Fl_Preferences.H
|
||||
demo.o: ../FL/Fl_Rect.H
|
||||
demo.o: ../FL/Fl_RGB_Image.H
|
||||
demo.o: ../FL/Fl_Scheme.H
|
||||
demo.o: ../FL/Fl_Scheme_Choice.H
|
||||
demo.o: ../FL/Fl_Scrollbar.H
|
||||
demo.o: ../FL/Fl_Simple_Terminal.H
|
||||
demo.o: ../FL/Fl_Slider.H
|
||||
|
@ -748,6 +775,7 @@ device.o: pixmaps/porsche.xpm
|
|||
device.o: pixmaps/sorceress.xbm
|
||||
doublebuffer.o: ../FL/Enumerations.H
|
||||
doublebuffer.o: ../FL/Fl.H
|
||||
doublebuffer.o: ../FL/fl_attr.h
|
||||
doublebuffer.o: ../FL/Fl_Bitmap.H
|
||||
doublebuffer.o: ../FL/Fl_Box.H
|
||||
doublebuffer.o: ../FL/Fl_Cairo.H
|
||||
|
@ -832,6 +860,7 @@ editor.o: ../FL/platform_types.h
|
|||
editor.o: ../FL/x11.H
|
||||
fast_slow.o: ../FL/Enumerations.H
|
||||
fast_slow.o: ../FL/Fl.H
|
||||
fast_slow.o: ../FL/fl_attr.h
|
||||
fast_slow.o: ../FL/Fl_Bitmap.H
|
||||
fast_slow.o: ../FL/Fl_Box.H
|
||||
fast_slow.o: ../FL/Fl_Cairo.H
|
||||
|
@ -904,6 +933,7 @@ file_chooser.o: ../FL/Fl_Window.H
|
|||
file_chooser.o: ../FL/platform_types.h
|
||||
flex_demo.o: ../FL/Enumerations.H
|
||||
flex_demo.o: ../FL/Fl.H
|
||||
flex_demo.o: ../FL/fl_attr.h
|
||||
flex_demo.o: ../FL/Fl_Bitmap.H
|
||||
flex_demo.o: ../FL/Fl_Box.H
|
||||
flex_demo.o: ../FL/Fl_Button.H
|
||||
|
@ -924,6 +954,7 @@ flex_demo.o: ../FL/Fl_Window.H
|
|||
flex_demo.o: ../FL/platform_types.h
|
||||
flex_login.o: ../FL/Enumerations.H
|
||||
flex_login.o: ../FL/Fl.H
|
||||
flex_login.o: ../FL/fl_attr.h
|
||||
flex_login.o: ../FL/Fl_Bitmap.H
|
||||
flex_login.o: ../FL/Fl_Box.H
|
||||
flex_login.o: ../FL/Fl_Button.H
|
||||
|
@ -1074,6 +1105,7 @@ forms.o: pixmaps/sorceress.xbm
|
|||
fractals.o: ../config.h
|
||||
fractals.o: ../FL/Enumerations.H
|
||||
fractals.o: ../FL/Fl.H
|
||||
fractals.o: ../FL/fl_attr.h
|
||||
fractals.o: ../FL/Fl_Bitmap.H
|
||||
fractals.o: ../FL/Fl_Button.H
|
||||
fractals.o: ../FL/Fl_Cairo.H
|
||||
|
@ -1095,6 +1127,7 @@ fractals.o: fracviewer.h
|
|||
fracviewer.o: ../config.h
|
||||
fracviewer.o: ../FL/Enumerations.H
|
||||
fracviewer.o: ../FL/Fl.H
|
||||
fracviewer.o: ../FL/fl_attr.h
|
||||
fracviewer.o: ../FL/Fl_Bitmap.H
|
||||
fracviewer.o: ../FL/Fl_Cairo.H
|
||||
fracviewer.o: ../FL/fl_casts.H
|
||||
|
@ -1151,6 +1184,7 @@ fullscreen.o: ../FL/platform_types.h
|
|||
glpuzzle.o: ../config.h
|
||||
glpuzzle.o: ../FL/Enumerations.H
|
||||
glpuzzle.o: ../FL/Fl.H
|
||||
glpuzzle.o: ../FL/fl_attr.h
|
||||
glpuzzle.o: ../FL/Fl_Bitmap.H
|
||||
glpuzzle.o: ../FL/Fl_Cairo.H
|
||||
glpuzzle.o: ../FL/fl_casts.H
|
||||
|
@ -1172,6 +1206,7 @@ glpuzzle.o: trackball.h
|
|||
gl_overlay.o: ../config.h
|
||||
gl_overlay.o: ../FL/Enumerations.H
|
||||
gl_overlay.o: ../FL/Fl.H
|
||||
gl_overlay.o: ../FL/fl_attr.h
|
||||
gl_overlay.o: ../FL/Fl_Bitmap.H
|
||||
gl_overlay.o: ../FL/Fl_Button.H
|
||||
gl_overlay.o: ../FL/Fl_Cairo.H
|
||||
|
@ -1194,6 +1229,7 @@ gl_overlay.o: ../FL/math.h
|
|||
gl_overlay.o: ../FL/platform_types.h
|
||||
hello.o: ../FL/Enumerations.H
|
||||
hello.o: ../FL/Fl.H
|
||||
hello.o: ../FL/fl_attr.h
|
||||
hello.o: ../FL/Fl_Bitmap.H
|
||||
hello.o: ../FL/Fl_Box.H
|
||||
hello.o: ../FL/Fl_Cairo.H
|
||||
|
@ -1210,6 +1246,7 @@ hello.o: ../FL/platform_types.h
|
|||
help_dialog.o: ../FL/Enumerations.H
|
||||
help_dialog.o: ../FL/filename.H
|
||||
help_dialog.o: ../FL/Fl.H
|
||||
help_dialog.o: ../FL/fl_attr.h
|
||||
help_dialog.o: ../FL/Fl_Bitmap.H
|
||||
help_dialog.o: ../FL/Fl_Box.H
|
||||
help_dialog.o: ../FL/Fl_Button.H
|
||||
|
@ -1220,6 +1257,7 @@ help_dialog.o: ../FL/Fl_Device.H
|
|||
help_dialog.o: ../FL/Fl_Double_Window.H
|
||||
help_dialog.o: ../FL/fl_draw.H
|
||||
help_dialog.o: ../FL/Fl_Export.H
|
||||
help_dialog.o: ../FL/Fl_GIF_Image.H
|
||||
help_dialog.o: ../FL/Fl_Graphics_Driver.H
|
||||
help_dialog.o: ../FL/Fl_Group.H
|
||||
help_dialog.o: ../FL/Fl_Help_Dialog.H
|
||||
|
@ -1242,6 +1280,7 @@ help_dialog.o: ../FL/Fl_Window.H
|
|||
help_dialog.o: ../FL/platform_types.h
|
||||
icon.o: ../FL/Enumerations.H
|
||||
icon.o: ../FL/Fl.H
|
||||
icon.o: ../FL/fl_attr.h
|
||||
icon.o: ../FL/Fl_Bitmap.H
|
||||
icon.o: ../FL/Fl_Cairo.H
|
||||
icon.o: ../FL/fl_casts.H
|
||||
|
@ -1261,6 +1300,7 @@ icon.o: ../FL/Fl_Window.H
|
|||
icon.o: ../FL/platform_types.h
|
||||
iconize.o: ../FL/Enumerations.H
|
||||
iconize.o: ../FL/Fl.H
|
||||
iconize.o: ../FL/fl_attr.h
|
||||
iconize.o: ../FL/Fl_Bitmap.H
|
||||
iconize.o: ../FL/Fl_Box.H
|
||||
iconize.o: ../FL/Fl_Button.H
|
||||
|
@ -1278,6 +1318,7 @@ iconize.o: ../FL/platform_types.h
|
|||
image.o: ../config.h
|
||||
image.o: ../FL/Enumerations.H
|
||||
image.o: ../FL/Fl.H
|
||||
image.o: ../FL/fl_attr.h
|
||||
image.o: ../FL/Fl_Bitmap.H
|
||||
image.o: ../FL/Fl_Button.H
|
||||
image.o: ../FL/Fl_Cairo.H
|
||||
|
@ -1298,6 +1339,7 @@ image.o: ../FL/x11.H
|
|||
image.o: list_visuals.cxx
|
||||
inactive.o: ../FL/Enumerations.H
|
||||
inactive.o: ../FL/Fl.H
|
||||
inactive.o: ../FL/fl_attr.h
|
||||
inactive.o: ../FL/Fl_Bitmap.H
|
||||
inactive.o: ../FL/Fl_Box.H
|
||||
inactive.o: ../FL/Fl_Button.H
|
||||
|
@ -1331,6 +1373,7 @@ inactive.o: ../FL/platform_types.h
|
|||
inactive.o: inactive.h
|
||||
input.o: ../FL/Enumerations.H
|
||||
input.o: ../FL/Fl.H
|
||||
input.o: ../FL/fl_attr.h
|
||||
input.o: ../FL/Fl_Bitmap.H
|
||||
input.o: ../FL/Fl_Box.H
|
||||
input.o: ../FL/Fl_Button.H
|
||||
|
@ -1375,6 +1418,7 @@ input.o: ../FL/Fl_Window.H
|
|||
input.o: ../FL/platform_types.h
|
||||
input_choice.o: ../FL/Enumerations.H
|
||||
input_choice.o: ../FL/Fl.H
|
||||
input_choice.o: ../FL/fl_attr.h
|
||||
input_choice.o: ../FL/Fl_Bitmap.H
|
||||
input_choice.o: ../FL/Fl_Button.H
|
||||
input_choice.o: ../FL/Fl_Cairo.H
|
||||
|
@ -1411,6 +1455,7 @@ input_choice.o: ../FL/Fl_Window.H
|
|||
input_choice.o: ../FL/platform_types.h
|
||||
keyboard.o: ../FL/Enumerations.H
|
||||
keyboard.o: ../FL/Fl.H
|
||||
keyboard.o: ../FL/fl_attr.h
|
||||
keyboard.o: ../FL/Fl_Bitmap.H
|
||||
keyboard.o: ../FL/Fl_Box.H
|
||||
keyboard.o: ../FL/Fl_Button.H
|
||||
|
@ -1433,6 +1478,7 @@ keyboard.o: keyboard.h
|
|||
keyboard.o: keyboard_ui.h
|
||||
label.o: ../FL/Enumerations.H
|
||||
label.o: ../FL/Fl.H
|
||||
label.o: ../FL/fl_attr.h
|
||||
label.o: ../FL/Fl_Bitmap.H
|
||||
label.o: ../FL/Fl_Box.H
|
||||
label.o: ../FL/Fl_Button.H
|
||||
|
@ -1469,6 +1515,7 @@ label.o: ../FL/platform_types.h
|
|||
label.o: pixmaps/blast.xpm
|
||||
line_style.o: ../FL/Enumerations.H
|
||||
line_style.o: ../FL/Fl.H
|
||||
line_style.o: ../FL/fl_attr.h
|
||||
line_style.o: ../FL/Fl_Bitmap.H
|
||||
line_style.o: ../FL/Fl_Box.H
|
||||
line_style.o: ../FL/Fl_Button.H
|
||||
|
@ -1510,6 +1557,7 @@ list_visuals.o: ../FL/platform_types.h
|
|||
list_visuals.o: ../FL/x11.H
|
||||
mandelbrot.o: ../FL/Enumerations.H
|
||||
mandelbrot.o: ../FL/Fl.H
|
||||
mandelbrot.o: ../FL/fl_attr.h
|
||||
mandelbrot.o: ../FL/Fl_Bitmap.H
|
||||
mandelbrot.o: ../FL/Fl_Box.H
|
||||
mandelbrot.o: ../FL/Fl_Button.H
|
||||
|
@ -1570,6 +1618,8 @@ menubar.o: ../FL/Fl_Plugin.H
|
|||
menubar.o: ../FL/Fl_Preferences.H
|
||||
menubar.o: ../FL/Fl_Rect.H
|
||||
menubar.o: ../FL/Fl_RGB_Image.H
|
||||
menubar.o: ../FL/Fl_Scheme.H
|
||||
menubar.o: ../FL/Fl_Scheme_Choice.H
|
||||
menubar.o: ../FL/Fl_Scrollbar.H
|
||||
menubar.o: ../FL/Fl_Simple_Terminal.H
|
||||
menubar.o: ../FL/Fl_Slider.H
|
||||
|
@ -1605,6 +1655,7 @@ message.o: ../FL/Fl_Window.H
|
|||
message.o: ../FL/platform_types.h
|
||||
minimum.o: ../FL/Enumerations.H
|
||||
minimum.o: ../FL/Fl.H
|
||||
minimum.o: ../FL/fl_attr.h
|
||||
minimum.o: ../FL/Fl_Bitmap.H
|
||||
minimum.o: ../FL/Fl_Box.H
|
||||
minimum.o: ../FL/Fl_Button.H
|
||||
|
@ -1679,6 +1730,7 @@ native-filechooser.o: ../FL/Fl_Window.H
|
|||
native-filechooser.o: ../FL/platform_types.h
|
||||
navigation.o: ../FL/Enumerations.H
|
||||
navigation.o: ../FL/Fl.H
|
||||
navigation.o: ../FL/fl_attr.h
|
||||
navigation.o: ../FL/Fl_Bitmap.H
|
||||
navigation.o: ../FL/Fl_Cairo.H
|
||||
navigation.o: ../FL/fl_casts.H
|
||||
|
@ -1696,6 +1748,7 @@ navigation.o: ../FL/Fl_Window.H
|
|||
navigation.o: ../FL/platform_types.h
|
||||
offscreen.o: ../FL/Enumerations.H
|
||||
offscreen.o: ../FL/Fl.H
|
||||
offscreen.o: ../FL/fl_attr.h
|
||||
offscreen.o: ../FL/Fl_Bitmap.H
|
||||
offscreen.o: ../FL/Fl_Box.H
|
||||
offscreen.o: ../FL/Fl_Cairo.H
|
||||
|
@ -1722,6 +1775,7 @@ offscreen.o: ../FL/platform_types.h
|
|||
offscreen.o: ../FL/x11.H
|
||||
output.o: ../FL/Enumerations.H
|
||||
output.o: ../FL/Fl.H
|
||||
output.o: ../FL/fl_attr.h
|
||||
output.o: ../FL/Fl_Bitmap.H
|
||||
output.o: ../FL/Fl_Box.H
|
||||
output.o: ../FL/Fl_Button.H
|
||||
|
@ -1757,6 +1811,7 @@ output.o: ../FL/Fl_Window.H
|
|||
output.o: ../FL/platform_types.h
|
||||
overlay.o: ../FL/Enumerations.H
|
||||
overlay.o: ../FL/Fl.H
|
||||
overlay.o: ../FL/fl_attr.h
|
||||
overlay.o: ../FL/Fl_Bitmap.H
|
||||
overlay.o: ../FL/Fl_Button.H
|
||||
overlay.o: ../FL/Fl_Cairo.H
|
||||
|
@ -1782,6 +1837,7 @@ overlay.o: ../FL/Fl_Window.H
|
|||
overlay.o: ../FL/platform_types.h
|
||||
pack.o: ../FL/Enumerations.H
|
||||
pack.o: ../FL/Fl.H
|
||||
pack.o: ../FL/fl_attr.h
|
||||
pack.o: ../FL/Fl_Bitmap.H
|
||||
pack.o: ../FL/Fl_Button.H
|
||||
pack.o: ../FL/Fl_Cairo.H
|
||||
|
@ -1806,6 +1862,8 @@ pack.o: ../FL/Fl_Window.H
|
|||
pack.o: ../FL/platform_types.h
|
||||
pixmap.o: ../FL/Enumerations.H
|
||||
pixmap.o: ../FL/Fl.H
|
||||
pixmap.o: ../FL/Fl_Anim_GIF_Image.H
|
||||
pixmap.o: ../FL/fl_attr.h
|
||||
pixmap.o: ../FL/Fl_Bitmap.H
|
||||
pixmap.o: ../FL/Fl_Button.H
|
||||
pixmap.o: ../FL/Fl_Cairo.H
|
||||
|
@ -1813,6 +1871,7 @@ pixmap.o: ../FL/fl_casts.H
|
|||
pixmap.o: ../FL/fl_config.h
|
||||
pixmap.o: ../FL/Fl_Double_Window.H
|
||||
pixmap.o: ../FL/Fl_Export.H
|
||||
pixmap.o: ../FL/Fl_GIF_Image.H
|
||||
pixmap.o: ../FL/Fl_Group.H
|
||||
pixmap.o: ../FL/Fl_Image.H
|
||||
pixmap.o: ../FL/Fl_Multi_Label.H
|
||||
|
@ -1823,7 +1882,7 @@ pixmap.o: ../FL/fl_utf8.h
|
|||
pixmap.o: ../FL/Fl_Widget.H
|
||||
pixmap.o: ../FL/Fl_Window.H
|
||||
pixmap.o: ../FL/platform_types.h
|
||||
pixmap.o: pixmaps/porsche.xpm
|
||||
pixmap.o: pixmaps/animated_fluid_gif.h
|
||||
pixmap_browser.o: ../config.h
|
||||
pixmap_browser.o: ../FL/Enumerations.H
|
||||
pixmap_browser.o: ../FL/filename.H
|
||||
|
@ -1847,6 +1906,7 @@ pixmap_browser.o: ../FL/Fl_File_Browser.H
|
|||
pixmap_browser.o: ../FL/Fl_File_Chooser.H
|
||||
pixmap_browser.o: ../FL/Fl_File_Icon.H
|
||||
pixmap_browser.o: ../FL/Fl_File_Input.H
|
||||
pixmap_browser.o: ../FL/Fl_GIF_Image.H
|
||||
pixmap_browser.o: ../FL/Fl_Group.H
|
||||
pixmap_browser.o: ../FL/Fl_Image.H
|
||||
pixmap_browser.o: ../FL/Fl_Input.H
|
||||
|
@ -1858,6 +1918,7 @@ pixmap_browser.o: ../FL/Fl_Menu_Item.H
|
|||
pixmap_browser.o: ../FL/fl_message.H
|
||||
pixmap_browser.o: ../FL/Fl_Native_File_Chooser.H
|
||||
pixmap_browser.o: ../FL/Fl_Paged_Device.H
|
||||
pixmap_browser.o: ../FL/Fl_Pixmap.H
|
||||
pixmap_browser.o: ../FL/Fl_Plugin.H
|
||||
pixmap_browser.o: ../FL/Fl_Preferences.H
|
||||
pixmap_browser.o: ../FL/Fl_Printer.H
|
||||
|
@ -1912,6 +1973,7 @@ preferences.o: ../FL/platform_types.h
|
|||
preferences.o: preferences.h
|
||||
radio.o: ../FL/Enumerations.H
|
||||
radio.o: ../FL/Fl.H
|
||||
radio.o: ../FL/fl_attr.h
|
||||
radio.o: ../FL/Fl_Bitmap.H
|
||||
radio.o: ../FL/Fl_Button.H
|
||||
radio.o: ../FL/Fl_Cairo.H
|
||||
|
@ -1936,6 +1998,7 @@ radio.o: ../FL/platform_types.h
|
|||
radio.o: radio.h
|
||||
resize-example1.o: ../FL/Enumerations.H
|
||||
resize-example1.o: ../FL/Fl.H
|
||||
resize-example1.o: ../FL/fl_attr.h
|
||||
resize-example1.o: ../FL/Fl_Bitmap.H
|
||||
resize-example1.o: ../FL/Fl_Box.H
|
||||
resize-example1.o: ../FL/Fl_Cairo.H
|
||||
|
@ -1953,6 +2016,7 @@ resize-example1.o: ../FL/platform_types.h
|
|||
resize-example1.o: resize-arrows.h
|
||||
resize-example2.o: ../FL/Enumerations.H
|
||||
resize-example2.o: ../FL/Fl.H
|
||||
resize-example2.o: ../FL/fl_attr.h
|
||||
resize-example2.o: ../FL/Fl_Bitmap.H
|
||||
resize-example2.o: ../FL/Fl_Box.H
|
||||
resize-example2.o: ../FL/Fl_Cairo.H
|
||||
|
@ -1970,6 +2034,7 @@ resize-example2.o: ../FL/platform_types.h
|
|||
resize-example2.o: resize-arrows.h
|
||||
resize-example3a.o: ../FL/Enumerations.H
|
||||
resize-example3a.o: ../FL/Fl.H
|
||||
resize-example3a.o: ../FL/fl_attr.h
|
||||
resize-example3a.o: ../FL/Fl_Bitmap.H
|
||||
resize-example3a.o: ../FL/Fl_Box.H
|
||||
resize-example3a.o: ../FL/Fl_Button.H
|
||||
|
@ -1988,6 +2053,7 @@ resize-example3a.o: ../FL/platform_types.h
|
|||
resize-example3a.o: resize-arrows.h
|
||||
resize-example3b.o: ../FL/Enumerations.H
|
||||
resize-example3b.o: ../FL/Fl.H
|
||||
resize-example3b.o: ../FL/fl_attr.h
|
||||
resize-example3b.o: ../FL/Fl_Bitmap.H
|
||||
resize-example3b.o: ../FL/Fl_Box.H
|
||||
resize-example3b.o: ../FL/Fl_Button.H
|
||||
|
@ -2006,6 +2072,7 @@ resize-example3b.o: ../FL/platform_types.h
|
|||
resize-example3b.o: resize-arrows.h
|
||||
resize-example3c.o: ../FL/Enumerations.H
|
||||
resize-example3c.o: ../FL/Fl.H
|
||||
resize-example3c.o: ../FL/fl_attr.h
|
||||
resize-example3c.o: ../FL/Fl_Bitmap.H
|
||||
resize-example3c.o: ../FL/Fl_Box.H
|
||||
resize-example3c.o: ../FL/Fl_Button.H
|
||||
|
@ -2024,6 +2091,7 @@ resize-example3c.o: ../FL/platform_types.h
|
|||
resize-example3c.o: resize-arrows.h
|
||||
resize-example4a.o: ../FL/Enumerations.H
|
||||
resize-example4a.o: ../FL/Fl.H
|
||||
resize-example4a.o: ../FL/fl_attr.h
|
||||
resize-example4a.o: ../FL/Fl_Bitmap.H
|
||||
resize-example4a.o: ../FL/Fl_Box.H
|
||||
resize-example4a.o: ../FL/Fl_Cairo.H
|
||||
|
@ -2041,6 +2109,7 @@ resize-example4a.o: ../FL/platform_types.h
|
|||
resize-example4a.o: resize-arrows.h
|
||||
resize-example4b.o: ../FL/Enumerations.H
|
||||
resize-example4b.o: ../FL/Fl.H
|
||||
resize-example4b.o: ../FL/fl_attr.h
|
||||
resize-example4b.o: ../FL/Fl_Bitmap.H
|
||||
resize-example4b.o: ../FL/Fl_Box.H
|
||||
resize-example4b.o: ../FL/Fl_Cairo.H
|
||||
|
@ -2058,6 +2127,7 @@ resize-example4b.o: ../FL/platform_types.h
|
|||
resize-example4b.o: resize-arrows.h
|
||||
resize-example5a.o: ../FL/Enumerations.H
|
||||
resize-example5a.o: ../FL/Fl.H
|
||||
resize-example5a.o: ../FL/fl_attr.h
|
||||
resize-example5a.o: ../FL/Fl_Bitmap.H
|
||||
resize-example5a.o: ../FL/Fl_Box.H
|
||||
resize-example5a.o: ../FL/Fl_Cairo.H
|
||||
|
@ -2075,6 +2145,7 @@ resize-example5a.o: ../FL/platform_types.h
|
|||
resize-example5a.o: resize-arrows.h
|
||||
resize-example5b.o: ../FL/Enumerations.H
|
||||
resize-example5b.o: ../FL/Fl.H
|
||||
resize-example5b.o: ../FL/fl_attr.h
|
||||
resize-example5b.o: ../FL/Fl_Bitmap.H
|
||||
resize-example5b.o: ../FL/Fl_Box.H
|
||||
resize-example5b.o: ../FL/Fl_Cairo.H
|
||||
|
@ -2092,6 +2163,7 @@ resize-example5b.o: ../FL/platform_types.h
|
|||
resize-example5b.o: resize-arrows.h
|
||||
resize-example5c.o: ../FL/Enumerations.H
|
||||
resize-example5c.o: ../FL/Fl.H
|
||||
resize-example5c.o: ../FL/fl_attr.h
|
||||
resize-example5c.o: ../FL/Fl_Bitmap.H
|
||||
resize-example5c.o: ../FL/Fl_Box.H
|
||||
resize-example5c.o: ../FL/Fl_Cairo.H
|
||||
|
@ -2109,6 +2181,7 @@ resize-example5c.o: ../FL/platform_types.h
|
|||
resize-example5c.o: resize-arrows.h
|
||||
resize.o: ../FL/Enumerations.H
|
||||
resize.o: ../FL/Fl.H
|
||||
resize.o: ../FL/fl_attr.h
|
||||
resize.o: ../FL/Fl_Bitmap.H
|
||||
resize.o: ../FL/Fl_Box.H
|
||||
resize.o: ../FL/Fl_Button.H
|
||||
|
@ -2157,6 +2230,7 @@ resizebox.o: ../FL/Fl_Window.H
|
|||
resizebox.o: ../FL/platform_types.h
|
||||
rotated_text.o: ../FL/Enumerations.H
|
||||
rotated_text.o: ../FL/Fl.H
|
||||
rotated_text.o: ../FL/fl_attr.h
|
||||
rotated_text.o: ../FL/Fl_Bitmap.H
|
||||
rotated_text.o: ../FL/Fl_Box.H
|
||||
rotated_text.o: ../FL/Fl_Button.H
|
||||
|
@ -2192,6 +2266,7 @@ rotated_text.o: ../FL/Fl_Window.H
|
|||
rotated_text.o: ../FL/platform_types.h
|
||||
scroll.o: ../FL/Enumerations.H
|
||||
scroll.o: ../FL/Fl.H
|
||||
scroll.o: ../FL/fl_attr.h
|
||||
scroll.o: ../FL/Fl_Bitmap.H
|
||||
scroll.o: ../FL/Fl_Box.H
|
||||
scroll.o: ../FL/Fl_Cairo.H
|
||||
|
@ -2226,6 +2301,7 @@ scroll.o: ../FL/platform_types.h
|
|||
shape.o: ../config.h
|
||||
shape.o: ../FL/Enumerations.H
|
||||
shape.o: ../FL/Fl.H
|
||||
shape.o: ../FL/fl_attr.h
|
||||
shape.o: ../FL/Fl_Bitmap.H
|
||||
shape.o: ../FL/Fl_Cairo.H
|
||||
shape.o: ../FL/fl_casts.H
|
||||
|
@ -2246,6 +2322,7 @@ shape.o: ../FL/math.h
|
|||
shape.o: ../FL/platform_types.h
|
||||
subwindow.o: ../FL/Enumerations.H
|
||||
subwindow.o: ../FL/Fl.H
|
||||
subwindow.o: ../FL/fl_attr.h
|
||||
subwindow.o: ../FL/Fl_Bitmap.H
|
||||
subwindow.o: ../FL/Fl_Box.H
|
||||
subwindow.o: ../FL/Fl_Button.H
|
||||
|
@ -2316,6 +2393,7 @@ sudoku.o: ../FL/x11.H
|
|||
sudoku.o: pixmaps/sudoku.xbm
|
||||
symbols.o: ../FL/Enumerations.H
|
||||
symbols.o: ../FL/Fl.H
|
||||
symbols.o: ../FL/fl_attr.h
|
||||
symbols.o: ../FL/Fl_Bitmap.H
|
||||
symbols.o: ../FL/Fl_Box.H
|
||||
symbols.o: ../FL/Fl_Cairo.H
|
||||
|
@ -2393,6 +2471,7 @@ tabs.o: ../FL/Fl_Box.H
|
|||
tabs.o: ../FL/Fl_Button.H
|
||||
tabs.o: ../FL/Fl_Cairo.H
|
||||
tabs.o: ../FL/fl_casts.H
|
||||
tabs.o: ../FL/Fl_Choice.H
|
||||
tabs.o: ../FL/Fl_Clock.H
|
||||
tabs.o: ../FL/fl_config.h
|
||||
tabs.o: ../FL/Fl_Double_Window.H
|
||||
|
@ -2401,6 +2480,8 @@ tabs.o: ../FL/Fl_Group.H
|
|||
tabs.o: ../FL/Fl_Image.H
|
||||
tabs.o: ../FL/Fl_Input.H
|
||||
tabs.o: ../FL/Fl_Input_.H
|
||||
tabs.o: ../FL/Fl_Menu_.H
|
||||
tabs.o: ../FL/Fl_Menu_Item.H
|
||||
tabs.o: ../FL/Fl_Return_Button.H
|
||||
tabs.o: ../FL/Fl_String.H
|
||||
tabs.o: ../FL/Fl_Tabs.H
|
||||
|
@ -2439,6 +2520,7 @@ threads.o: ../FL/platform_types.h
|
|||
threads.o: threads.h
|
||||
tile.o: ../FL/Enumerations.H
|
||||
tile.o: ../FL/Fl.H
|
||||
tile.o: ../FL/fl_attr.h
|
||||
tile.o: ../FL/Fl_Bitmap.H
|
||||
tile.o: ../FL/Fl_Box.H
|
||||
tile.o: ../FL/Fl_Cairo.H
|
||||
|
@ -2457,6 +2539,7 @@ tile.o: ../FL/platform_types.h
|
|||
tiled_image.o: ../config.h
|
||||
tiled_image.o: ../FL/Enumerations.H
|
||||
tiled_image.o: ../FL/Fl.H
|
||||
tiled_image.o: ../FL/fl_attr.h
|
||||
tiled_image.o: ../FL/Fl_Bitmap.H
|
||||
tiled_image.o: ../FL/Fl_Button.H
|
||||
tiled_image.o: ../FL/Fl_Cairo.H
|
||||
|
@ -2540,6 +2623,7 @@ tree.o: ../FL/platform_types.h
|
|||
tree.o: tree.h
|
||||
twowin.o: ../FL/Enumerations.H
|
||||
twowin.o: ../FL/Fl.H
|
||||
twowin.o: ../FL/fl_attr.h
|
||||
twowin.o: ../FL/Fl_Bitmap.H
|
||||
twowin.o: ../FL/Fl_Button.H
|
||||
twowin.o: ../FL/Fl_Cairo.H
|
||||
|
@ -2559,6 +2643,7 @@ twowin.o: ../FL/platform_types.h
|
|||
unittests.o: ../FL/Enumerations.H
|
||||
unittests.o: ../FL/filename.H
|
||||
unittests.o: ../FL/Fl.H
|
||||
unittests.o: ../FL/fl_attr.h
|
||||
unittests.o: ../FL/Fl_Bitmap.H
|
||||
unittests.o: ../FL/Fl_Box.H
|
||||
unittests.o: ../FL/Fl_Browser.H
|
||||
|
@ -2593,6 +2678,7 @@ unittests.o: unittests.h
|
|||
unittest_about.o: ../FL/Enumerations.H
|
||||
unittest_about.o: ../FL/filename.H
|
||||
unittest_about.o: ../FL/Fl.H
|
||||
unittest_about.o: ../FL/fl_attr.h
|
||||
unittest_about.o: ../FL/Fl_Bitmap.H
|
||||
unittest_about.o: ../FL/Fl_Cairo.H
|
||||
unittest_about.o: ../FL/fl_casts.H
|
||||
|
@ -2622,6 +2708,7 @@ unittest_about.o: unittests.h
|
|||
unittest_circles.o: ../config.h
|
||||
unittest_circles.o: ../FL/Enumerations.H
|
||||
unittest_circles.o: ../FL/Fl.H
|
||||
unittest_circles.o: ../FL/fl_attr.h
|
||||
unittest_circles.o: ../FL/Fl_Bitmap.H
|
||||
unittest_circles.o: ../FL/Fl_Box.H
|
||||
unittest_circles.o: ../FL/Fl_Cairo.H
|
||||
|
@ -2650,6 +2737,7 @@ unittest_circles.o: unittests.h
|
|||
unittest_complex_shapes.o: ../config.h
|
||||
unittest_complex_shapes.o: ../FL/Enumerations.H
|
||||
unittest_complex_shapes.o: ../FL/Fl.H
|
||||
unittest_complex_shapes.o: ../FL/fl_attr.h
|
||||
unittest_complex_shapes.o: ../FL/Fl_Bitmap.H
|
||||
unittest_complex_shapes.o: ../FL/Fl_Box.H
|
||||
unittest_complex_shapes.o: ../FL/Fl_Cairo.H
|
||||
|
@ -2683,6 +2771,7 @@ unittest_complex_shapes.o: unittests.h
|
|||
unittest_fast_shapes.o: ../config.h
|
||||
unittest_fast_shapes.o: ../FL/Enumerations.H
|
||||
unittest_fast_shapes.o: ../FL/Fl.H
|
||||
unittest_fast_shapes.o: ../FL/fl_attr.h
|
||||
unittest_fast_shapes.o: ../FL/Fl_Bitmap.H
|
||||
unittest_fast_shapes.o: ../FL/Fl_Box.H
|
||||
unittest_fast_shapes.o: ../FL/Fl_Cairo.H
|
||||
|
@ -2709,6 +2798,7 @@ unittest_fast_shapes.o: ../FL/platform_types.h
|
|||
unittest_fast_shapes.o: unittests.h
|
||||
unittest_images.o: ../FL/Enumerations.H
|
||||
unittest_images.o: ../FL/Fl.H
|
||||
unittest_images.o: ../FL/fl_attr.h
|
||||
unittest_images.o: ../FL/Fl_Bitmap.H
|
||||
unittest_images.o: ../FL/Fl_Button.H
|
||||
unittest_images.o: ../FL/Fl_Cairo.H
|
||||
|
@ -2738,6 +2828,7 @@ unittest_images.o: unittests.h
|
|||
unittest_points.o: ../config.h
|
||||
unittest_points.o: ../FL/Enumerations.H
|
||||
unittest_points.o: ../FL/Fl.H
|
||||
unittest_points.o: ../FL/fl_attr.h
|
||||
unittest_points.o: ../FL/Fl_Bitmap.H
|
||||
unittest_points.o: ../FL/Fl_Box.H
|
||||
unittest_points.o: ../FL/Fl_Cairo.H
|
||||
|
@ -2765,6 +2856,7 @@ unittest_points.o: unittests.h
|
|||
unittest_schemes.o: ../FL/Enumerations.H
|
||||
unittest_schemes.o: ../FL/Fl.H
|
||||
unittest_schemes.o: ../FL/Fl_Adjuster.H
|
||||
unittest_schemes.o: ../FL/fl_attr.h
|
||||
unittest_schemes.o: ../FL/Fl_Bitmap.H
|
||||
unittest_schemes.o: ../FL/Fl_Box.H
|
||||
unittest_schemes.o: ../FL/Fl_Button.H
|
||||
|
@ -2798,6 +2890,8 @@ unittest_schemes.o: ../FL/Fl_Rect.H
|
|||
unittest_schemes.o: ../FL/Fl_RGB_Image.H
|
||||
unittest_schemes.o: ../FL/Fl_Roller.H
|
||||
unittest_schemes.o: ../FL/Fl_Round_Button.H
|
||||
unittest_schemes.o: ../FL/Fl_Scheme.H
|
||||
unittest_schemes.o: ../FL/Fl_Scheme_Choice.H
|
||||
unittest_schemes.o: ../FL/Fl_Scrollbar.H
|
||||
unittest_schemes.o: ../FL/Fl_Slider.H
|
||||
unittest_schemes.o: ../FL/Fl_Tabs.H
|
||||
|
@ -2816,6 +2910,7 @@ unittest_schemes.o: ../FL/platform_types.h
|
|||
unittest_schemes.o: unittests.h
|
||||
unittest_scrollbarsize.o: ../FL/Enumerations.H
|
||||
unittest_scrollbarsize.o: ../FL/Fl.H
|
||||
unittest_scrollbarsize.o: ../FL/fl_attr.h
|
||||
unittest_scrollbarsize.o: ../FL/Fl_Bitmap.H
|
||||
unittest_scrollbarsize.o: ../FL/Fl_Box.H
|
||||
unittest_scrollbarsize.o: ../FL/Fl_Browser.H
|
||||
|
@ -2856,6 +2951,7 @@ unittest_scrollbarsize.o: ../FL/platform_types.h
|
|||
unittest_scrollbarsize.o: unittests.h
|
||||
unittest_simple_terminal.o: ../FL/Enumerations.H
|
||||
unittest_simple_terminal.o: ../FL/Fl.H
|
||||
unittest_simple_terminal.o: ../FL/fl_attr.h
|
||||
unittest_simple_terminal.o: ../FL/Fl_Bitmap.H
|
||||
unittest_simple_terminal.o: ../FL/Fl_Cairo.H
|
||||
unittest_simple_terminal.o: ../FL/fl_casts.H
|
||||
|
@ -2886,6 +2982,7 @@ unittest_simple_terminal.o: ../FL/platform_types.h
|
|||
unittest_simple_terminal.o: unittests.h
|
||||
unittest_symbol.o: ../FL/Enumerations.H
|
||||
unittest_symbol.o: ../FL/Fl.H
|
||||
unittest_symbol.o: ../FL/fl_attr.h
|
||||
unittest_symbol.o: ../FL/Fl_Bitmap.H
|
||||
unittest_symbol.o: ../FL/Fl_Box.H
|
||||
unittest_symbol.o: ../FL/Fl_Cairo.H
|
||||
|
@ -2911,6 +3008,7 @@ unittest_symbol.o: ../FL/platform_types.h
|
|||
unittest_symbol.o: unittests.h
|
||||
unittest_text.o: ../FL/Enumerations.H
|
||||
unittest_text.o: ../FL/Fl.H
|
||||
unittest_text.o: ../FL/fl_attr.h
|
||||
unittest_text.o: ../FL/Fl_Bitmap.H
|
||||
unittest_text.o: ../FL/Fl_Box.H
|
||||
unittest_text.o: ../FL/Fl_Button.H
|
||||
|
@ -2939,6 +3037,7 @@ unittest_text.o: ../FL/platform_types.h
|
|||
unittest_text.o: unittests.h
|
||||
unittest_unicode.o: ../FL/Enumerations.H
|
||||
unittest_unicode.o: ../FL/Fl.H
|
||||
unittest_unicode.o: ../FL/fl_attr.h
|
||||
unittest_unicode.o: ../FL/Fl_Bitmap.H
|
||||
unittest_unicode.o: ../FL/Fl_Cairo.H
|
||||
unittest_unicode.o: ../FL/fl_casts.H
|
||||
|
@ -2976,6 +3075,7 @@ unittest_unicode.o: ../FL/platform_types.h
|
|||
unittest_unicode.o: unittests.h
|
||||
unittest_viewport.o: ../FL/Enumerations.H
|
||||
unittest_viewport.o: ../FL/Fl.H
|
||||
unittest_viewport.o: ../FL/fl_attr.h
|
||||
unittest_viewport.o: ../FL/Fl_Bitmap.H
|
||||
unittest_viewport.o: ../FL/Fl_Box.H
|
||||
unittest_viewport.o: ../FL/Fl_Cairo.H
|
||||
|
@ -3001,6 +3101,7 @@ unittest_viewport.o: ../FL/platform_types.h
|
|||
unittest_viewport.o: unittests.h
|
||||
utf8.o: ../FL/Enumerations.H
|
||||
utf8.o: ../FL/Fl.H
|
||||
utf8.o: ../FL/fl_attr.h
|
||||
utf8.o: ../FL/Fl_Bitmap.H
|
||||
utf8.o: ../FL/Fl_Box.H
|
||||
utf8.o: ../FL/Fl_Browser.H
|
||||
|
@ -3045,6 +3146,7 @@ utf8.o: ../FL/platform_types.h
|
|||
valuators.o: ../FL/Enumerations.H
|
||||
valuators.o: ../FL/Fl.H
|
||||
valuators.o: ../FL/Fl_Adjuster.H
|
||||
valuators.o: ../FL/fl_attr.h
|
||||
valuators.o: ../FL/Fl_Bitmap.H
|
||||
valuators.o: ../FL/Fl_Box.H
|
||||
valuators.o: ../FL/Fl_Button.H
|
||||
|
@ -3087,6 +3189,7 @@ valuators.o: ../FL/platform_types.h
|
|||
valuators.o: valuators.h
|
||||
windowfocus.o: ../FL/Enumerations.H
|
||||
windowfocus.o: ../FL/Fl.H
|
||||
windowfocus.o: ../FL/fl_attr.h
|
||||
windowfocus.o: ../FL/Fl_Bitmap.H
|
||||
windowfocus.o: ../FL/Fl_Box.H
|
||||
windowfocus.o: ../FL/Fl_Cairo.H
|
||||
|
|
|
@ -12,13 +12,13 @@ comment {About test/preferences:
|
|||
The preferences app shows two features of FLTK and FLUID.
|
||||
|
||||
The Fl_Preferences class is used as a storage for user
|
||||
settings between app launches. Fl_Preferences can store
|
||||
settings between app launches. Fl_Preferences can store
|
||||
small amounts of arbitrary data in an .ini file format
|
||||
which can be retrieved again at the next app launch.
|
||||
|
||||
The FLUID setup uses GNU gettext for internationalisation
|
||||
(i18n). FLUID finds the texts that need to be translated
|
||||
and writes them into .po files that can be processed by
|
||||
and writes them into .po files that can be processed by
|
||||
the GNU gettext tools. FLUID produces source code that
|
||||
will translate all text into the current locale when
|
||||
generating the UI.
|
||||
|
@ -62,45 +62,45 @@ Function {gettext(const char *text)} {
|
|||
for systems that don't have GNU libintl library.} open return_type {const char*}
|
||||
} {
|
||||
code {static const char* translation_table[][2] = {
|
||||
{ "Alarm at:", "Wecken um:" },
|
||||
{ "Bread:", "Brot:" },
|
||||
{ "Breakfast:", "Frühstück:" },
|
||||
{ "Cancel", "Abbrechen" },
|
||||
{ "Drink:", "Getränk:" },
|
||||
{ "English", "Englisch" },
|
||||
{ "German", "Deutsch" },
|
||||
{ "Get Up:", "Aufstehen:" },
|
||||
{ "Language:", "Sprache:" },
|
||||
{ "My Preferences", "Meine Vorlieben" },
|
||||
{ "NY Times", "Der Spiegel" },
|
||||
{ "Newspaper:", "Tageszeitung:" },
|
||||
{ "OK", "OK" },
|
||||
{ "Please restart the app to use your new language setting.",
|
||||
"Bitte starten Sie die App erneut um Ihre Spracheinstellung zu nutzen." },
|
||||
{ "Wear:", "Schuhwerk:" },
|
||||
{ "a.m.", "früh" },
|
||||
{ "bare foot", "barfuß" },
|
||||
{ "brush teeth", "Zähne putzen" },
|
||||
{ "coffee", "Kaffee" },
|
||||
{ "eggs", "Eier" },
|
||||
{ "flip flops", "Schlappen" },
|
||||
{ "juice", "Saft" },
|
||||
{ "left side", "linke Seite" },
|
||||
{ "min.", "Min." },
|
||||
{ "of the bed", "vom Bett" },
|
||||
{ "p.m.", "spät" },
|
||||
{ "right side", "rechte Seite" },
|
||||
{ "rye", "Roggen" },
|
||||
{ "sandals", "Sandalen" },
|
||||
{ "shave", "rasieren" },
|
||||
{ "shoes", "Schuhe" },
|
||||
{ "shower", "duschen" },
|
||||
{ "sourdough", "Sauerteig" },
|
||||
{ "tea", "Tee" },
|
||||
{ "wheat", "Weizen" },
|
||||
{ "white", "Weißbrot" },
|
||||
{ "with butter", "mit Butter" },
|
||||
{ "with milk", "mit Milch" },
|
||||
{ "Alarm at:", "Wecken um:" },
|
||||
{ "Bread:", "Brot:" },
|
||||
{ "Breakfast:", "Frühstück:" },
|
||||
{ "Cancel", "Abbrechen" },
|
||||
{ "Drink:", "Getränk:" },
|
||||
{ "English", "Englisch" },
|
||||
{ "German", "Deutsch" },
|
||||
{ "Get Up:", "Aufstehen:" },
|
||||
{ "Language:", "Sprache:" },
|
||||
{ "My Preferences", "Meine Vorlieben" },
|
||||
{ "NY Times", "Der Spiegel" },
|
||||
{ "Newspaper:", "Tageszeitung:" },
|
||||
{ "OK", "OK" },
|
||||
{ "Please restart the app to use your new language setting.",
|
||||
"Bitte starten Sie die App erneut um Ihre Spracheinstellung zu nutzen." },
|
||||
{ "Wear:", "Schuhwerk:" },
|
||||
{ "a.m.", "früh" },
|
||||
{ "bare foot", "barfuß" },
|
||||
{ "brush teeth", "Zähne putzen" },
|
||||
{ "coffee", "Kaffee" },
|
||||
{ "eggs", "Eier" },
|
||||
{ "flip flops", "Schlappen" },
|
||||
{ "juice", "Saft" },
|
||||
{ "left side", "linke Seite" },
|
||||
{ "min.", "Min." },
|
||||
{ "of the bed", "vom Bett" },
|
||||
{ "p.m.", "spät" },
|
||||
{ "right side", "rechte Seite" },
|
||||
{ "rye", "Roggen" },
|
||||
{ "sandals", "Sandalen" },
|
||||
{ "shave", "rasieren" },
|
||||
{ "shoes", "Schuhe" },
|
||||
{ "shower", "duschen" },
|
||||
{ "sourdough", "Sauerteig" },
|
||||
{ "tea", "Tee" },
|
||||
{ "wheat", "Weizen" },
|
||||
{ "white", "Weißbrot" },
|
||||
{ "with butter", "mit Butter" },
|
||||
{ "with milk", "mit Milch" },
|
||||
};
|
||||
int lang = g_language;
|
||||
int i, n = 38;
|
||||
|
@ -113,7 +113,7 @@ for (i=0; i<n; i++) {
|
|||
break;
|
||||
}
|
||||
}
|
||||
if (found)
|
||||
if (found)
|
||||
return found;
|
||||
else
|
||||
return text;} {}
|
||||
|
@ -340,7 +340,7 @@ Fl_Preferences app( Fl_Preferences::USER_L, project, application );
|
|||
} else {
|
||||
printf("Location of Preferences user data directory not found.\\n");
|
||||
}
|
||||
|
||||
|
||||
wLanguage->value( g_language );
|
||||
|
||||
Fl_Preferences bed( app, "Bed" );
|
||||
|
@ -413,7 +413,7 @@ Function {writePrefs()} {open return_type void
|
|||
code {Fl_Preferences app( Fl_Preferences::USER_L, project, application );
|
||||
|
||||
app.set( "language", wLanguage->value() );
|
||||
|
||||
|
||||
Fl_Preferences bed( app, "Bed" );
|
||||
|
||||
bed.set( "alarm", wAlarm->value() );
|
||||
|
|
|
@ -49,7 +49,7 @@ int arg(int argc, char **argv, int &i) {
|
|||
int main(int argc, char **argv) {
|
||||
int i = 1;
|
||||
Fl::args(argc,argv,i,arg);
|
||||
|
||||
|
||||
#ifdef FLTK_USE_X11
|
||||
if (visid >= 0) {
|
||||
fl_open_display();
|
||||
|
|
Loading…
Reference in New Issue