diff options
| author | Matthias Melcher <git@matthiasm.com> | 2022-01-08 21:55:19 +0100 |
|---|---|---|
| committer | Matthias Melcher <github@matthiasm.com> | 2022-01-08 22:12:41 +0100 |
| commit | 42a93eb8dec6e3c637442e23e156b3f72c7f8ca7 (patch) | |
| tree | d3edd493518ff7a78a2e733dadb98d07a1fec753 /fluid/alignment_panel.fl | |
| parent | 9a2b3ef798d0baf4228b69b941b7cdb25aca6ab6 (diff) | |
avoid early include of Fl.H option
Diffstat (limited to 'fluid/alignment_panel.fl')
| -rw-r--r-- | fluid/alignment_panel.fl | 19 |
1 files changed, 12 insertions, 7 deletions
diff --git a/fluid/alignment_panel.fl b/fluid/alignment_panel.fl index ca8fb6cbb..8a4595e63 100644 --- a/fluid/alignment_panel.fl +++ b/fluid/alignment_panel.fl @@ -35,7 +35,7 @@ decl {\#include <FL/Fl_Text_Buffer.H>} {public local decl {\#include <FL/Fl_Text_Display.H>} {public local } -decl {\#include <FL/filename.H>} {public local +decl {\#include <FL/filename.H>} {selected public local } decl {\#include <FL/Fl_Preferences.H>} {private global @@ -54,7 +54,7 @@ Function {make_project_window()} {open } { Fl_Window project_window { label {Project Settings} open - xywh {472 246 399 275} type Double + xywh {472 246 399 298} type Double code0 {\#include <FL/Fl_Preferences.H>} code1 {\#include <FL/Fl_Tooltip.H>} modal visible } { @@ -62,14 +62,14 @@ Function {make_project_window()} {open label Close callback {project_window->hide(); set_modflag(-1, -1);} - tooltip {Close this dialog.} xywh {328 239 60 25} + tooltip {Close this dialog.} xywh {328 267 60 25} } Fl_Tabs {} {open - xywh {10 10 379 218} selection_color 12 labelcolor 7 + xywh {10 10 379 246} selection_color 12 labelcolor 7 } { Fl_Group {} { - label Output open selected - xywh {10 36 379 192} + label Output open + xywh {10 36 379 220} } { Fl_Box {} { label {Use "name.ext" to set a file name or just ".ext" to set extension.} @@ -102,10 +102,15 @@ set_modflag(-1, -1);} callback utf8_in_src_cb tooltip {For older compilers, characters outside of the printable ASCII range are escaped using octal notation `\\0123`. If this option is checked, Fluid will write UTF-8 characters unchanged.} xywh {117 199 272 20} down_box DOWN_BOX } + Fl_Check_Button avoid_early_includes_button { + label {avoid early include of Fl.H} + callback avoid_early_includes_cb + tooltip {Do not emit \#include <FL//Fl.H> until it is needed by another include file.} xywh {117 222 272 20} down_box DOWN_BOX + } } Fl_Group {} { label Internationalization open - xywh {10 36 378 192} hide + xywh {10 36 378 220} hide } { Fl_Choice i18n_type_chooser { label {Use:} |
