Remove Fl_Simple_Terminal (replaced by Fl_Terminal)
... as discussed previously.
This commit is contained in:
parent
37eefe5548
commit
b4697c33ff
@ -1,244 +0,0 @@
|
||||
//
|
||||
// A simple terminal widget for Fast Light Tool Kit (FLTK).
|
||||
//
|
||||
// Copyright 1998-2011 by Bill Spitzak and others.
|
||||
// Copyright 2017 by Greg Ercolano.
|
||||
//
|
||||
// This library is free software. Distribution and use rights are outlined in
|
||||
// the file "COPYING" which should have been included with this file. If this
|
||||
// file is missing or damaged, see the license at:
|
||||
//
|
||||
// https://www.fltk.org/COPYING.php
|
||||
//
|
||||
// Please see the following page on how to report bugs and issues:
|
||||
//
|
||||
// https://www.fltk.org/bugs.php
|
||||
//
|
||||
|
||||
/* \file
|
||||
Fl_Simple_Terminal widget . */
|
||||
|
||||
#ifndef Fl_Simple_Terminal_H
|
||||
#define Fl_Simple_Terminal_H
|
||||
|
||||
#include "Fl_Export.H"
|
||||
#include <FL/Fl_Text_Display.H>
|
||||
|
||||
/**
|
||||
This is a continuous text scroll widget for logging and debugging
|
||||
output, much like a terminal. Includes printf() for appending messages,
|
||||
a line limit for the screen history size, ANSI sequences to control
|
||||
text color, font face, font weight and font size.
|
||||
|
||||
This is useful in place of using stdout/stderr for logging messages
|
||||
when no terminal is available, such as when an application is invoked
|
||||
from a desktop shortcut, dock, or file browser.
|
||||
|
||||
Like a regular console terminal, the vertical scrollbar 'tracks'
|
||||
the bottom of the buffer as new output is added. If the user scrolls
|
||||
away from the bottom, this 'tracking' feature is temporarily suspended,
|
||||
so the user can browse the terminal history without fighting the scrollbar
|
||||
when new text is added asynchronously. When the user returns the
|
||||
scroller to the bottom of the display, the scrollbar's tracking resumes.
|
||||
|
||||
Features include:
|
||||
|
||||
- history_lines(int) can define a maximum size for the terminal screen history
|
||||
- stay_at_bottom(bool) can be used to cause the terminal to keep scrolled to the bottom
|
||||
- ansi(bool) enables ANSI sequences within the text to control text colors
|
||||
- style_table() can be used to define custom color/font/weight/size combinations
|
||||
|
||||
What this widget is NOT is a full terminal emulator; it does NOT
|
||||
handle stdio redirection, pipes, pseudo ttys, termio character cooking,
|
||||
keyboard input processing, screen addressing, random cursor positioning,
|
||||
curses(3) compatibility, or VT100/xterm emulation.
|
||||
|
||||
It is a simple text display widget that leverages the features of the
|
||||
Fl_Text_Display base class to handle terminal-like behavior, such as
|
||||
logging events or debug information.
|
||||
|
||||
Example use:
|
||||
\code
|
||||
|
||||
#include <FL/Fl_Simple_Terminal.H>
|
||||
:
|
||||
tty = new Fl_Simple_Terminal(...);
|
||||
tty->ansi(true); // enable use of "\033[#m"
|
||||
:
|
||||
tty->printf("The time is now: \033[32m%s\033[0m", date_time_str);
|
||||
|
||||
\endcode
|
||||
|
||||
Example application:
|
||||
\dontinclude simple-terminal.cxx
|
||||
\skip //START
|
||||
\until //END
|
||||
|
||||
Style Tables For Color/Font/Fontsize Control
|
||||
--------------------------------------------
|
||||
Internally this widget derives from Fl_Text_Display, and therefore
|
||||
inherits some of its idiosyncracies. In particular, when colors
|
||||
are used, the base class's concept of a 'style table' is used.
|
||||
|
||||
The 'style table' is similar to a color mapped image; where each
|
||||
pixel is a single value that is an index into a table of colors
|
||||
to minimize per-pixel memory use.
|
||||
|
||||
The style table has a similar goal; since every character in the
|
||||
terminal can potentially be a different color, instead of managing
|
||||
several integer attribute values per-character, a single character
|
||||
for each character is used as an index into the style table, choosing
|
||||
one of the available color/font/weight/size values available.
|
||||
This saves on as much as 3 to 4 times the memory use, useful when
|
||||
there's a large amount of text.
|
||||
|
||||
When ansi() is set to 'true', ANSI sequences of the form "\033[#m"
|
||||
can be used to select different colors, font faces, font weights (bold,italic..),
|
||||
and font sizes, where '#' is the index number into the style table. Example:
|
||||
|
||||
\code
|
||||
"\033[0mThis text uses the 1st entry in the style table\n"
|
||||
"\033[1mThis text uses the 2nd entry in the style table\n"
|
||||
"\033[2mThis text uses the 3rd entry in the style table\n"
|
||||
etc..
|
||||
\endcode
|
||||
|
||||
There is a built-in style table that provides some
|
||||
commonly used ANSI colors for "\033[30m" through "\033[37m"
|
||||
(blk,red,grn,yel,blu,mag,cyn,wht), and a brighter version of those
|
||||
colors for "\033[40" through "\033[47m". See ansi(bool) for more info.
|
||||
|
||||
You can also supply a custom style table using
|
||||
style_table(Style_Table_Entry*,int,int), allowing you to define
|
||||
your own color/font/weight/size combinations. See that method's docs
|
||||
for more info.
|
||||
|
||||
All style index numbers are rounded to the size of the style table
|
||||
(via modulus) to protect the style array from overruns.
|
||||
|
||||
*/
|
||||
class FL_EXPORT Fl_Simple_Terminal : public Fl_Text_Display {
|
||||
protected:
|
||||
Fl_Text_Buffer *buf; // text buffer
|
||||
Fl_Text_Buffer *sbuf; // style buffer
|
||||
|
||||
private:
|
||||
// Private class to handle parsing ESC sequences
|
||||
// Holds all state information for parsing esc sequences,
|
||||
// so sequences can span multiple block read(2) operations, etc.
|
||||
//
|
||||
class FL_EXPORT Fl_Escape_Seq {
|
||||
public:
|
||||
static const int maxbuf = 80;
|
||||
static const int maxvals = 10;
|
||||
// Return codes
|
||||
static const int success = 0; // operation succeeded
|
||||
static const int fail = -1; // operation failed
|
||||
static const int completed = 1; // multi-step operation completed successfully
|
||||
private:
|
||||
char esc_mode_; // escape parsing mode state
|
||||
char buf_[maxbuf]; // escape sequence being parsed
|
||||
char *bufp_; // parsing ptr into buf[]
|
||||
char *bufendp_; // end of buf[] (ptr to last valid buf char)
|
||||
char *valbufp_; // pointer to first char in buf of integer being parsed
|
||||
int vals_[maxvals]; // value array for parsing #'s in ESC[#;#;#..
|
||||
int vali_; // parsing index into vals_[], 0 if none
|
||||
|
||||
int append_buf(char c);
|
||||
int append_val();
|
||||
|
||||
public:
|
||||
Fl_Escape_Seq();
|
||||
void reset();
|
||||
char esc_mode() const;
|
||||
void esc_mode(char val);
|
||||
int total_vals() const;
|
||||
int val(int i) const;
|
||||
bool parse_in_progress() const;
|
||||
int parse(char c);
|
||||
};
|
||||
|
||||
private:
|
||||
int history_lines_; // max lines allowed in screen history
|
||||
bool stay_at_bottom_; // lets scroller chase last line in buffer
|
||||
// scroll management
|
||||
int lines_; // #lines in buffer (optimization: Fl_Text_Buffer slow to calc this)
|
||||
bool scrollaway_; // true when user changed vscroll away from bottom
|
||||
bool scrolling_; // true while scroll callback active
|
||||
// Fl_Text_Display vscrollbar's callback+data
|
||||
Fl_Callback *orig_vscroll_cb_;
|
||||
void *orig_vscroll_data_;
|
||||
// Style table
|
||||
const Fl_Text_Display::Style_Table_Entry *stable_; // the active style table
|
||||
int stable_size_; // active style table size (in bytes)
|
||||
int normal_style_index_; // "normal" style used by "\033[0m" reset sequence
|
||||
int current_style_index_; // current style used for drawing text
|
||||
char current_style_; // current 'style char' (e.g. 'A' = first style entry)
|
||||
// ANSI escape seq
|
||||
Fl_Escape_Seq escseq; // escape sequence state handler
|
||||
bool ansi_; // enables ANSI sequences
|
||||
bool ansi_show_unknown_; // show '¿' for unknown ESC sequences (default: off)
|
||||
// String parsing vars initialized/used by append(), used by handle_backspace() etc.
|
||||
char *ntm_; // new text memory (ntm) - malloc()ed by append() for output text
|
||||
char *ntp_; // new text ptr (ntp) - points into ntm buffer
|
||||
char *nsm_; // new style memory (nsm) - malloc()ed by append() for output style
|
||||
char *nsp_; // new style ptr (nsp) - points into nsm buffer
|
||||
|
||||
public:
|
||||
Fl_Simple_Terminal(int X,int Y,int W,int H,const char *l=0);
|
||||
~Fl_Simple_Terminal();
|
||||
|
||||
// Terminal options
|
||||
void stay_at_bottom(bool);
|
||||
bool stay_at_bottom() const;
|
||||
void history_lines(int);
|
||||
int history_lines() const;
|
||||
void ansi(bool val);
|
||||
bool ansi() const;
|
||||
void ansi_show_unknown(bool val);
|
||||
bool ansi_show_unknown() const;
|
||||
void style_table(Fl_Text_Display::Style_Table_Entry *stable, int stable_size, int normal_style_index=0);
|
||||
const Fl_Text_Display::Style_Table_Entry *style_table() const;
|
||||
int style_table_size() const;
|
||||
void normal_style_index(int);
|
||||
int normal_style_index() const;
|
||||
void current_style_index(int);
|
||||
int current_style_index() const;
|
||||
int current_style() const;
|
||||
|
||||
// Terminal text management
|
||||
void append(const char *s, int len=-1);
|
||||
void text(const char *s, int len=-1);
|
||||
const char* text() const;
|
||||
void printf(const char *fmt, ...);
|
||||
void vprintf(const char *fmt, va_list ap);
|
||||
void clear();
|
||||
void remove_lines(int start, int count);
|
||||
|
||||
private:
|
||||
// Methods blocking public access to the subclass
|
||||
// These are subclass methods that would give unexpected
|
||||
// results if used. By making them private, we effectively
|
||||
// "block" them.
|
||||
//
|
||||
// TODO: There are probably other Fl_Text_Display methods that
|
||||
// need to be blocked.
|
||||
//
|
||||
void insert(const char*) { }
|
||||
|
||||
protected:
|
||||
// Fltk
|
||||
void draw() FL_OVERRIDE;
|
||||
|
||||
// Internal methods
|
||||
void enforce_stay_at_bottom();
|
||||
void enforce_history_lines();
|
||||
void vscroll_cb2(Fl_Widget*, void*);
|
||||
static void vscroll_cb(Fl_Widget*, void*);
|
||||
void backspace_buffer(unsigned int count);
|
||||
void handle_backspace();
|
||||
void append_ansi(const char *s, int len);
|
||||
void unknown_escape();
|
||||
};
|
||||
|
||||
#endif
|
||||
@ -24,6 +24,7 @@ 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_Multi_Label.H
|
||||
fltk-options.o: ../FL/Fl_Pack.H
|
||||
fltk-options.o: ../FL/Fl_Pixmap.H
|
||||
fltk-options.o: ../FL/Fl_Plugin.H
|
||||
|
||||
@ -60,6 +60,7 @@ alignment_panel.o: ../FL/Fl_Light_Button.H
|
||||
alignment_panel.o: ../FL/Fl_Menu_.H
|
||||
alignment_panel.o: ../FL/Fl_Menu_Button.H
|
||||
alignment_panel.o: ../FL/Fl_Menu_Item.H
|
||||
alignment_panel.o: ../FL/Fl_Multi_Label.H
|
||||
alignment_panel.o: ../FL/Fl_Native_File_Chooser.H
|
||||
alignment_panel.o: ../FL/Fl_Pack.H
|
||||
alignment_panel.o: ../FL/Fl_Pixmap.H
|
||||
@ -123,6 +124,7 @@ align_widget.o: ../FL/Fl_Graphics_Driver.H
|
||||
align_widget.o: ../FL/Fl_Group.H
|
||||
align_widget.o: ../FL/Fl_Image.H
|
||||
align_widget.o: ../FL/Fl_Menu_Item.H
|
||||
align_widget.o: ../FL/Fl_Multi_Label.H
|
||||
align_widget.o: ../FL/Fl_Pack.H
|
||||
align_widget.o: ../FL/Fl_Pixmap.H
|
||||
align_widget.o: ../FL/Fl_Plugin.H
|
||||
@ -164,6 +166,7 @@ code.o: ../FL/Fl_Group.H
|
||||
code.o: ../FL/Fl_Image.H
|
||||
code.o: ../FL/Fl_Menu.H
|
||||
code.o: ../FL/Fl_Menu_Item.H
|
||||
code.o: ../FL/Fl_Multi_Label.H
|
||||
code.o: ../FL/Fl_Pack.H
|
||||
code.o: ../FL/Fl_Pixmap.H
|
||||
code.o: ../FL/Fl_Plugin.H
|
||||
@ -251,6 +254,7 @@ custom_widgets.o: ../FL/Fl_Light_Button.H
|
||||
custom_widgets.o: ../FL/Fl_Menu_.H
|
||||
custom_widgets.o: ../FL/Fl_Menu_Button.H
|
||||
custom_widgets.o: ../FL/Fl_Menu_Item.H
|
||||
custom_widgets.o: ../FL/Fl_Multi_Label.H
|
||||
custom_widgets.o: ../FL/Fl_Pack.H
|
||||
custom_widgets.o: ../FL/Fl_Pixmap.H
|
||||
custom_widgets.o: ../FL/Fl_Plugin.H
|
||||
@ -304,6 +308,7 @@ 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_Multi_Label.H
|
||||
ExternalCodeEditor_UNIX.o: ../FL/Fl_Preferences.H
|
||||
ExternalCodeEditor_UNIX.o: ../FL/fl_string_functions.h
|
||||
ExternalCodeEditor_UNIX.o: ../FL/fl_types.h
|
||||
@ -436,6 +441,7 @@ Fd_Snap_Action.o: ../FL/Fl_Menu_.H
|
||||
Fd_Snap_Action.o: ../FL/Fl_Menu_Bar.H
|
||||
Fd_Snap_Action.o: ../FL/Fl_Menu_Button.H
|
||||
Fd_Snap_Action.o: ../FL/Fl_Menu_Item.H
|
||||
Fd_Snap_Action.o: ../FL/Fl_Multi_Label.H
|
||||
Fd_Snap_Action.o: ../FL/Fl_Native_File_Chooser.H
|
||||
Fd_Snap_Action.o: ../FL/Fl_Pack.H
|
||||
Fd_Snap_Action.o: ../FL/Fl_Pixmap.H
|
||||
@ -518,6 +524,7 @@ file.o: ../FL/Fl_Menu_.H
|
||||
file.o: ../FL/Fl_Menu_Button.H
|
||||
file.o: ../FL/Fl_Menu_Item.H
|
||||
file.o: ../FL/fl_message.H
|
||||
file.o: ../FL/Fl_Multi_Label.H
|
||||
file.o: ../FL/Fl_Native_File_Chooser.H
|
||||
file.o: ../FL/Fl_Pack.H
|
||||
file.o: ../FL/Fl_Pixmap.H
|
||||
@ -609,6 +616,7 @@ fluid.o: ../FL/Fl_Menu_.H
|
||||
fluid.o: ../FL/Fl_Menu_Bar.H
|
||||
fluid.o: ../FL/Fl_Menu_Button.H
|
||||
fluid.o: ../FL/Fl_Menu_Item.H
|
||||
fluid.o: ../FL/Fl_Multi_Label.H
|
||||
fluid.o: ../FL/Fl_Native_File_Chooser.H
|
||||
fluid.o: ../FL/Fl_Pack.H
|
||||
fluid.o: ../FL/Fl_Paged_Device.H
|
||||
@ -723,6 +731,7 @@ Fluid_Image.o: ../FL/Fl_Light_Button.H
|
||||
Fluid_Image.o: ../FL/Fl_Menu_.H
|
||||
Fluid_Image.o: ../FL/Fl_Menu_Button.H
|
||||
Fluid_Image.o: ../FL/Fl_Menu_Item.H
|
||||
Fluid_Image.o: ../FL/Fl_Multi_Label.H
|
||||
Fluid_Image.o: ../FL/Fl_Pack.H
|
||||
Fluid_Image.o: ../FL/Fl_Pixmap.H
|
||||
Fluid_Image.o: ../FL/Fl_Plugin.H
|
||||
@ -771,6 +780,7 @@ Fl_Button_Type.o: ../FL/Fl_Group.H
|
||||
Fl_Button_Type.o: ../FL/Fl_Image.H
|
||||
Fl_Button_Type.o: ../FL/Fl_Light_Button.H
|
||||
Fl_Button_Type.o: ../FL/Fl_Menu_Item.H
|
||||
Fl_Button_Type.o: ../FL/Fl_Multi_Label.H
|
||||
Fl_Button_Type.o: ../FL/Fl_Pack.H
|
||||
Fl_Button_Type.o: ../FL/Fl_Pixmap.H
|
||||
Fl_Button_Type.o: ../FL/Fl_Plugin.H
|
||||
@ -832,6 +842,7 @@ Fl_Function_Type.o: ../FL/Fl_Menu.H
|
||||
Fl_Function_Type.o: ../FL/Fl_Menu_.H
|
||||
Fl_Function_Type.o: ../FL/Fl_Menu_Button.H
|
||||
Fl_Function_Type.o: ../FL/Fl_Menu_Item.H
|
||||
Fl_Function_Type.o: ../FL/Fl_Multi_Label.H
|
||||
Fl_Function_Type.o: ../FL/Fl_Pack.H
|
||||
Fl_Function_Type.o: ../FL/Fl_Pixmap.H
|
||||
Fl_Function_Type.o: ../FL/Fl_Plugin.H
|
||||
@ -899,6 +910,7 @@ Fl_Grid_Type.o: ../FL/Fl_Input.H
|
||||
Fl_Grid_Type.o: ../FL/Fl_Input_.H
|
||||
Fl_Grid_Type.o: ../FL/Fl_Menu_.H
|
||||
Fl_Grid_Type.o: ../FL/Fl_Menu_Item.H
|
||||
Fl_Grid_Type.o: ../FL/Fl_Multi_Label.H
|
||||
Fl_Grid_Type.o: ../FL/Fl_Pack.H
|
||||
Fl_Grid_Type.o: ../FL/Fl_Pixmap.H
|
||||
Fl_Grid_Type.o: ../FL/Fl_Plugin.H
|
||||
@ -950,6 +962,7 @@ Fl_Group_Type.o: ../FL/Fl_Group.H
|
||||
Fl_Group_Type.o: ../FL/Fl_Image.H
|
||||
Fl_Group_Type.o: ../FL/Fl_Menu_Item.H
|
||||
Fl_Group_Type.o: ../FL/fl_message.H
|
||||
Fl_Group_Type.o: ../FL/Fl_Multi_Label.H
|
||||
Fl_Group_Type.o: ../FL/Fl_Pack.H
|
||||
Fl_Group_Type.o: ../FL/Fl_Pixmap.H
|
||||
Fl_Group_Type.o: ../FL/Fl_Plugin.H
|
||||
@ -1065,6 +1078,7 @@ Fl_Type.o: ../FL/Fl_Group.H
|
||||
Fl_Type.o: ../FL/Fl_Image.H
|
||||
Fl_Type.o: ../FL/Fl_Menu.H
|
||||
Fl_Type.o: ../FL/Fl_Menu_Item.H
|
||||
Fl_Type.o: ../FL/Fl_Multi_Label.H
|
||||
Fl_Type.o: ../FL/Fl_Pack.H
|
||||
Fl_Type.o: ../FL/Fl_Pixmap.H
|
||||
Fl_Type.o: ../FL/Fl_Plugin.H
|
||||
@ -1138,6 +1152,7 @@ Fl_Widget_Type.o: ../FL/Fl_Menu_Bar.H
|
||||
Fl_Widget_Type.o: ../FL/Fl_Menu_Button.H
|
||||
Fl_Widget_Type.o: ../FL/Fl_Menu_Item.H
|
||||
Fl_Widget_Type.o: ../FL/fl_message.H
|
||||
Fl_Widget_Type.o: ../FL/Fl_Multi_Label.H
|
||||
Fl_Widget_Type.o: ../FL/Fl_Native_File_Chooser.H
|
||||
Fl_Widget_Type.o: ../FL/Fl_Pack.H
|
||||
Fl_Widget_Type.o: ../FL/Fl_Pixmap.H
|
||||
@ -1235,6 +1250,7 @@ Fl_Window_Type.o: ../FL/Fl_Menu_.H
|
||||
Fl_Window_Type.o: ../FL/Fl_Menu_Button.H
|
||||
Fl_Window_Type.o: ../FL/Fl_Menu_Item.H
|
||||
Fl_Window_Type.o: ../FL/fl_message.H
|
||||
Fl_Window_Type.o: ../FL/Fl_Multi_Label.H
|
||||
Fl_Window_Type.o: ../FL/Fl_Native_File_Chooser.H
|
||||
Fl_Window_Type.o: ../FL/Fl_Overlay_Window.H
|
||||
Fl_Window_Type.o: ../FL/Fl_Pack.H
|
||||
@ -1318,6 +1334,7 @@ function_panel.o: ../FL/Fl_Light_Button.H
|
||||
function_panel.o: ../FL/Fl_Menu_.H
|
||||
function_panel.o: ../FL/Fl_Menu_Button.H
|
||||
function_panel.o: ../FL/Fl_Menu_Item.H
|
||||
function_panel.o: ../FL/Fl_Multi_Label.H
|
||||
function_panel.o: ../FL/Fl_Pixmap.H
|
||||
function_panel.o: ../FL/Fl_Plugin.H
|
||||
function_panel.o: ../FL/Fl_Preferences.H
|
||||
@ -1469,6 +1486,7 @@ shell_command.o: ../FL/Fl_Menu_Bar.H
|
||||
shell_command.o: ../FL/Fl_Menu_Button.H
|
||||
shell_command.o: ../FL/Fl_Menu_Item.H
|
||||
shell_command.o: ../FL/fl_message.H
|
||||
shell_command.o: ../FL/Fl_Multi_Label.H
|
||||
shell_command.o: ../FL/Fl_Native_File_Chooser.H
|
||||
shell_command.o: ../FL/Fl_Pack.H
|
||||
shell_command.o: ../FL/Fl_Pixmap.H
|
||||
@ -1537,6 +1555,7 @@ sourceview_panel.o: ../FL/Fl_Input_.H
|
||||
sourceview_panel.o: ../FL/Fl_Light_Button.H
|
||||
sourceview_panel.o: ../FL/Fl_Menu_.H
|
||||
sourceview_panel.o: ../FL/Fl_Menu_Item.H
|
||||
sourceview_panel.o: ../FL/Fl_Multi_Label.H
|
||||
sourceview_panel.o: ../FL/Fl_Pixmap.H
|
||||
sourceview_panel.o: ../FL/Fl_Plugin.H
|
||||
sourceview_panel.o: ../FL/Fl_Preferences.H
|
||||
@ -1585,6 +1604,7 @@ template_panel.o: ../FL/Fl_Image.H
|
||||
template_panel.o: ../FL/Fl_Input.H
|
||||
template_panel.o: ../FL/Fl_Input_.H
|
||||
template_panel.o: ../FL/Fl_Menu_Item.H
|
||||
template_panel.o: ../FL/Fl_Multi_Label.H
|
||||
template_panel.o: ../FL/Fl_Preferences.H
|
||||
template_panel.o: ../FL/Fl_Return_Button.H
|
||||
template_panel.o: ../FL/Fl_Shared_Image.H
|
||||
@ -1618,6 +1638,7 @@ undo.o: ../FL/Fl_Image.H
|
||||
undo.o: ../FL/Fl_Menu_.H
|
||||
undo.o: ../FL/Fl_Menu_Bar.H
|
||||
undo.o: ../FL/Fl_Menu_Item.H
|
||||
undo.o: ../FL/Fl_Multi_Label.H
|
||||
undo.o: ../FL/Fl_Pixmap.H
|
||||
undo.o: ../FL/Fl_Plugin.H
|
||||
undo.o: ../FL/Fl_Preferences.H
|
||||
@ -1656,6 +1677,7 @@ widget_browser.o: ../FL/Fl_Export.H
|
||||
widget_browser.o: ../FL/Fl_Graphics_Driver.H
|
||||
widget_browser.o: ../FL/Fl_Image.H
|
||||
widget_browser.o: ../FL/Fl_Menu_Item.H
|
||||
widget_browser.o: ../FL/Fl_Multi_Label.H
|
||||
widget_browser.o: ../FL/Fl_Pixmap.H
|
||||
widget_browser.o: ../FL/Fl_Plugin.H
|
||||
widget_browser.o: ../FL/Fl_Preferences.H
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
#
|
||||
# CMakeLists.txt to build the FLTK library using CMake (www.cmake.org)
|
||||
#
|
||||
# Copyright 1998-2023 by Bill Spitzak and others.
|
||||
# Copyright 1998-2024 by Bill Spitzak and others.
|
||||
#
|
||||
# This library is free software. Distribution and use rights are outlined in
|
||||
# the file "COPYING" which should have been included with this file. If this
|
||||
@ -80,7 +80,6 @@ set (CPPFILES
|
||||
Fl_Scrollbar.cxx
|
||||
Fl_Shared_Image.cxx
|
||||
Fl_Shortcut_Button.cxx
|
||||
Fl_Simple_Terminal.cxx
|
||||
Fl_Single_Window.cxx
|
||||
Fl_Slider.cxx
|
||||
Fl_Spinner.cxx
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@ -1,7 +1,7 @@
|
||||
#
|
||||
# Library Makefile for the Fast Light Tool Kit (FLTK).
|
||||
#
|
||||
# Copyright 1998-2023 by Bill Spitzak and others.
|
||||
# Copyright 1998-2024 by Bill Spitzak and others.
|
||||
#
|
||||
# This library is free software. Distribution and use rights are outlined in
|
||||
# the file "COPYING" which should have been included with this file. If this
|
||||
@ -84,7 +84,6 @@ CPPFILES = \
|
||||
Fl_Scrollbar.cxx \
|
||||
Fl_Shared_Image.cxx \
|
||||
Fl_Shortcut_Button.cxx \
|
||||
Fl_Simple_Terminal.cxx \
|
||||
Fl_Single_Window.cxx \
|
||||
Fl_Slider.cxx \
|
||||
Fl_Spinner.cxx \
|
||||
@ -332,7 +331,7 @@ WLX11CPPFILES = \
|
||||
fl_dnd_x.cxx \
|
||||
Fl_get_key.cxx
|
||||
|
||||
|
||||
|
||||
# fl_dnd_x.cxx Fl_Native_File_Chooser_GTK.cxx
|
||||
|
||||
# This C file is used under condition: BUILD_X11
|
||||
@ -353,7 +352,7 @@ XLIBFONTFILES = \
|
||||
XLIBXFTFILES = \
|
||||
drivers/Xlib/Fl_Xlib_Graphics_Driver_font_xft.cxx \
|
||||
drivers/Cairo/Fl_Cairo_Graphics_Driver.cxx
|
||||
|
||||
|
||||
# This C file is used under condition: BUILD_WAYLAND
|
||||
WLCFILES = \
|
||||
xutf8/keysym2Ucs.c \
|
||||
|
||||
@ -194,6 +194,7 @@ drivers/Posix/Fl_Posix_Printer_Driver.o: ../FL/Fl_Int_Input.H
|
||||
drivers/Posix/Fl_Posix_Printer_Driver.o: ../FL/Fl_Light_Button.H
|
||||
drivers/Posix/Fl_Posix_Printer_Driver.o: ../FL/Fl_Menu_.H
|
||||
drivers/Posix/Fl_Posix_Printer_Driver.o: ../FL/Fl_Menu_Item.H
|
||||
drivers/Posix/Fl_Posix_Printer_Driver.o: ../FL/Fl_Multi_Label.H
|
||||
drivers/Posix/Fl_Posix_Printer_Driver.o: ../FL/Fl_Paged_Device.H
|
||||
drivers/Posix/Fl_Posix_Printer_Driver.o: ../FL/Fl_Pixmap.H
|
||||
drivers/Posix/Fl_Posix_Printer_Driver.o: ../FL/Fl_Plugin.H
|
||||
@ -268,6 +269,7 @@ drivers/PostScript/Fl_PostScript.o: ../FL/Fl_Light_Button.H
|
||||
drivers/PostScript/Fl_PostScript.o: ../FL/Fl_Menu_.H
|
||||
drivers/PostScript/Fl_PostScript.o: ../FL/Fl_Menu_Button.H
|
||||
drivers/PostScript/Fl_PostScript.o: ../FL/Fl_Menu_Item.H
|
||||
drivers/PostScript/Fl_PostScript.o: ../FL/Fl_Multi_Label.H
|
||||
drivers/PostScript/Fl_PostScript.o: ../FL/Fl_Native_File_Chooser.H
|
||||
drivers/PostScript/Fl_PostScript.o: ../FL/Fl_Paged_Device.H
|
||||
drivers/PostScript/Fl_PostScript.o: ../FL/Fl_Plugin.H
|
||||
@ -1165,6 +1167,7 @@ Fl_Bitmap.o: ../FL/fl_draw.H
|
||||
Fl_Bitmap.o: ../FL/Fl_Export.H
|
||||
Fl_Bitmap.o: ../FL/Fl_Image.H
|
||||
Fl_Bitmap.o: ../FL/Fl_Menu_Item.H
|
||||
Fl_Bitmap.o: ../FL/Fl_Multi_Label.H
|
||||
Fl_Bitmap.o: ../FL/fl_types.h
|
||||
Fl_Bitmap.o: ../FL/fl_utf8.h
|
||||
Fl_Bitmap.o: ../FL/Fl_Widget.H
|
||||
@ -1356,6 +1359,7 @@ Fl_Choice.o: ../FL/Fl_Export.H
|
||||
Fl_Choice.o: ../FL/Fl_Image.H
|
||||
Fl_Choice.o: ../FL/Fl_Menu_.H
|
||||
Fl_Choice.o: ../FL/Fl_Menu_Item.H
|
||||
Fl_Choice.o: ../FL/Fl_Multi_Label.H
|
||||
Fl_Choice.o: ../FL/fl_types.h
|
||||
Fl_Choice.o: ../FL/fl_utf8.h
|
||||
Fl_Choice.o: ../FL/Fl_Widget.H
|
||||
@ -1417,6 +1421,7 @@ Fl_Color_Chooser.o: ../FL/Fl_Input.H
|
||||
Fl_Color_Chooser.o: ../FL/Fl_Input_.H
|
||||
Fl_Color_Chooser.o: ../FL/Fl_Menu_.H
|
||||
Fl_Color_Chooser.o: ../FL/Fl_Menu_Item.H
|
||||
Fl_Color_Chooser.o: ../FL/Fl_Multi_Label.H
|
||||
Fl_Color_Chooser.o: ../FL/Fl_Return_Button.H
|
||||
Fl_Color_Chooser.o: ../FL/fl_types.h
|
||||
Fl_Color_Chooser.o: ../FL/fl_utf8.h
|
||||
@ -1807,6 +1812,7 @@ Fl_File_Chooser.o: ../FL/Fl_Light_Button.H
|
||||
Fl_File_Chooser.o: ../FL/Fl_Menu_.H
|
||||
Fl_File_Chooser.o: ../FL/Fl_Menu_Button.H
|
||||
Fl_File_Chooser.o: ../FL/Fl_Menu_Item.H
|
||||
Fl_File_Chooser.o: ../FL/Fl_Multi_Label.H
|
||||
Fl_File_Chooser.o: ../FL/Fl_Preferences.H
|
||||
Fl_File_Chooser.o: ../FL/Fl_Return_Button.H
|
||||
Fl_File_Chooser.o: ../FL/Fl_Tile.H
|
||||
@ -1844,6 +1850,7 @@ Fl_File_Chooser2.o: ../FL/Fl_Light_Button.H
|
||||
Fl_File_Chooser2.o: ../FL/Fl_Menu_.H
|
||||
Fl_File_Chooser2.o: ../FL/Fl_Menu_Button.H
|
||||
Fl_File_Chooser2.o: ../FL/Fl_Menu_Item.H
|
||||
Fl_File_Chooser2.o: ../FL/Fl_Multi_Label.H
|
||||
Fl_File_Chooser2.o: ../FL/Fl_Preferences.H
|
||||
Fl_File_Chooser2.o: ../FL/Fl_Return_Button.H
|
||||
Fl_File_Chooser2.o: ../FL/Fl_Shared_Image.H
|
||||
@ -1886,6 +1893,7 @@ fl_file_dir.o: ../FL/Fl_Light_Button.H
|
||||
fl_file_dir.o: ../FL/Fl_Menu_.H
|
||||
fl_file_dir.o: ../FL/Fl_Menu_Button.H
|
||||
fl_file_dir.o: ../FL/Fl_Menu_Item.H
|
||||
fl_file_dir.o: ../FL/Fl_Multi_Label.H
|
||||
fl_file_dir.o: ../FL/Fl_Preferences.H
|
||||
fl_file_dir.o: ../FL/Fl_Return_Button.H
|
||||
fl_file_dir.o: ../FL/Fl_Tile.H
|
||||
@ -2364,6 +2372,7 @@ Fl_Image.o: ../FL/fl_draw.H
|
||||
Fl_Image.o: ../FL/Fl_Export.H
|
||||
Fl_Image.o: ../FL/Fl_Image.H
|
||||
Fl_Image.o: ../FL/Fl_Menu_Item.H
|
||||
Fl_Image.o: ../FL/Fl_Multi_Label.H
|
||||
Fl_Image.o: ../FL/fl_types.h
|
||||
Fl_Image.o: ../FL/fl_utf8.h
|
||||
Fl_Image.o: ../FL/Fl_Widget.H
|
||||
@ -2440,6 +2449,7 @@ Fl_Input.o: ../FL/Fl_Int_Input.H
|
||||
Fl_Input.o: ../FL/Fl_Menu_Item.H
|
||||
Fl_Input.o: ../FL/Fl_Multiline_Input.H
|
||||
Fl_Input.o: ../FL/Fl_Multiline_Output.H
|
||||
Fl_Input.o: ../FL/Fl_Multi_Label.H
|
||||
Fl_Input.o: ../FL/Fl_Output.H
|
||||
Fl_Input.o: ../FL/Fl_Pixmap.H
|
||||
Fl_Input.o: ../FL/Fl_Plugin.H
|
||||
@ -2513,6 +2523,7 @@ Fl_Input_Choice.o: ../FL/Fl_Input_Choice.H
|
||||
Fl_Input_Choice.o: ../FL/Fl_Menu_.H
|
||||
Fl_Input_Choice.o: ../FL/Fl_Menu_Button.H
|
||||
Fl_Input_Choice.o: ../FL/Fl_Menu_Item.H
|
||||
Fl_Input_Choice.o: ../FL/Fl_Multi_Label.H
|
||||
Fl_Input_Choice.o: ../FL/fl_types.h
|
||||
Fl_Input_Choice.o: ../FL/fl_utf8.h
|
||||
Fl_Input_Choice.o: ../FL/Fl_Widget.H
|
||||
@ -2596,6 +2607,7 @@ Fl_Menu.o: ../FL/Fl_Image.H
|
||||
Fl_Menu.o: ../FL/Fl_Menu_.H
|
||||
Fl_Menu.o: ../FL/Fl_Menu_Item.H
|
||||
Fl_Menu.o: ../FL/Fl_Menu_Window.H
|
||||
Fl_Menu.o: ../FL/Fl_Multi_Label.H
|
||||
Fl_Menu.o: ../FL/Fl_Overlay_Window.H
|
||||
Fl_Menu.o: ../FL/Fl_Pixmap.H
|
||||
Fl_Menu.o: ../FL/Fl_Plugin.H
|
||||
@ -2628,19 +2640,24 @@ Fl_Menu_.o: ../FL/Fl_Export.H
|
||||
Fl_Menu_.o: ../FL/Fl_Image.H
|
||||
Fl_Menu_.o: ../FL/Fl_Menu_.H
|
||||
Fl_Menu_.o: ../FL/Fl_Menu_Item.H
|
||||
Fl_Menu_.o: ../FL/Fl_Multi_Label.H
|
||||
Fl_Menu_.o: ../FL/fl_types.h
|
||||
Fl_Menu_.o: ../FL/fl_utf8.h
|
||||
Fl_Menu_.o: ../FL/Fl_Widget.H
|
||||
Fl_Menu_.o: ../FL/platform_types.h
|
||||
Fl_Menu_.o: flstring.h
|
||||
Fl_Menu_add.o: ../config.h
|
||||
Fl_Menu_add.o: ../FL/Enumerations.H
|
||||
Fl_Menu_add.o: ../FL/Fl.H
|
||||
Fl_Menu_add.o: ../FL/fl_attr.h
|
||||
Fl_Menu_add.o: ../FL/fl_config.h
|
||||
Fl_Menu_add.o: ../FL/Fl_Export.H
|
||||
Fl_Menu_add.o: ../FL/Fl_Image.H
|
||||
Fl_Menu_add.o: ../FL/Fl_Menu_.H
|
||||
Fl_Menu_add.o: ../FL/Fl_Menu_Item.H
|
||||
Fl_Menu_add.o: ../FL/Fl_Multi_Label.H
|
||||
Fl_Menu_add.o: ../FL/fl_string_functions.h
|
||||
Fl_Menu_add.o: ../FL/fl_types.h
|
||||
Fl_Menu_add.o: ../FL/Fl_Widget.H
|
||||
Fl_Menu_add.o: ../FL/platform_types.h
|
||||
Fl_Menu_add.o: flstring.h
|
||||
@ -2656,6 +2673,7 @@ Fl_Menu_Bar.o: ../FL/Fl_Image.H
|
||||
Fl_Menu_Bar.o: ../FL/Fl_Menu_.H
|
||||
Fl_Menu_Bar.o: ../FL/Fl_Menu_Bar.H
|
||||
Fl_Menu_Bar.o: ../FL/Fl_Menu_Item.H
|
||||
Fl_Menu_Bar.o: ../FL/Fl_Multi_Label.H
|
||||
Fl_Menu_Bar.o: ../FL/fl_types.h
|
||||
Fl_Menu_Bar.o: ../FL/fl_utf8.h
|
||||
Fl_Menu_Bar.o: ../FL/Fl_Widget.H
|
||||
@ -2672,6 +2690,7 @@ Fl_Menu_Button.o: ../FL/Fl_Image.H
|
||||
Fl_Menu_Button.o: ../FL/Fl_Menu_.H
|
||||
Fl_Menu_Button.o: ../FL/Fl_Menu_Button.H
|
||||
Fl_Menu_Button.o: ../FL/Fl_Menu_Item.H
|
||||
Fl_Menu_Button.o: ../FL/Fl_Multi_Label.H
|
||||
Fl_Menu_Button.o: ../FL/Fl_Rect.H
|
||||
Fl_Menu_Button.o: ../FL/fl_types.h
|
||||
Fl_Menu_Button.o: ../FL/fl_utf8.h
|
||||
@ -2687,6 +2706,7 @@ Fl_Menu_global.o: ../FL/Fl_Export.H
|
||||
Fl_Menu_global.o: ../FL/Fl_Image.H
|
||||
Fl_Menu_global.o: ../FL/Fl_Menu_.H
|
||||
Fl_Menu_global.o: ../FL/Fl_Menu_Item.H
|
||||
Fl_Menu_global.o: ../FL/Fl_Multi_Label.H
|
||||
Fl_Menu_global.o: ../FL/fl_types.h
|
||||
Fl_Menu_global.o: ../FL/fl_utf8.h
|
||||
Fl_Menu_global.o: ../FL/Fl_Widget.H
|
||||
@ -2779,6 +2799,7 @@ Fl_Native_File_Chooser.o: ../FL/Fl_Light_Button.H
|
||||
Fl_Native_File_Chooser.o: ../FL/Fl_Menu_.H
|
||||
Fl_Native_File_Chooser.o: ../FL/Fl_Menu_Button.H
|
||||
Fl_Native_File_Chooser.o: ../FL/Fl_Menu_Item.H
|
||||
Fl_Native_File_Chooser.o: ../FL/Fl_Multi_Label.H
|
||||
Fl_Native_File_Chooser.o: ../FL/Fl_Native_File_Chooser.H
|
||||
Fl_Native_File_Chooser.o: ../FL/Fl_Preferences.H
|
||||
Fl_Native_File_Chooser.o: ../FL/Fl_Return_Button.H
|
||||
@ -2815,6 +2836,7 @@ Fl_Native_File_Chooser_FLTK.o: ../FL/Fl_Light_Button.H
|
||||
Fl_Native_File_Chooser_FLTK.o: ../FL/Fl_Menu_.H
|
||||
Fl_Native_File_Chooser_FLTK.o: ../FL/Fl_Menu_Button.H
|
||||
Fl_Native_File_Chooser_FLTK.o: ../FL/Fl_Menu_Item.H
|
||||
Fl_Native_File_Chooser_FLTK.o: ../FL/Fl_Multi_Label.H
|
||||
Fl_Native_File_Chooser_FLTK.o: ../FL/Fl_Native_File_Chooser.H
|
||||
Fl_Native_File_Chooser_FLTK.o: ../FL/Fl_Preferences.H
|
||||
Fl_Native_File_Chooser_FLTK.o: ../FL/Fl_Return_Button.H
|
||||
@ -2857,6 +2879,7 @@ Fl_Native_File_Chooser_GTK.o: ../FL/Fl_Light_Button.H
|
||||
Fl_Native_File_Chooser_GTK.o: ../FL/Fl_Menu_.H
|
||||
Fl_Native_File_Chooser_GTK.o: ../FL/Fl_Menu_Button.H
|
||||
Fl_Native_File_Chooser_GTK.o: ../FL/Fl_Menu_Item.H
|
||||
Fl_Native_File_Chooser_GTK.o: ../FL/Fl_Multi_Label.H
|
||||
Fl_Native_File_Chooser_GTK.o: ../FL/Fl_Native_File_Chooser.H
|
||||
Fl_Native_File_Chooser_GTK.o: ../FL/Fl_Overlay_Window.H
|
||||
Fl_Native_File_Chooser_GTK.o: ../FL/Fl_Pixmap.H
|
||||
@ -2921,6 +2944,7 @@ Fl_Native_File_Chooser_Kdialog.o: ../FL/Fl_Light_Button.H
|
||||
Fl_Native_File_Chooser_Kdialog.o: ../FL/Fl_Menu_.H
|
||||
Fl_Native_File_Chooser_Kdialog.o: ../FL/Fl_Menu_Button.H
|
||||
Fl_Native_File_Chooser_Kdialog.o: ../FL/Fl_Menu_Item.H
|
||||
Fl_Native_File_Chooser_Kdialog.o: ../FL/Fl_Multi_Label.H
|
||||
Fl_Native_File_Chooser_Kdialog.o: ../FL/Fl_Native_File_Chooser.H
|
||||
Fl_Native_File_Chooser_Kdialog.o: ../FL/Fl_Overlay_Window.H
|
||||
Fl_Native_File_Chooser_Kdialog.o: ../FL/Fl_Pixmap.H
|
||||
@ -2973,6 +2997,7 @@ Fl_Native_File_Chooser_Zenity.o: ../FL/Fl_Light_Button.H
|
||||
Fl_Native_File_Chooser_Zenity.o: ../FL/Fl_Menu_.H
|
||||
Fl_Native_File_Chooser_Zenity.o: ../FL/Fl_Menu_Button.H
|
||||
Fl_Native_File_Chooser_Zenity.o: ../FL/Fl_Menu_Item.H
|
||||
Fl_Native_File_Chooser_Zenity.o: ../FL/Fl_Multi_Label.H
|
||||
Fl_Native_File_Chooser_Zenity.o: ../FL/Fl_Native_File_Chooser.H
|
||||
Fl_Native_File_Chooser_Zenity.o: ../FL/Fl_Preferences.H
|
||||
Fl_Native_File_Chooser_Zenity.o: ../FL/Fl_Return_Button.H
|
||||
@ -3147,6 +3172,7 @@ Fl_Pixmap.o: ../FL/fl_draw.H
|
||||
Fl_Pixmap.o: ../FL/Fl_Export.H
|
||||
Fl_Pixmap.o: ../FL/Fl_Image.H
|
||||
Fl_Pixmap.o: ../FL/Fl_Menu_Item.H
|
||||
Fl_Pixmap.o: ../FL/Fl_Multi_Label.H
|
||||
Fl_Pixmap.o: ../FL/Fl_Pixmap.H
|
||||
Fl_Pixmap.o: ../FL/fl_types.h
|
||||
Fl_Pixmap.o: ../FL/fl_utf8.h
|
||||
@ -3417,6 +3443,7 @@ Fl_Scheme_Choice.o: ../FL/Fl_Group.H
|
||||
Fl_Scheme_Choice.o: ../FL/Fl_Image.H
|
||||
Fl_Scheme_Choice.o: ../FL/Fl_Menu_.H
|
||||
Fl_Scheme_Choice.o: ../FL/Fl_Menu_Item.H
|
||||
Fl_Scheme_Choice.o: ../FL/Fl_Multi_Label.H
|
||||
Fl_Scheme_Choice.o: ../FL/Fl_Scheme.H
|
||||
Fl_Scheme_Choice.o: ../FL/Fl_Scheme_Choice.H
|
||||
Fl_Scheme_Choice.o: ../FL/fl_types.h
|
||||
@ -3650,36 +3677,6 @@ fl_show_colormap.o: ../FL/fl_types.h
|
||||
fl_show_colormap.o: ../FL/fl_utf8.h
|
||||
fl_show_colormap.o: ../FL/Fl_Window.H
|
||||
fl_show_colormap.o: ../FL/platform_types.h
|
||||
Fl_Simple_Terminal.o: ../config.h
|
||||
Fl_Simple_Terminal.o: ../FL/Enumerations.H
|
||||
Fl_Simple_Terminal.o: ../FL/Fl.H
|
||||
Fl_Simple_Terminal.o: ../FL/fl_attr.h
|
||||
Fl_Simple_Terminal.o: ../FL/Fl_Bitmap.H
|
||||
Fl_Simple_Terminal.o: ../FL/Fl_Cairo.H
|
||||
Fl_Simple_Terminal.o: ../FL/fl_casts.H
|
||||
Fl_Simple_Terminal.o: ../FL/fl_config.h
|
||||
Fl_Simple_Terminal.o: ../FL/Fl_Device.H
|
||||
Fl_Simple_Terminal.o: ../FL/fl_draw.H
|
||||
Fl_Simple_Terminal.o: ../FL/Fl_Export.H
|
||||
Fl_Simple_Terminal.o: ../FL/Fl_Graphics_Driver.H
|
||||
Fl_Simple_Terminal.o: ../FL/Fl_Group.H
|
||||
Fl_Simple_Terminal.o: ../FL/Fl_Image.H
|
||||
Fl_Simple_Terminal.o: ../FL/Fl_Pixmap.H
|
||||
Fl_Simple_Terminal.o: ../FL/Fl_Plugin.H
|
||||
Fl_Simple_Terminal.o: ../FL/Fl_Preferences.H
|
||||
Fl_Simple_Terminal.o: ../FL/Fl_Rect.H
|
||||
Fl_Simple_Terminal.o: ../FL/Fl_RGB_Image.H
|
||||
Fl_Simple_Terminal.o: ../FL/Fl_Scrollbar.H
|
||||
Fl_Simple_Terminal.o: ../FL/Fl_Simple_Terminal.H
|
||||
Fl_Simple_Terminal.o: ../FL/Fl_Slider.H
|
||||
Fl_Simple_Terminal.o: ../FL/Fl_Text_Buffer.H
|
||||
Fl_Simple_Terminal.o: ../FL/Fl_Text_Display.H
|
||||
Fl_Simple_Terminal.o: ../FL/fl_types.h
|
||||
Fl_Simple_Terminal.o: ../FL/fl_utf8.h
|
||||
Fl_Simple_Terminal.o: ../FL/Fl_Valuator.H
|
||||
Fl_Simple_Terminal.o: ../FL/Fl_Widget.H
|
||||
Fl_Simple_Terminal.o: ../FL/platform_types.h
|
||||
Fl_Simple_Terminal.o: flstring.h
|
||||
Fl_Single_Window.o: ../FL/Fl_Single_Window.H
|
||||
Fl_Single_Window.o: ../FL/Fl_Window.H
|
||||
Fl_Slider.o: ../config.h
|
||||
@ -3810,6 +3807,7 @@ Fl_Sys_Menu_Bar.o: ../FL/Fl_Image.H
|
||||
Fl_Sys_Menu_Bar.o: ../FL/Fl_Menu_.H
|
||||
Fl_Sys_Menu_Bar.o: ../FL/Fl_Menu_Bar.H
|
||||
Fl_Sys_Menu_Bar.o: ../FL/Fl_Menu_Item.H
|
||||
Fl_Sys_Menu_Bar.o: ../FL/Fl_Multi_Label.H
|
||||
Fl_Sys_Menu_Bar.o: ../FL/Fl_Preferences.H
|
||||
Fl_Sys_Menu_Bar.o: ../FL/Fl_Sys_Menu_Bar.H
|
||||
Fl_Sys_Menu_Bar.o: ../FL/fl_types.h
|
||||
@ -3870,6 +3868,7 @@ Fl_Tabs.o: ../FL/Fl_Export.H
|
||||
Fl_Tabs.o: ../FL/Fl_Group.H
|
||||
Fl_Tabs.o: ../FL/Fl_Image.H
|
||||
Fl_Tabs.o: ../FL/Fl_Menu_Item.H
|
||||
Fl_Tabs.o: ../FL/Fl_Multi_Label.H
|
||||
Fl_Tabs.o: ../FL/Fl_Tabs.H
|
||||
Fl_Tabs.o: ../FL/Fl_Tooltip.H
|
||||
Fl_Tabs.o: ../FL/fl_types.h
|
||||
@ -3931,6 +3930,7 @@ Fl_Text_Display.o: ../FL/Fl_Image.H
|
||||
Fl_Text_Display.o: ../FL/Fl_Input.H
|
||||
Fl_Text_Display.o: ../FL/Fl_Input_.H
|
||||
Fl_Text_Display.o: ../FL/Fl_Menu_Item.H
|
||||
Fl_Text_Display.o: ../FL/Fl_Multi_Label.H
|
||||
Fl_Text_Display.o: ../FL/Fl_Pixmap.H
|
||||
Fl_Text_Display.o: ../FL/Fl_Plugin.H
|
||||
Fl_Text_Display.o: ../FL/Fl_Preferences.H
|
||||
@ -4584,6 +4584,7 @@ forms_bitmap.o: ../FL/Fl_Light_Button.H
|
||||
forms_bitmap.o: ../FL/Fl_Menu_.H
|
||||
forms_bitmap.o: ../FL/Fl_Menu_Button.H
|
||||
forms_bitmap.o: ../FL/Fl_Menu_Item.H
|
||||
forms_bitmap.o: ../FL/Fl_Multi_Label.H
|
||||
forms_bitmap.o: ../FL/Fl_Pixmap.H
|
||||
forms_bitmap.o: ../FL/Fl_Plugin.H
|
||||
forms_bitmap.o: ../FL/Fl_Positioner.H
|
||||
@ -4642,6 +4643,7 @@ forms_compatibility.o: ../FL/Fl_Light_Button.H
|
||||
forms_compatibility.o: ../FL/Fl_Menu_.H
|
||||
forms_compatibility.o: ../FL/Fl_Menu_Button.H
|
||||
forms_compatibility.o: ../FL/Fl_Menu_Item.H
|
||||
forms_compatibility.o: ../FL/Fl_Multi_Label.H
|
||||
forms_compatibility.o: ../FL/Fl_Pixmap.H
|
||||
forms_compatibility.o: ../FL/Fl_Plugin.H
|
||||
forms_compatibility.o: ../FL/Fl_Positioner.H
|
||||
@ -4714,6 +4716,7 @@ forms_fselect.o: ../FL/Fl_Light_Button.H
|
||||
forms_fselect.o: ../FL/Fl_Menu_.H
|
||||
forms_fselect.o: ../FL/Fl_Menu_Button.H
|
||||
forms_fselect.o: ../FL/Fl_Menu_Item.H
|
||||
forms_fselect.o: ../FL/Fl_Multi_Label.H
|
||||
forms_fselect.o: ../FL/Fl_Pixmap.H
|
||||
forms_fselect.o: ../FL/Fl_Plugin.H
|
||||
forms_fselect.o: ../FL/Fl_Positioner.H
|
||||
@ -4773,6 +4776,7 @@ forms_pixmap.o: ../FL/Fl_Light_Button.H
|
||||
forms_pixmap.o: ../FL/Fl_Menu_.H
|
||||
forms_pixmap.o: ../FL/Fl_Menu_Button.H
|
||||
forms_pixmap.o: ../FL/Fl_Menu_Item.H
|
||||
forms_pixmap.o: ../FL/Fl_Multi_Label.H
|
||||
forms_pixmap.o: ../FL/Fl_Pixmap.H
|
||||
forms_pixmap.o: ../FL/Fl_Plugin.H
|
||||
forms_pixmap.o: ../FL/Fl_Positioner.H
|
||||
@ -4831,6 +4835,7 @@ forms_timer.o: ../FL/Fl_Light_Button.H
|
||||
forms_timer.o: ../FL/Fl_Menu_.H
|
||||
forms_timer.o: ../FL/Fl_Menu_Button.H
|
||||
forms_timer.o: ../FL/Fl_Menu_Item.H
|
||||
forms_timer.o: ../FL/Fl_Multi_Label.H
|
||||
forms_timer.o: ../FL/Fl_Pixmap.H
|
||||
forms_timer.o: ../FL/Fl_Plugin.H
|
||||
forms_timer.o: ../FL/Fl_Positioner.H
|
||||
@ -4890,6 +4895,7 @@ glut_compatibility.o: ../FL/Fl_Graphics_Driver.H
|
||||
glut_compatibility.o: ../FL/Fl_Group.H
|
||||
glut_compatibility.o: ../FL/Fl_Image.H
|
||||
glut_compatibility.o: ../FL/Fl_Menu_Item.H
|
||||
glut_compatibility.o: ../FL/Fl_Multi_Label.H
|
||||
glut_compatibility.o: ../FL/Fl_Pixmap.H
|
||||
glut_compatibility.o: ../FL/Fl_Plugin.H
|
||||
glut_compatibility.o: ../FL/Fl_Preferences.H
|
||||
|
||||
@ -179,6 +179,7 @@ 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_Multi_Label.H
|
||||
boxtype.o: ../FL/Fl_Pixmap.H
|
||||
boxtype.o: ../FL/Fl_Plugin.H
|
||||
boxtype.o: ../FL/Fl_Preferences.H
|
||||
@ -212,6 +213,7 @@ browser.o: ../FL/Fl_Input_.H
|
||||
browser.o: ../FL/Fl_Int_Input.H
|
||||
browser.o: ../FL/Fl_Menu_.H
|
||||
browser.o: ../FL/Fl_Menu_Item.H
|
||||
browser.o: ../FL/Fl_Multi_Label.H
|
||||
browser.o: ../FL/Fl_Rect.H
|
||||
browser.o: ../FL/Fl_Scrollbar.H
|
||||
browser.o: ../FL/Fl_Select_Browser.H
|
||||
@ -250,6 +252,7 @@ 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_Multi_Label.H
|
||||
buttons.o: ../FL/Fl_Repeat_Button.H
|
||||
buttons.o: ../FL/Fl_Return_Button.H
|
||||
buttons.o: ../FL/Fl_Round_Button.H
|
||||
@ -306,6 +309,7 @@ checkers.o: ../FL/Fl_Graphics_Driver.H
|
||||
checkers.o: ../FL/Fl_Group.H
|
||||
checkers.o: ../FL/Fl_Image.H
|
||||
checkers.o: ../FL/Fl_Menu_Item.H
|
||||
checkers.o: ../FL/Fl_Multi_Label.H
|
||||
checkers.o: ../FL/Fl_Pixmap.H
|
||||
checkers.o: ../FL/Fl_Plugin.H
|
||||
checkers.o: ../FL/Fl_PNG_Image.H
|
||||
@ -353,6 +357,7 @@ clipboard.o: ../FL/Fl_Light_Button.H
|
||||
clipboard.o: ../FL/Fl_Menu_.H
|
||||
clipboard.o: ../FL/Fl_Menu_Button.H
|
||||
clipboard.o: ../FL/Fl_Menu_Item.H
|
||||
clipboard.o: ../FL/Fl_Multi_Label.H
|
||||
clipboard.o: ../FL/Fl_Native_File_Chooser.H
|
||||
clipboard.o: ../FL/Fl_Pixmap.H
|
||||
clipboard.o: ../FL/Fl_Plugin.H
|
||||
@ -441,6 +446,7 @@ color_chooser.o: ../FL/Fl_Input.H
|
||||
color_chooser.o: ../FL/Fl_Input_.H
|
||||
color_chooser.o: ../FL/Fl_Menu_.H
|
||||
color_chooser.o: ../FL/Fl_Menu_Item.H
|
||||
color_chooser.o: ../FL/Fl_Multi_Label.H
|
||||
color_chooser.o: ../FL/Fl_Pixmap.H
|
||||
color_chooser.o: ../FL/Fl_Plugin.H
|
||||
color_chooser.o: ../FL/Fl_Preferences.H
|
||||
@ -482,6 +488,7 @@ contrast.o: ../FL/Fl_Input_.H
|
||||
contrast.o: ../FL/Fl_Light_Button.H
|
||||
contrast.o: ../FL/Fl_Menu_.H
|
||||
contrast.o: ../FL/Fl_Menu_Item.H
|
||||
contrast.o: ../FL/Fl_Multi_Label.H
|
||||
contrast.o: ../FL/Fl_Output.H
|
||||
contrast.o: ../FL/Fl_Pixmap.H
|
||||
contrast.o: ../FL/Fl_Plugin.H
|
||||
@ -523,6 +530,7 @@ cube.o: ../FL/Fl_Light_Button.H
|
||||
cube.o: ../FL/Fl_Menu_.H
|
||||
cube.o: ../FL/Fl_Menu_Bar.H
|
||||
cube.o: ../FL/Fl_Menu_Item.H
|
||||
cube.o: ../FL/Fl_Multi_Label.H
|
||||
cube.o: ../FL/Fl_Paged_Device.H
|
||||
cube.o: ../FL/Fl_Plugin.H
|
||||
cube.o: ../FL/Fl_Preferences.H
|
||||
@ -602,6 +610,7 @@ cursor.o: ../FL/Fl_Hor_Value_Slider.H
|
||||
cursor.o: ../FL/Fl_Image.H
|
||||
cursor.o: ../FL/Fl_Menu_.H
|
||||
cursor.o: ../FL/Fl_Menu_Item.H
|
||||
cursor.o: ../FL/Fl_Multi_Label.H
|
||||
cursor.o: ../FL/Fl_Pixmap.H
|
||||
cursor.o: ../FL/Fl_Plugin.H
|
||||
cursor.o: ../FL/Fl_Preferences.H
|
||||
@ -665,6 +674,7 @@ demo.o: ../FL/Fl_Image.H
|
||||
demo.o: ../FL/Fl_Menu_.H
|
||||
demo.o: ../FL/Fl_Menu_Button.H
|
||||
demo.o: ../FL/Fl_Menu_Item.H
|
||||
demo.o: ../FL/Fl_Multi_Label.H
|
||||
demo.o: ../FL/Fl_Rect.H
|
||||
demo.o: ../FL/Fl_Scheme.H
|
||||
demo.o: ../FL/Fl_Scheme_Choice.H
|
||||
@ -712,6 +722,7 @@ device.o: ../FL/Fl_Light_Button.H
|
||||
device.o: ../FL/Fl_Menu_.H
|
||||
device.o: ../FL/Fl_Menu_Button.H
|
||||
device.o: ../FL/Fl_Menu_Item.H
|
||||
device.o: ../FL/Fl_Multi_Label.H
|
||||
device.o: ../FL/Fl_Native_File_Chooser.H
|
||||
device.o: ../FL/Fl_Paged_Device.H
|
||||
device.o: ../FL/Fl_Pixmap.H
|
||||
@ -801,6 +812,7 @@ editor.o: ../FL/Fl_Menu_.H
|
||||
editor.o: ../FL/Fl_Menu_Bar.H
|
||||
editor.o: ../FL/Fl_Menu_Button.H
|
||||
editor.o: ../FL/Fl_Menu_Item.H
|
||||
editor.o: ../FL/Fl_Multi_Label.H
|
||||
editor.o: ../FL/Fl_Native_File_Chooser.H
|
||||
editor.o: ../FL/Fl_Pixmap.H
|
||||
editor.o: ../FL/Fl_Plugin.H
|
||||
@ -871,6 +883,7 @@ file_chooser.o: ../FL/Fl_Light_Button.H
|
||||
file_chooser.o: ../FL/Fl_Menu_.H
|
||||
file_chooser.o: ../FL/Fl_Menu_Button.H
|
||||
file_chooser.o: ../FL/Fl_Menu_Item.H
|
||||
file_chooser.o: ../FL/Fl_Multi_Label.H
|
||||
file_chooser.o: ../FL/Fl_PNM_Image.H
|
||||
file_chooser.o: ../FL/Fl_Preferences.H
|
||||
file_chooser.o: ../FL/Fl_Rect.H
|
||||
@ -974,6 +987,7 @@ fonts.o: ../FL/Fl_Light_Button.H
|
||||
fonts.o: ../FL/Fl_Menu_.H
|
||||
fonts.o: ../FL/Fl_Menu_Button.H
|
||||
fonts.o: ../FL/Fl_Menu_Item.H
|
||||
fonts.o: ../FL/Fl_Multi_Label.H
|
||||
fonts.o: ../FL/Fl_Pixmap.H
|
||||
fonts.o: ../FL/Fl_Plugin.H
|
||||
fonts.o: ../FL/Fl_Preferences.H
|
||||
@ -1028,6 +1042,7 @@ forms.o: ../FL/Fl_Light_Button.H
|
||||
forms.o: ../FL/Fl_Menu_.H
|
||||
forms.o: ../FL/Fl_Menu_Button.H
|
||||
forms.o: ../FL/Fl_Menu_Item.H
|
||||
forms.o: ../FL/Fl_Multi_Label.H
|
||||
forms.o: ../FL/Fl_Pixmap.H
|
||||
forms.o: ../FL/Fl_Plugin.H
|
||||
forms.o: ../FL/Fl_Positioner.H
|
||||
@ -1116,6 +1131,7 @@ fullscreen.o: ../FL/Fl_Light_Button.H
|
||||
fullscreen.o: ../FL/Fl_Menu_.H
|
||||
fullscreen.o: ../FL/Fl_Menu_Button.H
|
||||
fullscreen.o: ../FL/Fl_Menu_Item.H
|
||||
fullscreen.o: ../FL/Fl_Multi_Label.H
|
||||
fullscreen.o: ../FL/Fl_Scrollbar.H
|
||||
fullscreen.o: ../FL/Fl_Single_Window.H
|
||||
fullscreen.o: ../FL/Fl_Slider.H
|
||||
@ -1253,6 +1269,7 @@ icon.o: ../FL/Fl_Group.H
|
||||
icon.o: ../FL/Fl_Image.H
|
||||
icon.o: ../FL/Fl_Menu_.H
|
||||
icon.o: ../FL/Fl_Menu_Item.H
|
||||
icon.o: ../FL/Fl_Multi_Label.H
|
||||
icon.o: ../FL/Fl_RGB_Image.H
|
||||
icon.o: ../FL/fl_types.h
|
||||
icon.o: ../FL/fl_utf8.h
|
||||
@ -1316,6 +1333,7 @@ inactive.o: ../FL/Fl_Light_Button.H
|
||||
inactive.o: ../FL/Fl_Menu_.H
|
||||
inactive.o: ../FL/Fl_Menu_Button.H
|
||||
inactive.o: ../FL/Fl_Menu_Item.H
|
||||
inactive.o: ../FL/Fl_Multi_Label.H
|
||||
inactive.o: ../FL/Fl_Roller.H
|
||||
inactive.o: ../FL/Fl_Round_Button.H
|
||||
inactive.o: ../FL/Fl_Scrollbar.H
|
||||
@ -1349,6 +1367,7 @@ input.o: ../FL/Fl_Light_Button.H
|
||||
input.o: ../FL/Fl_Menu_.H
|
||||
input.o: ../FL/Fl_Menu_Item.H
|
||||
input.o: ../FL/Fl_Multiline_Input.H
|
||||
input.o: ../FL/Fl_Multi_Label.H
|
||||
input.o: ../FL/Fl_Rect.H
|
||||
input.o: ../FL/Fl_Return_Button.H
|
||||
input.o: ../FL/Fl_Scrollbar.H
|
||||
@ -1380,6 +1399,7 @@ input_choice.o: ../FL/Fl_Input_Choice.H
|
||||
input_choice.o: ../FL/Fl_Menu_.H
|
||||
input_choice.o: ../FL/Fl_Menu_Button.H
|
||||
input_choice.o: ../FL/Fl_Menu_Item.H
|
||||
input_choice.o: ../FL/Fl_Multi_Label.H
|
||||
input_choice.o: ../FL/Fl_Rect.H
|
||||
input_choice.o: ../FL/Fl_Scrollbar.H
|
||||
input_choice.o: ../FL/Fl_Terminal.H
|
||||
@ -1429,6 +1449,7 @@ label.o: ../FL/Fl_Input.H
|
||||
label.o: ../FL/Fl_Input_.H
|
||||
label.o: ../FL/Fl_Menu_.H
|
||||
label.o: ../FL/Fl_Menu_Item.H
|
||||
label.o: ../FL/Fl_Multi_Label.H
|
||||
label.o: ../FL/Fl_Pixmap.H
|
||||
label.o: ../FL/Fl_Plugin.H
|
||||
label.o: ../FL/Fl_Preferences.H
|
||||
@ -1465,6 +1486,7 @@ line_style.o: ../FL/Fl_Image.H
|
||||
line_style.o: ../FL/Fl_Light_Button.H
|
||||
line_style.o: ../FL/Fl_Menu_.H
|
||||
line_style.o: ../FL/Fl_Menu_Item.H
|
||||
line_style.o: ../FL/Fl_Multi_Label.H
|
||||
line_style.o: ../FL/Fl_Pixmap.H
|
||||
line_style.o: ../FL/Fl_Plugin.H
|
||||
line_style.o: ../FL/Fl_Preferences.H
|
||||
@ -1544,6 +1566,7 @@ menubar.o: ../FL/Fl_Menu_.H
|
||||
menubar.o: ../FL/Fl_Menu_Bar.H
|
||||
menubar.o: ../FL/Fl_Menu_Button.H
|
||||
menubar.o: ../FL/Fl_Menu_Item.H
|
||||
menubar.o: ../FL/Fl_Multi_Label.H
|
||||
menubar.o: ../FL/Fl_Pixmap.H
|
||||
menubar.o: ../FL/Fl_Plugin.H
|
||||
menubar.o: ../FL/Fl_Preferences.H
|
||||
@ -1631,6 +1654,7 @@ native-filechooser.o: ../FL/Fl_Menu_.H
|
||||
native-filechooser.o: ../FL/Fl_Menu_Button.H
|
||||
native-filechooser.o: ../FL/Fl_Menu_Item.H
|
||||
native-filechooser.o: ../FL/Fl_Multiline_Input.H
|
||||
native-filechooser.o: ../FL/Fl_Multi_Label.H
|
||||
native-filechooser.o: ../FL/Fl_Native_File_Chooser.H
|
||||
native-filechooser.o: ../FL/Fl_Pixmap.H
|
||||
native-filechooser.o: ../FL/Fl_Plugin.H
|
||||
@ -1832,6 +1856,7 @@ pixmap_browser.o: ../FL/Fl_Menu_.H
|
||||
pixmap_browser.o: ../FL/Fl_Menu_Button.H
|
||||
pixmap_browser.o: ../FL/Fl_Menu_Item.H
|
||||
pixmap_browser.o: ../FL/fl_message.H
|
||||
pixmap_browser.o: ../FL/Fl_Multi_Label.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
|
||||
@ -1874,6 +1899,7 @@ preferences.o: ../FL/Fl_Int_Input.H
|
||||
preferences.o: ../FL/Fl_Light_Button.H
|
||||
preferences.o: ../FL/Fl_Menu_.H
|
||||
preferences.o: ../FL/Fl_Menu_Item.H
|
||||
preferences.o: ../FL/Fl_Multi_Label.H
|
||||
preferences.o: ../FL/Fl_Preferences.H
|
||||
preferences.o: ../FL/Fl_Round_Button.H
|
||||
preferences.o: ../FL/Fl_Slider.H
|
||||
@ -2163,6 +2189,7 @@ rotated_text.o: ../FL/Fl_Input.H
|
||||
rotated_text.o: ../FL/Fl_Input_.H
|
||||
rotated_text.o: ../FL/Fl_Menu_.H
|
||||
rotated_text.o: ../FL/Fl_Menu_Item.H
|
||||
rotated_text.o: ../FL/Fl_Multi_Label.H
|
||||
rotated_text.o: ../FL/Fl_Pixmap.H
|
||||
rotated_text.o: ../FL/Fl_Plugin.H
|
||||
rotated_text.o: ../FL/Fl_Preferences.H
|
||||
@ -2196,6 +2223,7 @@ scroll.o: ../FL/Fl_Image.H
|
||||
scroll.o: ../FL/Fl_Light_Button.H
|
||||
scroll.o: ../FL/Fl_Menu_.H
|
||||
scroll.o: ../FL/Fl_Menu_Item.H
|
||||
scroll.o: ../FL/Fl_Multi_Label.H
|
||||
scroll.o: ../FL/Fl_Pixmap.H
|
||||
scroll.o: ../FL/Fl_Plugin.H
|
||||
scroll.o: ../FL/Fl_Preferences.H
|
||||
@ -2248,6 +2276,7 @@ subwindow.o: ../FL/Fl_Input_.H
|
||||
subwindow.o: ../FL/Fl_Menu_.H
|
||||
subwindow.o: ../FL/Fl_Menu_Button.H
|
||||
subwindow.o: ../FL/Fl_Menu_Item.H
|
||||
subwindow.o: ../FL/Fl_Multi_Label.H
|
||||
subwindow.o: ../FL/Fl_Toggle_Button.H
|
||||
subwindow.o: ../FL/fl_types.h
|
||||
subwindow.o: ../FL/fl_utf8.h
|
||||
@ -2281,6 +2310,7 @@ sudoku.o: ../FL/Fl_Input_.H
|
||||
sudoku.o: ../FL/Fl_Menu_.H
|
||||
sudoku.o: ../FL/Fl_Menu_Bar.H
|
||||
sudoku.o: ../FL/Fl_Menu_Item.H
|
||||
sudoku.o: ../FL/Fl_Multi_Label.H
|
||||
sudoku.o: ../FL/Fl_Pixmap.H
|
||||
sudoku.o: ../FL/Fl_Plugin.H
|
||||
sudoku.o: ../FL/Fl_Preferences.H
|
||||
@ -2351,6 +2381,7 @@ table.o: ../FL/Fl_Input_.H
|
||||
table.o: ../FL/Fl_Light_Button.H
|
||||
table.o: ../FL/Fl_Menu_.H
|
||||
table.o: ../FL/Fl_Menu_Item.H
|
||||
table.o: ../FL/Fl_Multi_Label.H
|
||||
table.o: ../FL/Fl_Pixmap.H
|
||||
table.o: ../FL/Fl_Plugin.H
|
||||
table.o: ../FL/Fl_Preferences.H
|
||||
@ -2388,6 +2419,7 @@ 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_Multi_Label.H
|
||||
tabs.o: ../FL/Fl_Return_Button.H
|
||||
tabs.o: ../FL/Fl_Tabs.H
|
||||
tabs.o: ../FL/fl_types.h
|
||||
@ -2418,6 +2450,7 @@ terminal.o: ../FL/Fl_Input_.H
|
||||
terminal.o: ../FL/Fl_Light_Button.H
|
||||
terminal.o: ../FL/Fl_Menu_.H
|
||||
terminal.o: ../FL/Fl_Menu_Item.H
|
||||
terminal.o: ../FL/Fl_Multi_Label.H
|
||||
terminal.o: ../FL/Fl_Rect.H
|
||||
terminal.o: ../FL/Fl_Repeat_Button.H
|
||||
terminal.o: ../FL/Fl_Scheme.H
|
||||
@ -2532,6 +2565,7 @@ tree.o: ../FL/Fl_Menu_.H
|
||||
tree.o: ../FL/Fl_Menu_Button.H
|
||||
tree.o: ../FL/Fl_Menu_Item.H
|
||||
tree.o: ../FL/fl_message.H
|
||||
tree.o: ../FL/Fl_Multi_Label.H
|
||||
tree.o: ../FL/Fl_Pixmap.H
|
||||
tree.o: ../FL/Fl_Plugin.H
|
||||
tree.o: ../FL/Fl_Preferences.H
|
||||
@ -2844,6 +2878,7 @@ unittest_schemes.o: ../FL/Fl_Input_.H
|
||||
unittest_schemes.o: ../FL/Fl_Light_Button.H
|
||||
unittest_schemes.o: ../FL/Fl_Menu_.H
|
||||
unittest_schemes.o: ../FL/Fl_Menu_Item.H
|
||||
unittest_schemes.o: ../FL/Fl_Multi_Label.H
|
||||
unittest_schemes.o: ../FL/Fl_Output.H
|
||||
unittest_schemes.o: ../FL/Fl_Pixmap.H
|
||||
unittest_schemes.o: ../FL/Fl_Plugin.H
|
||||
@ -3008,6 +3043,7 @@ unittest_unicode.o: ../FL/Fl_Input_.H
|
||||
unittest_unicode.o: ../FL/Fl_Menu_.H
|
||||
unittest_unicode.o: ../FL/Fl_Menu_Item.H
|
||||
unittest_unicode.o: ../FL/Fl_Multiline_Input.H
|
||||
unittest_unicode.o: ../FL/Fl_Multi_Label.H
|
||||
unittest_unicode.o: ../FL/Fl_Pixmap.H
|
||||
unittest_unicode.o: ../FL/Fl_Plugin.H
|
||||
unittest_unicode.o: ../FL/Fl_Preferences.H
|
||||
@ -3077,6 +3113,7 @@ utf8.o: ../FL/Fl_Input_.H
|
||||
utf8.o: ../FL/Fl_Light_Button.H
|
||||
utf8.o: ../FL/Fl_Menu_.H
|
||||
utf8.o: ../FL/Fl_Menu_Item.H
|
||||
utf8.o: ../FL/Fl_Multi_Label.H
|
||||
utf8.o: ../FL/Fl_Output.H
|
||||
utf8.o: ../FL/Fl_Pixmap.H
|
||||
utf8.o: ../FL/Fl_Plugin.H
|
||||
|
||||
Loading…
Reference in New Issue
Block a user