summaryrefslogtreecommitdiff
path: root/fluid/alignment_panel.fl
diff options
context:
space:
mode:
authorMatthias Melcher <fltk@matthiasm.com>2002-11-03 00:01:21 +0000
committerMatthias Melcher <fltk@matthiasm.com>2002-11-03 00:01:21 +0000
commitc3de2a22c058b26700cce7ebeb26ca20072dc50f (patch)
treebcbd8e2be5c70d29fbd1d65028a3abac64c77310 /fluid/alignment_panel.fl
parentf3078e51e015215432c375ccd24a2d3c93342c52 (diff)
Replaced 'callback' and 'code' input in FLUID with Fl_Text_Editor.
Made widget pannel resize only text fields (which I see as the logical way to do it. Opinions welcome). Matthias git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@2822 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'fluid/alignment_panel.fl')
-rw-r--r--fluid/alignment_panel.fl22
1 files changed, 7 insertions, 15 deletions
diff --git a/fluid/alignment_panel.fl b/fluid/alignment_panel.fl
index 6c267433d..ed54272c0 100644
--- a/fluid/alignment_panel.fl
+++ b/fluid/alignment_panel.fl
@@ -101,19 +101,19 @@ Function {make_settings_window()} {open
} {
Fl_Window settings_window {
label {GUI Settings} open
- xywh {462 92 255 253} visible
+ xywh {340 243 255 213} visible
} {
Fl_Button {} {
label Close
- callback {settings_window->hide();}
- tooltip {Close this dialog.} xywh {185 215 60 25}
+ callback {settings_window->hide();} selected
+ tooltip {Close this dialog.} xywh {185 179 60 25}
}
Fl_Tabs {} {
- xywh {10 10 235 190}
+ xywh {10 10 235 158}
} {
Fl_Group {} {
label {GUI:}
- xywh {10 35 235 165} align 5
+ xywh {10 35 235 133} align 5
} {
Fl_Check_Button tooltips_button {
label {Show Tooltips}
@@ -141,18 +141,10 @@ fluid_prefs.set("show_tooltips", tooltips_button->value());}
code1 {fluid_prefs.get("open_previous_file", b, 0);}
code2 {openlast_button->value(b);}
}
- Fl_Check_Button openbin_button {
- label {Open Widget Bin on Startup}
- callback {fluid_prefs.set("open_widget_bin", openbin_button->value());}
- xywh {20 135 215 20} down_box DOWN_BOX
- code0 {int b;}
- code1 {fluid_prefs.get("open_widget_bin", b, 1);}
- code2 {openbin_button->value(b);}
- }
Fl_Check_Button prevpos_button {
label {Remember Window Positions}
- callback {fluid_prefs.set("prev_window_pos", prevpos_button->value());} selected
- xywh {20 165 215 20} down_box DOWN_BOX
+ callback {fluid_prefs.set("prev_window_pos", prevpos_button->value());}
+ xywh {20 135 215 20} down_box DOWN_BOX
code0 {int b;}
code1 {fluid_prefs.get("prev_window_pos", b, 1);}
code2 {prevpos_button->value(b);}