summaryrefslogtreecommitdiff
path: root/fluid
diff options
context:
space:
mode:
authorAlbrecht Schlosser <albrechts.fltk@online.de>2025-02-05 12:34:39 +0100
committerAlbrecht Schlosser <albrechts.fltk@online.de>2025-02-05 12:34:39 +0100
commit904039c4c6cd2d67199709919fa1fc844b0f4af2 (patch)
tree149baa442aa8a166c64fd3025a0be65666beba21 /fluid
parent89d146eceee54ce2d4692751d3e7dcdb23817a28 (diff)
Fix typos and trailing whitespace
Also replace 'MSWindows' with 'Windows' where appropriate, leaving only old documents like README files from 1.3 and older as-is.
Diffstat (limited to 'fluid')
-rw-r--r--fluid/README_fl.txt38
-rw-r--r--fluid/code.cxx2
-rw-r--r--fluid/fluid.cxx4
3 files changed, 21 insertions, 23 deletions
diff --git a/fluid/README_fl.txt b/fluid/README_fl.txt
index c52b4d091..2e69d4cfa 100644
--- a/fluid/README_fl.txt
+++ b/fluid/README_fl.txt
@@ -33,7 +33,7 @@ Line Endings
------------
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
+Windows line endings as well. Except for the Header, the FLUID reader does not
differentiate between a line ending and a space character outside of a 'word'.
@@ -42,7 +42,7 @@ Unicode
FLUID does not handle UTF-8 characters in any special manner (unescaped),
but stores and reads them verbatim, making UTF-8 character sequences perfectly
-legal in .fl files. FLUID can translate UTF-8 into escape sequence when writing
+legal in .fl files. FLUID can translate UTF-8 into escape sequences when writing
source code files.
@@ -63,7 +63,7 @@ case-sensitive.
Simple Words that are composed of 'a'-'z', 'A'-'Z', '0'-'9', and '_' only are
written verbatim, followed by a space or newline.
-All other character sequences are bracketed between between ‘{‘ and ‘}’ without
+All other character sequences are bracketed between ‘{‘ and ‘}’ without
padding spaces. For example, an empty word with no characters is written
as '{}', and ".hello" is written as '{.hello}'.
@@ -117,7 +117,7 @@ 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
+where 'v' is the version number as in FL_VERSION (major*1.0 + minor * 0.01
+ patch * 0.0001). So for FLTK 1.3.4, 'v' would be 1.0304
Note: the version number corresponds not so much to the version of FLUID, but
@@ -137,8 +137,8 @@ Note: fdesign files (.fd) start with the text "Magic:". FLUID can read these
Options
-------
-Options are usually comprised of a Word, two Words, or a Word and a String. If
-an Option is missing, a default value is assumed.
+Options are usually comprised of a Word, two Words, or a Word and a String.
+If an Option is missing, a default value is assumed.
"Magic:" : used by fdesign, not written by FLUID
@@ -181,12 +181,11 @@ an Option is missing, a default value is assumed.
"i18n_conditional" <word> : string
- "header_name" <word> : can be the full filename, or just the
- extension e.g. “.h” in which case FLUID will use the same filename
- as the .fl file.
+ "header_name" <word> : can be the full filename or just the extension,
+ e.g. “.h” in which case FLUID will use the same filename as the .fl file.
- "code_name" <word> : can be the full filename, or just the
- extension e.g. “.cxx”
+ "code_name" <word> : can be the full filename or just the extension,
+ e.g. “.cxx”.
"snap" <word> : starting in V1.4 from May 2023, the 'snap' keyword can be
used to store the selected layout and preset and include more suites
@@ -212,20 +211,19 @@ an Option is missing, a default value is assumed.
"gridy" <word> : ignored
"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.
+ 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)
+ 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)
+ 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)
}
Note: There is no keyword that marks the end of the Options section. The
@@ -516,7 +514,7 @@ Type "Fl_Window" <word> : C++ variable name
min_w, min_h, max_w, max_h
"xywh" <word> : this Word is written with printf as "{%d %d %d %d}",
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.
+ it ensures that the window is not created as a subwindow.
... : inherits more from Fl_Widget (not Fl_Group)
Type "Fl_Grid" <word> : C++ variable name
diff --git a/fluid/code.cxx b/fluid/code.cxx
index f10777c3e..af8dba504 100644
--- a/fluid/code.cxx
+++ b/fluid/code.cxx
@@ -1023,7 +1023,7 @@ unsigned long Fd_Code_Writer::block_crc(const void *data, int n, unsigned long i
while (n>0 && *s>0 && isspace(*s)) { s++; n--; }
if (*s) line_start = false;
}
- // don't count '\r' that may be introduces by MSWindows
+ // don't count '\r' that may be introduced by Windows
if (n>0 && *s=='\r') { s++; n--; }
if (n>0 && *s=='\n') line_start = true;
if (n>0) {
diff --git a/fluid/fluid.cxx b/fluid/fluid.cxx
index 766721e65..b63ebe672 100644
--- a/fluid/fluid.cxx
+++ b/fluid/fluid.cxx
@@ -2192,9 +2192,9 @@ static void sigint(SIGARG) {
\param[in] argv pointer to an array of arguments
\return in batch mode, an error code will be returned via \c exit() . This
function return 1, if there was an error in the parameters list.
- \todo On MSWindows, Fluid can under certain conditions open a dialog box, even
+ \todo On Windows, Fluid can under certain conditions open a dialog box, even
in batch mode. Is that intentional? Does it circumvent issues with Windows'
- stderr and stdout?
+ stderr and stdout?
*/
int main(int argc,char **argv) {
int i = 1;