diff options
| author | Matthias Melcher <git@matthiasm.com> | 2021-12-08 15:52:15 +0100 |
|---|---|---|
| committer | Matthias Melcher <git@matthiasm.com> | 2021-12-08 15:52:15 +0100 |
| commit | 16dae3ea063ae134b8b87ca199575e904dfbb7d4 (patch) | |
| tree | ff0ce9e635bb39f49bfcce2c5e7fe099334a0d15 /fluid/about_panel.fl | |
| parent | 2d18c6f650c0001319c8883f8deb819d12984ac0 (diff) | |
Fluid: restructuring and commenting.
tl;dr : making Fluid maintainable, no changes in code execution and logic.
This is a pretty extensive restructuring of the Fluid source tree.
It was neccessary because source and header files were getting
much too big to handle. Many source files had no header, and many
headers declared functions that were in diffrent source files.
Reorganized much of the include statements.
Added comments to some of the files.
Added Doxygen configuration file for standalone Fluid docs.
Tested everything by rebuilding Fluid .fl designs with the resorted
version of Fluid.
Diffstat (limited to 'fluid/about_panel.fl')
| -rw-r--r-- | fluid/about_panel.fl | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/fluid/about_panel.fl b/fluid/about_panel.fl index a0a302349..74cedb06f 100644 --- a/fluid/about_panel.fl +++ b/fluid/about_panel.fl @@ -5,7 +5,7 @@ code_name {.cxx} comment {// // About dialog for the Fast Light Tool Kit (FLTK). // -// Copyright 1998-2020 by Bill Spitzak and others. +// Copyright 1998-2021 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 @@ -36,8 +36,8 @@ Function {make_about_panel()} {open }} {} Fl_Window about_panel { label {About FLUID} open - xywh {340 190 345 180} type Double color 50 selection_color 47 hide hotspot - code0 {\#include "../src/flstring.h"} non_modal + xywh {449 217 345 180} type Double color 50 selection_color 47 hotspot + code0 {\#include "../src/flstring.h"} non_modal visible } { Fl_Box {} { image {icons/fluid-96.xpm} xywh {10 10 115 120} @@ -53,7 +53,7 @@ Version x.x.x} } Fl_Box {} { label {(Copyright)} - comment {Label edited dynamically:} selected + comment {Label edited dynamically:} xywh {135 90 200 45} align 148 code0 {o->label(cbuf);} } @@ -71,5 +71,5 @@ Version x.x.x} } data fluid_org_png { - comment {Embedded image for internal fluid.html web page.} public local filename {../documentation/src/fluid-org.png} + comment {Embedded image for internal fluid.html web page.} selected public local filename {../documentation/src/fluid-org.png} } |
