summaryrefslogtreecommitdiff
path: root/fluid/alignment_panel.fl
diff options
context:
space:
mode:
authorMatthias Melcher <fltk@matthiasm.com>2002-10-31 18:49:05 +0000
committerMatthias Melcher <fltk@matthiasm.com>2002-10-31 18:49:05 +0000
commitf4a60090ba4f4256eeb03d5378d301fd3df40e5c (patch)
treedf62156629861157da8d612f72bf93a6570de8ee /fluid/alignment_panel.fl
parent270c364bb35f116443ba78f5cff1f51efc3beebc (diff)
Added WidgetBin/ToolBox to fluid. Made fluid remember window
positions (only main and toolbox yet). Toolbox can be switched off. Position remeber function can be switched off. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@2767 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'fluid/alignment_panel.fl')
-rw-r--r--fluid/alignment_panel.fl28
1 files changed, 22 insertions, 6 deletions
diff --git a/fluid/alignment_panel.fl b/fluid/alignment_panel.fl
index ed348e72c..6c267433d 100644
--- a/fluid/alignment_panel.fl
+++ b/fluid/alignment_panel.fl
@@ -1,5 +1,5 @@
# data file for the Fltk User Interface Designer (fluid)
-version 1.0100
+version 1.0102
header_name {.h}
code_name {.cxx}
Function {make_project_window()} {open
@@ -101,19 +101,19 @@ Function {make_settings_window()} {open
} {
Fl_Window settings_window {
label {GUI Settings} open
- xywh {397 774 255 175} visible
+ xywh {462 92 255 253} visible
} {
Fl_Button {} {
label Close
callback {settings_window->hide();}
- tooltip {Close this dialog.} xywh {185 145 60 25}
+ tooltip {Close this dialog.} xywh {185 215 60 25}
}
Fl_Tabs {} {
- xywh {10 10 235 125}
+ xywh {10 10 235 190}
} {
Fl_Group {} {
label {GUI:}
- xywh {10 35 235 100} align 5
+ xywh {10 35 235 165} align 5
} {
Fl_Check_Button tooltips_button {
label {Show Tooltips}
@@ -135,12 +135,28 @@ fluid_prefs.set("show_tooltips", tooltips_button->value());}
}
Fl_Check_Button openlast_button {
label {Open Previous File on Startup}
- callback {fluid_prefs.set("open_previous_file", openlast_button->value());} selected
+ callback {fluid_prefs.set("open_previous_file", openlast_button->value());}
xywh {20 105 215 20} down_box DOWN_BOX
code0 {int b;}
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
+ code0 {int b;}
+ code1 {fluid_prefs.get("prev_window_pos", b, 1);}
+ code2 {prevpos_button->value(b);}
+ }
}
}
}