2022-11-08 20:30:44 +03:00
|
|
|
|
|
2022-11-16 20:14:13 +03:00
|
|
|
|
FLUID .fl file format version 1.4
|
2022-11-08 20:30:44 +03:00
|
|
|
|
=================================
|
|
|
|
|
|
2022-11-16 20:14:13 +03:00
|
|
|
|
This text explains the history of the FLUID .fl format and faithfully describes
|
2022-11-08 20:30:44 +03:00
|
|
|
|
all elements of the format and its caveats.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
History
|
|
|
|
|
-------
|
|
|
|
|
|
2022-11-16 21:50:03 +03:00
|
|
|
|
FLUID, the Fast Light User Interface Designer was started in the 1990's loosely
|
2022-11-08 20:30:44 +03:00
|
|
|
|
based on 'fdesign', a GUI designer that came with the 'Forms Library', later
|
2022-11-16 21:50:03 +03:00
|
|
|
|
'XForms Library'. FLUID's .fl file format was originally compatible with the
|
2022-11-08 20:30:44 +03:00
|
|
|
|
fdesign '.fd' format, but evolved somewhat ad hoc to become what it is today.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Basics
|
|
|
|
|
======
|
|
|
|
|
|
2022-11-16 21:50:03 +03:00
|
|
|
|
FLUID is a visual editor, storing the user interface description in .fl files
|
|
|
|
|
with the ability to create ready-to-compile C++ code. FLUID can also be used
|
2022-11-08 20:30:44 +03:00
|
|
|
|
as a command line tool to translate .fl files directly into source code. It
|
|
|
|
|
can be integrated into build scripts and most IDEs as an external tool.
|
|
|
|
|
|
2022-11-16 20:14:13 +03:00
|
|
|
|
.fl files describe a hierarchical graphical user interface for the 'FLTK'
|
|
|
|
|
library as a tree structure. Elements in the tree can be FLTK Widgets as well
|
2022-11-08 20:30:44 +03:00
|
|
|
|
as functional components like classes, C++ functions, variables, etc. .
|
2022-11-16 21:50:03 +03:00
|
|
|
|
FLUID calls all elements in the hierarchy 'Type'.
|
2022-11-08 20:30:44 +03:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Line Endings
|
|
|
|
|
------------
|
|
|
|
|
|
2022-11-16 21:50:03 +03:00
|
|
|
|
Although FLUID writes all line endings as '\n', readers should tolerate '\r\n'
|
|
|
|
|
MSWindows line endings as well. Except for the Header, the FLUID reader does not
|
2022-11-08 20:30:44 +03:00
|
|
|
|
differentiate between a line ending and a space character outside of a 'word'.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Unicode
|
|
|
|
|
-------
|
|
|
|
|
|
2022-11-16 21:50:03 +03:00
|
|
|
|
FLUID does not handle UTF-8 characters in any special manner (unescaped),
|
2022-11-16 16:41:37 +03:00
|
|
|
|
but stores and reads them verbatim, making UTF-8 character sequences perfectly
|
2022-11-16 21:50:03 +03:00
|
|
|
|
legal in .fl files. FLUID can translate UTF-8 into escape sequence when writing
|
2022-11-16 16:41:37 +03:00
|
|
|
|
source code files.
|
2022-11-08 20:30:44 +03:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
File Structure
|
|
|
|
|
--------------
|
|
|
|
|
|
|
|
|
|
.fl files start with a 'Header', followed by a list of 'Options', followed
|
2023-07-14 19:46:52 +03:00
|
|
|
|
by a hierarchy of 'Type' entries, the 'Tree'. All elements besides the Header
|
2022-11-08 20:30:44 +03:00
|
|
|
|
are composed of 'Words', 'Strings', and 'Groups'.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Words
|
|
|
|
|
-----
|
|
|
|
|
|
2022-11-16 16:41:37 +03:00
|
|
|
|
Words can be any sequence of ASCII and UTF-8 characters. Words are always
|
|
|
|
|
case-sensitive.
|
2022-11-08 20:30:44 +03:00
|
|
|
|
|
2022-11-16 16:41:37 +03:00
|
|
|
|
Simple Words that are composed of 'a'-'z', 'A'-'Z', '0'-'9', and '_' only are
|
|
|
|
|
written verbatim, followed by a space or newline.
|
2022-11-08 20:30:44 +03:00
|
|
|
|
|
|
|
|
|
All other character sequences are bracketed between between ‘{‘ and ‘}’ without
|
2023-07-14 19:46:52 +03:00
|
|
|
|
padding spaces. For example, an empty word with no characters is written
|
|
|
|
|
as '{}', and ".hello" is written as '{.hello}'.
|
2022-11-08 20:30:44 +03:00
|
|
|
|
|
|
|
|
|
The special characters ‘\’ and ‘#’ are escaped by prepending the ‘\’ character,
|
|
|
|
|
so "#define" is written as '{\#define}`.
|
|
|
|
|
|
|
|
|
|
The characters ‘{‘ and ‘}’ are also escaped with a '\' unless every opening
|
2022-11-16 20:14:13 +03:00
|
|
|
|
‘{‘ in the Word is matched with a closing ‘}’.
|
2022-11-08 20:30:44 +03:00
|
|
|
|
|
2023-07-14 19:46:52 +03:00
|
|
|
|
Note: line endings and the following indents are copied verbatim and become
|
|
|
|
|
significant within a Word.
|
2022-11-08 20:30:44 +03:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Strings
|
|
|
|
|
-------
|
|
|
|
|
|
2022-11-16 16:41:37 +03:00
|
|
|
|
Strings are generated with 'printf' statements in the hope that the
|
2023-07-14 19:46:52 +03:00
|
|
|
|
generated text can be read back as one Word, set against a corresponding
|
2022-11-08 20:30:44 +03:00
|
|
|
|
'scanf' to retrieve the original values.
|
|
|
|
|
|
2022-11-16 16:41:37 +03:00
|
|
|
|
Note: As there are no defined start and end markers to a String, a reader must
|
|
|
|
|
know when these Strings appear and be prepared to read them correctly,
|
2022-11-08 20:30:44 +03:00
|
|
|
|
even if the String itself is not useful to the reader.
|
|
|
|
|
|
2022-11-16 21:50:03 +03:00
|
|
|
|
Note: All Strings that are generated by the current FLUID source code
|
2022-11-16 16:41:37 +03:00
|
|
|
|
can be read back as a single Word.
|
2022-11-08 20:30:44 +03:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Groups
|
|
|
|
|
------
|
|
|
|
|
|
2022-11-16 16:41:37 +03:00
|
|
|
|
To create a hierarchy, Types can be grouped within Types. A Group starts with
|
2022-11-08 20:30:44 +03:00
|
|
|
|
a lone '{' and ends with a lone '}'.
|
|
|
|
|
|
|
|
|
|
Note: To know whether a '{' character starts a Word or a Group, the reader must
|
|
|
|
|
know its position within the Type sequence (see 'Types' below).
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Elements
|
|
|
|
|
========
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Header
|
|
|
|
|
------
|
|
|
|
|
|
2022-11-16 20:14:13 +03:00
|
|
|
|
The Header for any .fl file is
|
2022-11-08 20:30:44 +03:00
|
|
|
|
|
|
|
|
|
# data file for the Fltk User Interface Designer (fluid)
|
|
|
|
|
|
|
|
|
|
followed by a newline, followed by
|
|
|
|
|
|
|
|
|
|
version <float v>
|
|
|
|
|
|
|
|
|
|
wehere 'v' is the version number as in FL_VERSION (major*1.0 + minor * 0.01
|
2022-11-16 21:50:03 +03:00
|
|
|
|
+ patch * 0.0001). So for FLTK 1.3.4, 'v' would be 1.0304
|
2022-11-08 20:30:44 +03:00
|
|
|
|
|
2022-11-16 21:50:03 +03:00
|
|
|
|
Note: the version number corresponds not so much to the version of FLUID, but
|
|
|
|
|
to the version of the underlying FLTK library. So unless the version of
|
|
|
|
|
FLTK is finalised, the file format in the GitHub master branch can still
|
2022-11-08 20:30:44 +03:00
|
|
|
|
change unexpectedly.
|
|
|
|
|
|
2022-11-16 21:50:03 +03:00
|
|
|
|
Note: if the version number is above the internal version number, FLUID will
|
2022-11-08 20:30:44 +03:00
|
|
|
|
report an error and continue reading, hoping for the best.
|
2023-07-14 19:46:52 +03:00
|
|
|
|
There are no other uses inside the FLUID reader except for features for
|
|
|
|
|
the discontinued fltk2 which is beyond the scope of this document.
|
2022-11-08 20:30:44 +03:00
|
|
|
|
|
2022-11-16 21:50:03 +03:00
|
|
|
|
Note: fdesign files (.fd) start with the text "Magic:". FLUID can read these
|
2022-11-08 20:30:44 +03:00
|
|
|
|
files, but Forms/XForms files are beyond the scope of this document.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Options
|
|
|
|
|
-------
|
|
|
|
|
|
|
|
|
|
Options are usually comprised of a Word, two Words, or a Word and a String. If
|
2022-11-16 20:14:13 +03:00
|
|
|
|
an Option is missing, a default value is assumed.
|
2022-11-08 20:30:44 +03:00
|
|
|
|
|
2022-11-16 21:50:03 +03:00
|
|
|
|
"Magic:" : used by fdesign, not written by FLUID
|
2022-11-08 20:30:44 +03:00
|
|
|
|
|
|
|
|
|
"define_in_struct" : no longer used
|
|
|
|
|
|
|
|
|
|
"do_not_include_H_from_C" : don’t generate #include “myDesign.h”
|
|
|
|
|
|
|
|
|
|
"use_FL_COMMAND" : use macOS CMD key instead of Ctrl
|
|
|
|
|
|
2022-11-16 16:41:37 +03:00
|
|
|
|
"utf8_in_src" : allow UTF-8 when writing source code, otherwise
|
|
|
|
|
escape UTF-8 sequences in source code
|
2022-11-08 20:30:44 +03:00
|
|
|
|
|
2022-11-16 16:41:37 +03:00
|
|
|
|
"avoid_early_includes" : generate the '#include <FL/Fl.H>' statement late
|
2022-11-08 20:30:44 +03:00
|
|
|
|
|
|
|
|
|
"i18n_type" <word> : integer 0=default=none, 1=gettext, 2=catgets
|
|
|
|
|
|
2023-10-25 15:28:17 +03:00
|
|
|
|
--- the following list is valid until June 2023
|
|
|
|
|
|
2022-11-08 20:30:44 +03:00
|
|
|
|
"i18n_function" <word> : function name, e.g. “gettext”
|
|
|
|
|
|
|
|
|
|
"i18n_static_function" <word> : function name, e.g. “gettext_noop”
|
|
|
|
|
|
|
|
|
|
"i18n_file" <word> : file name
|
|
|
|
|
|
|
|
|
|
"i18n_set" <word> : string
|
|
|
|
|
|
2023-10-25 15:28:17 +03:00
|
|
|
|
--- the following list is valid from June 2023
|
|
|
|
|
|
|
|
|
|
"i18n_gnu_function" <word> : function name, e.g. “gettext”
|
|
|
|
|
|
|
|
|
|
"i18n_gnu_static_function" <word> : function name, e.g. “gettext_noop”
|
|
|
|
|
|
|
|
|
|
"i18n_pos_file" <word> : file name
|
|
|
|
|
|
|
|
|
|
"i18n_pos_set" <word> : string
|
|
|
|
|
|
|
|
|
|
--- end of June 2023 changes
|
|
|
|
|
|
2022-11-08 20:30:44 +03:00
|
|
|
|
"i18n_include" <word> : file name, e.g. “<libintl.h>”
|
|
|
|
|
|
|
|
|
|
"i18n_conditional" <word> : string
|
|
|
|
|
|
|
|
|
|
"header_name" <word> : can be the full filename, or just the
|
2022-11-16 21:50:03 +03:00
|
|
|
|
extension e.g. “.h” in which case FLUID will use the same filename
|
2022-11-08 20:30:44 +03:00
|
|
|
|
as the .fl file.
|
|
|
|
|
|
|
|
|
|
"code_name" <word> : can be the full filename, or just the
|
|
|
|
|
extension e.g. “.cxx”
|
|
|
|
|
|
2023-10-25 15:28:17 +03:00
|
|
|
|
"snap" <word> : starting in V1.4 from May 2023, the 'snap' keyword can be
|
2023-07-14 20:16:46 +03:00
|
|
|
|
used to store the selected layout and preset and include more suites
|
2023-10-25 15:28:17 +03:00
|
|
|
|
of presets. The following block can be skipped by reading it as a
|
|
|
|
|
single word. The format looks like this:
|
2023-07-14 20:16:46 +03:00
|
|
|
|
|
|
|
|
|
snap { optional snap Word since 5.2023
|
|
|
|
|
ver 1 version of following data
|
|
|
|
|
current_suite {My Test} opt. name of suite selected at save time
|
|
|
|
|
current_preset 1 opt. preset selected within suite
|
|
|
|
|
suite { optional suite store within project
|
|
|
|
|
name {MyLayout v0.3} name of the layout
|
|
|
|
|
preset { 1 3x preset, preset version
|
|
|
|
|
(24 integers) values representing the layout preset
|
|
|
|
|
}
|
|
|
|
|
... (two more presets)
|
|
|
|
|
}
|
|
|
|
|
... (opt. more suites)
|
|
|
|
|
}
|
2022-11-08 20:30:44 +03:00
|
|
|
|
|
|
|
|
|
"gridx" <word> : ignored
|
|
|
|
|
|
|
|
|
|
"gridy" <word> : ignored
|
|
|
|
|
|
2023-10-25 15:28:17 +03:00
|
|
|
|
"shell_commands" <word> : starting in V1.4 from Sep 2023, the 'shell_commands'
|
|
|
|
|
keyword can be used to store user configurable shell commands in a
|
|
|
|
|
project file. The following block can be skipped by reading it as a
|
|
|
|
|
single word.
|
|
|
|
|
|
|
|
|
|
shell_commands {
|
|
|
|
|
command {
|
|
|
|
|
name <string>
|
|
|
|
|
label <string>
|
|
|
|
|
shortcut <int> (optional if not 0)
|
|
|
|
|
condition <int> (optional if not 0, see Fd_Shell_Command enum)
|
|
|
|
|
condition_data <string> (optional if not "")
|
|
|
|
|
command <string> (optional, but usually there)
|
|
|
|
|
flags <int> (optional if not 0, see Fd_Shell_Command 2nd enum)
|
|
|
|
|
} ( repeat as needed)
|
|
|
|
|
}
|
|
|
|
|
|
2022-11-16 20:14:13 +03:00
|
|
|
|
Note: There is no keyword that marks the end of the Options section. The
|
|
|
|
|
Option list ends when a Word is not in the Options list and it is in
|
|
|
|
|
the list of known Types.
|
2022-11-16 16:41:37 +03:00
|
|
|
|
|
2022-11-16 21:50:03 +03:00
|
|
|
|
If the Word is neither an Option nor a vaild Type, FLUID will give an
|
2022-11-16 20:14:13 +03:00
|
|
|
|
error message and try to continue to read the file. Using new Option
|
2022-11-16 21:50:03 +03:00
|
|
|
|
keywords makes .fl files incompatible to earlier versions of FLUID.
|
2022-11-13 17:37:49 +03:00
|
|
|
|
Due to the forgiving interpreter, files may still be read correctly
|
|
|
|
|
despite error messages.
|
2022-11-16 16:41:37 +03:00
|
|
|
|
|
2022-11-16 20:14:13 +03:00
|
|
|
|
If a Word is in the list of known Types, the Type is read, including
|
|
|
|
|
optional children. No more Options are allowed beyond this point.
|
2022-11-08 20:30:44 +03:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Tree
|
|
|
|
|
====
|
|
|
|
|
|
2022-11-16 20:14:13 +03:00
|
|
|
|
If a keyword is read that is not in the Option list, we start reading Types.
|
2022-11-08 20:30:44 +03:00
|
|
|
|
Types represent all possible entries in the hierarchy including C functions,
|
2022-11-16 20:14:13 +03:00
|
|
|
|
class definitions, and of course all Widgets. A Type is any of the supported
|
2023-07-14 19:46:52 +03:00
|
|
|
|
Widgets classes, or one of the following (case sensitive):
|
2022-11-08 20:30:44 +03:00
|
|
|
|
|
|
|
|
|
Function, code, codeblock, decl, data, declblock, comment, class, widget_class
|
|
|
|
|
|
2022-11-16 16:41:37 +03:00
|
|
|
|
Every Type keyword is followed by a Word, which is usually interpreted as the
|
2022-11-08 20:30:44 +03:00
|
|
|
|
C++ name of the Type, followed by an opening `{`, a list of properties, and
|
2022-11-16 16:41:37 +03:00
|
|
|
|
a closing ‘}’. If the Type has children, they are stored in a Group between
|
|
|
|
|
another opening ‘{‘, followed by a list of Types, followed by a closing ‘}’.
|
2022-11-08 20:30:44 +03:00
|
|
|
|
|
2022-11-16 16:41:37 +03:00
|
|
|
|
Fl_Group MyGroup { Type name start_of_options
|
2022-11-16 20:14:13 +03:00
|
|
|
|
label Surprise ... Option parameter
|
2022-11-08 20:30:44 +03:00
|
|
|
|
} { end_of_options start_of_children
|
2022-11-16 16:41:37 +03:00
|
|
|
|
Fl_Button {} { Type name start_of_options
|
2022-11-16 20:14:13 +03:00
|
|
|
|
label {Don't panic...!} Option parameter
|
|
|
|
|
hide Option
|
2022-11-08 20:30:44 +03:00
|
|
|
|
} end_of_options
|
|
|
|
|
} end_of_children
|
|
|
|
|
|
2022-11-16 16:41:37 +03:00
|
|
|
|
The file ends when there are no more Types.
|
2022-11-08 20:30:44 +03:00
|
|
|
|
|
2023-07-14 19:46:52 +03:00
|
|
|
|
Note: the "class" Type may have an additional Word following immediately after
|
2022-11-08 20:30:44 +03:00
|
|
|
|
the keyword. It contains the prefix for the class. A class definition may
|
|
|
|
|
be written as:
|
|
|
|
|
|
|
|
|
|
class FL_EXPORT MyClass { ...properties... } { ...children... }
|
|
|
|
|
|
|
|
|
|
or without a prefix as
|
|
|
|
|
|
2023-07-14 19:46:52 +03:00
|
|
|
|
class MyOtherClass { ...properties... } { ...children... }
|
|
|
|
|
|
|
|
|
|
According to the source code, we know if the word after class is a prefix
|
|
|
|
|
if the next word is not a lone '{'. We apologize for the inconvenience.
|
2022-11-08 20:30:44 +03:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Types
|
|
|
|
|
-----
|
|
|
|
|
|
2022-11-16 21:50:03 +03:00
|
|
|
|
Type names are based on FLTK class names. Types derive properties from super
|
|
|
|
|
Types loosely similar to FLTK.
|
2022-11-08 20:30:44 +03:00
|
|
|
|
|
|
|
|
|
Note: the hierarchical dependency is implemented twice and somewhat conflicting
|
2022-11-16 21:50:03 +03:00
|
|
|
|
in FLUID via the Fl_..._Type hierarchy, and by using '::is_some_type()'
|
2022-11-16 20:14:13 +03:00
|
|
|
|
virtual functions, which does not always match the Type hierarchy.
|
2022-11-08 20:30:44 +03:00
|
|
|
|
|
|
|
|
|
|
2022-11-16 20:14:13 +03:00
|
|
|
|
The list of known Types and their inheritance is:
|
2022-11-08 20:30:44 +03:00
|
|
|
|
|
|
|
|
|
Fl_Type (note: can't be written)
|
|
|
|
|
+-- Function
|
|
|
|
|
+-- code
|
|
|
|
|
+-- codeblock
|
|
|
|
|
+-- decl
|
|
|
|
|
+-- data
|
|
|
|
|
+-- declblock
|
|
|
|
|
+-- comment
|
|
|
|
|
+-- class
|
|
|
|
|
+-- Fl_Widget (note: can't be written)
|
|
|
|
|
| +-- Fl_Window
|
|
|
|
|
| | +-- widget_class
|
|
|
|
|
| +-- Fl_Group
|
|
|
|
|
| | +-- Fl_Pack
|
|
|
|
|
| | +-- Fl_Flex
|
|
|
|
|
| | +-- Fl_Table
|
|
|
|
|
| | +-- Fl_Tabs
|
|
|
|
|
| | +-- Fl_Scroll
|
2023-11-15 17:05:34 +03:00
|
|
|
|
| | +-- Fl_Terminal
|
2022-11-08 20:30:44 +03:00
|
|
|
|
| | +-- Fl_Tile
|
|
|
|
|
| | +-- Fl_Wizard
|
2023-10-25 15:28:17 +03:00
|
|
|
|
| | +-- Fl_Grid
|
2022-11-16 16:41:37 +03:00
|
|
|
|
| +-- Fl_Menu_Type (note: can't be written)
|
2022-11-08 20:30:44 +03:00
|
|
|
|
| | +-- Fl_Menu_Button
|
|
|
|
|
| | +-- Fl_Choice
|
|
|
|
|
| | +-- Fl_Input_Choice
|
|
|
|
|
| | +-- Fl_Menu_Bar
|
|
|
|
|
| | +-- Fl_
|
|
|
|
|
| +-- Fl_Box
|
|
|
|
|
| +-- Fl_Button
|
|
|
|
|
| | +-- Fl_Return_Button
|
|
|
|
|
| | +-- Fl_Light_Button
|
|
|
|
|
| | +-- Fl_Check_Button
|
|
|
|
|
| | +-- Fl_Round_Button
|
|
|
|
|
| +-- Fl_Repeat_Button
|
|
|
|
|
| +-- Fl_Browser
|
|
|
|
|
| +-- Fl_Check_Browser
|
|
|
|
|
| +-- Fl_Tree
|
|
|
|
|
| +-- Fl_File_Browser
|
|
|
|
|
| +-- Fl_Counter
|
|
|
|
|
| +-- Fl_Spinner
|
|
|
|
|
| +-- Fl_Input
|
|
|
|
|
| | +-- Fl_Output
|
|
|
|
|
| +-- Fl_File_Input
|
|
|
|
|
| +-- Fl_Text_Display
|
|
|
|
|
| +-- Fl_Text_Editor
|
|
|
|
|
| +-- Fl_Clock
|
|
|
|
|
| +-- Fl_Help_View
|
|
|
|
|
| +-- Fl_Progress
|
|
|
|
|
| +-- Fl_Adjuster
|
|
|
|
|
| +-- Fl_Dial
|
|
|
|
|
| +-- Fl_Roller
|
|
|
|
|
| +-- Fl_Slider
|
|
|
|
|
| | +-- Fl_Scrollbar
|
|
|
|
|
| | +-- Fl_Value_Slider
|
|
|
|
|
| +-- Fl_Value_Input
|
|
|
|
|
| +-- Fl_Value_Output
|
|
|
|
|
.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Properties
|
|
|
|
|
----------
|
|
|
|
|
|
2022-11-16 16:41:37 +03:00
|
|
|
|
Properties have zero or one Words as their arguments. The number of arguments
|
|
|
|
|
are defined per property per Type. The content of the argument Word is defined
|
2022-11-08 20:30:44 +03:00
|
|
|
|
by the implementation of the property and can contain mutiple values, as
|
|
|
|
|
described above in Strings.
|
|
|
|
|
|
2022-11-16 16:41:37 +03:00
|
|
|
|
Properties are inherited from super Types. They can be limited to certain Types
|
2022-11-08 20:30:44 +03:00
|
|
|
|
by calls to 'MyType->is_some_type()'. All properties are optional, some are
|
|
|
|
|
mutually exclusive.
|
|
|
|
|
|
2022-11-16 16:41:37 +03:00
|
|
|
|
Note: It is possible that the same property by name has different arguments
|
|
|
|
|
when used in a different Type.
|
2022-11-08 20:30:44 +03:00
|
|
|
|
|
2023-10-25 15:28:17 +03:00
|
|
|
|
Every node can have properties that it holds for its parent. Parent properties
|
|
|
|
|
are stored as "parent_properties { ...list... }". If a node encounters this
|
|
|
|
|
property tag, it must ask its parent to interpret the contents of that list.
|
|
|
|
|
See Fl_Grid for an example.
|
2022-11-08 20:30:44 +03:00
|
|
|
|
|
|
|
|
|
Type Fl_Type <word>
|
|
|
|
|
|
2023-11-03 00:25:49 +03:00
|
|
|
|
"uid" <4-digit-hex> : since Oct 2023, optional, a unique id for this node
|
|
|
|
|
within the project file
|
2022-11-08 20:30:44 +03:00
|
|
|
|
“label” <word> : text
|
|
|
|
|
“user_data” <word> : a value or an expression
|
|
|
|
|
“user_data_type” <word> : usually “void*” or “long”
|
|
|
|
|
“callback” <word> : a function name or a function body
|
|
|
|
|
“comment” <word> : one or many lines of text
|
2022-11-16 21:50:03 +03:00
|
|
|
|
“open” : Group content visible in the FLUID tree browser
|
2022-11-16 20:14:13 +03:00
|
|
|
|
“selected” : Type was selected in tree view
|
2022-11-08 20:30:44 +03:00
|
|
|
|
|
|
|
|
|
Type "Function" <word> : function signature
|
|
|
|
|
|
|
|
|
|
none or "private" or "protected" : for methods in classes, or to mark
|
|
|
|
|
functions static in a file, default is public
|
|
|
|
|
“C” : if set, function is extern “C”
|
|
|
|
|
“return_type” <word> : C or C++ type descriptor, can start with “virtual”
|
|
|
|
|
and/or “static” to further define the function.
|
|
|
|
|
... : inherits more from Fl_Type
|
|
|
|
|
|
2022-11-16 19:38:17 +03:00
|
|
|
|
Type codeblock <word> : C++ code, for example "if (test())"
|
2022-11-08 20:30:44 +03:00
|
|
|
|
|
|
|
|
|
"after" <word> : C++ code or comment following the closing '}'
|
|
|
|
|
... : inherits more from Fl_Type
|
|
|
|
|
|
|
|
|
|
Type "decl" <word> : C++ code to declare a variable or class member
|
|
|
|
|
|
|
|
|
|
none or "public" or "private" or "protected" : for declarations within classes
|
|
|
|
|
defaults to "private"
|
|
|
|
|
none or "local" or "global": for declaration in the code body
|
|
|
|
|
defaults to "global"
|
|
|
|
|
... : inherits more from Fl_Type
|
|
|
|
|
|
|
|
|
|
Type "data" <word> : C++ variable name
|
|
|
|
|
|
|
|
|
|
"filename" <word> : name or path as entered by user, forward slashes
|
|
|
|
|
"textmode" : defaults to binary mode
|
2023-11-16 15:21:17 +03:00
|
|
|
|
"compressed" : defaults to not compressed
|
2022-11-08 20:30:44 +03:00
|
|
|
|
... : inherits more from decl
|
|
|
|
|
|
|
|
|
|
Type "declblock" <word> : C++ code
|
|
|
|
|
|
|
|
|
|
none or "public" or "protected" : defaults to private
|
|
|
|
|
"after" <word> : C++ code or comment following the block
|
|
|
|
|
... : inherits more from Fl_Type
|
|
|
|
|
|
|
|
|
|
Type "comment" <word> : comment text
|
|
|
|
|
|
|
|
|
|
"in_source" or "not_in_source": default to in_source
|
|
|
|
|
"in_header" or "not_in_header": default to in_header
|
|
|
|
|
... : inherits more from Fl_Type
|
|
|
|
|
|
|
|
|
|
Type "class" <word> <word> : prefix, class name
|
|
|
|
|
|
|
|
|
|
none or "private" or "protected" : defaults to public
|
|
|
|
|
":" <word> : name of super class
|
|
|
|
|
... : inherits more from Fl_Type
|
|
|
|
|
|
|
|
|
|
Type "Fl_Widget" <word> : C++ variable name
|
|
|
|
|
|
|
|
|
|
none or "private" or "protected" : default is public
|
|
|
|
|
"xywh" <word> : "{%d %d %d %d}" x, y, w, h
|
|
|
|
|
"tooltip" <word> : tooltip text
|
2023-12-15 01:37:05 +03:00
|
|
|
|
"scale_image <word>: "{%d %d}" width, height, default is 0, 0
|
2022-11-08 20:30:44 +03:00
|
|
|
|
"image" <word> : image name
|
2022-12-30 21:20:52 +03:00
|
|
|
|
"compress_image" <word> : integer (1.4 and up, only if `image` is set)
|
2022-12-11 01:22:24 +03:00
|
|
|
|
"bind_image" <word> : integer (1.4 and up)
|
2023-12-15 01:37:05 +03:00
|
|
|
|
"scale_deimage <word>: "{%d %d}" width, height, default is 0, 0
|
2022-11-08 20:30:44 +03:00
|
|
|
|
"deimage" <word> : deactivated image name
|
2022-12-30 21:20:52 +03:00
|
|
|
|
"compress_deimage" <word> : integer (1.4 and up, only if `deimage` is set)
|
2022-12-11 01:22:24 +03:00
|
|
|
|
"bind_deimage" <word> : integer (1.4 and up)
|
2022-11-08 20:30:44 +03:00
|
|
|
|
"type" <word> : integer
|
2022-11-16 21:50:03 +03:00
|
|
|
|
"box" <word> : text or integer (see FLTK boxtypes)
|
2022-11-08 20:30:44 +03:00
|
|
|
|
"down_box" <word> : (is_button() or Fl_Input_choice" or is_menu_button())
|
2022-11-16 21:50:03 +03:00
|
|
|
|
text or integer (see FLTK boxtypes)
|
2022-11-08 20:30:44 +03:00
|
|
|
|
"value" <word> : (is_button()) integer
|
|
|
|
|
"value" <word> : (is_valuator(), is_spinner()) double
|
|
|
|
|
"color" <word> :
|
2022-11-16 20:14:13 +03:00
|
|
|
|
If Word starts with "0x", the rest of the field is a hex number.
|
2022-11-08 20:30:44 +03:00
|
|
|
|
If two integers follow, this is color and selection_color (deprecated).
|
|
|
|
|
If one integer follows, it's the color index.
|
|
|
|
|
"selection_color" <word> : integer color index
|
|
|
|
|
"labeltype" <word> :
|
2022-11-16 20:14:13 +03:00
|
|
|
|
If the Word is "image", TBD.
|
2022-11-08 20:30:44 +03:00
|
|
|
|
Or one of "NORMAL_LABEL", "SHADOW_LABEL", "ENGRAVED_LABEL",
|
|
|
|
|
"EMBOSSED_LABEL", or "NO_LABEL"
|
|
|
|
|
"labelfont" <word> : integer, font index
|
|
|
|
|
"labelsize" <word> : integer
|
|
|
|
|
"labelcolor" <word> : integer, color index
|
|
|
|
|
"align" <word> : integer, see Fl_Align
|
|
|
|
|
"when" <word> : integer, see Fl_When
|
|
|
|
|
"minimum" <word> : (is_valuator(), is_spinner()) double
|
|
|
|
|
"maximum" <word> : (is_valuator(), is_spinner()) double
|
|
|
|
|
"step" <word> : (is_valuator(), is_spinner()) double
|
|
|
|
|
"slider_size" <word> : (is_valuator()==2) double
|
|
|
|
|
"size" <word> : (is_valuator()==2) double
|
|
|
|
|
"textfont" <word> : integer, font index
|
|
|
|
|
"textsize" <word> : integer
|
|
|
|
|
"textcolor" <word> : integer, color index
|
|
|
|
|
"hide" : default visible
|
|
|
|
|
"deactivate" : default active
|
|
|
|
|
"resizable" : default fixed
|
2022-11-16 20:14:13 +03:00
|
|
|
|
"hotspot" : make a Widget a hotspot
|
2022-11-16 19:38:17 +03:00
|
|
|
|
"divider" : add a divider under a menu item
|
2022-11-08 20:30:44 +03:00
|
|
|
|
"class" <word> : superclass
|
|
|
|
|
"shortcut" <word> : integer
|
|
|
|
|
"code0" or "code1" or "code2" or "code3" <word> : C++ extra code lines
|
|
|
|
|
"extra_code" <word> : C++ extra code lines
|
|
|
|
|
... : inherits more from Fl_Type
|
|
|
|
|
|
2023-09-26 17:01:03 +03:00
|
|
|
|
Type "Fl_Button" <word> : C++ variable name
|
|
|
|
|
|
|
|
|
|
"compact" <word> : integer, set the flag for compact buttons, defaults to 0
|
|
|
|
|
|
2022-11-08 20:30:44 +03:00
|
|
|
|
Type "Fl_Flex" <word> : C++ variable name
|
|
|
|
|
|
2022-11-16 20:14:13 +03:00
|
|
|
|
"margins" <word> : this Word is written with printf as "{%d %d %d %d}",
|
2022-11-08 20:30:44 +03:00
|
|
|
|
left, top, right, bottom
|
|
|
|
|
"gap" <word> : integer
|
2022-12-15 18:46:40 +03:00
|
|
|
|
"fixed_size_tuples" <word> : this Word is written with printf "{%d", where %d
|
2022-11-08 20:30:44 +03:00
|
|
|
|
encodes the number of tuples to follow, and zero or more " %d %d"
|
|
|
|
|
containing the index and size of that child, followed by a '}'.
|
|
|
|
|
... : inherits more from Fl_Group
|
|
|
|
|
|
|
|
|
|
Type "Fl_Window" <word> : C++ variable name
|
|
|
|
|
|
|
|
|
|
none or "modal", or "non_modal": defaults to not modal (which is
|
|
|
|
|
different to non_modal!)
|
2022-11-16 21:50:03 +03:00
|
|
|
|
"visible" : show window when opening file in FLUID
|
2022-11-08 20:30:44 +03:00
|
|
|
|
"noborder" : borderless window
|
2022-11-16 21:50:03 +03:00
|
|
|
|
"xclass" <word> : see FLTK
|
2022-11-16 20:14:13 +03:00
|
|
|
|
"size_range" : this Word is written with printf as "{%d %d %d %d}",
|
2022-11-08 20:30:44 +03:00
|
|
|
|
min_w, min_h, max_w, max_h
|
2022-11-16 20:14:13 +03:00
|
|
|
|
"xywh" <word> : this Word is written with printf as "{%d %d %d %d}",
|
2022-11-08 20:30:44 +03:00
|
|
|
|
x, y, w, h. This as actually read in the Fl_Widget Type, but here
|
|
|
|
|
it ensures that window is not created as a subwindow.
|
|
|
|
|
... : inherits more from Fl_Widget (not Fl_Group)
|
|
|
|
|
|
2023-10-25 15:28:17 +03:00
|
|
|
|
Type "Fl_Grid" <word> : C++ variable name
|
|
|
|
|
|
|
|
|
|
"dimensions" <word> : {int rows, int cols}
|
|
|
|
|
"margin" <word> : {int left, int top, int right, int bottom}
|
|
|
|
|
"gap" <word> : {int row gap, int col gap}
|
|
|
|
|
"rowheights" <word> : {int h, ...*rows}
|
|
|
|
|
"rowweights" <word> : {int h, ...*rows}
|
|
|
|
|
"rowgaps" <word> : {int h, ...*rows}
|
|
|
|
|
"colwidths" <word> : {int h, ...*cols}
|
|
|
|
|
"colweights" <word> : {int h, ...*cols}
|
|
|
|
|
"colgaps" <word> : {int h, ...*cols}
|
|
|
|
|
|
|
|
|
|
Fl_Grid can also produce parent properties in their children
|
|
|
|
|
|
|
|
|
|
"location" <word> : {int row, int col}
|
|
|
|
|
"colspan" <int>"
|
|
|
|
|
"rowspan" <int>
|
|
|
|
|
"align" <int> : see Fl_Grid_Align enum
|
|
|
|
|
"min_size" <word> : {int width, int height}
|
2022-11-08 20:30:44 +03:00
|
|
|
|
|
2022-11-16 16:41:37 +03:00
|
|
|
|
Please report errors and omissions to the fltk.coredev or fltk.general
|
2022-11-08 20:30:44 +03:00
|
|
|
|
Google group. Thank you.
|
|
|
|
|
|
|
|
|
|
- Matthias
|