summaryrefslogtreecommitdiff
path: root/fluid/alignment_panel.fl
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>2001-09-29 22:59:45 +0000
committerMichael R Sweet <michael.r.sweet@gmail.com>2001-09-29 22:59:45 +0000
commit72b56edc2940e0279a551fa9182d5ffb16cc1953 (patch)
tree224ee91888baf40fb040e8854d7105885f94ab27 /fluid/alignment_panel.fl
parente7f3ad8691e0d2ef1b9c589d0fe702774182541d (diff)
Tooltips, and more tooltips.
Fl_Browser_, Fl_Choice, and Fl_Input_ did not do the tooltip stuff. Fix write_properties so it writes tooltips properly from FLUID. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@1616 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'fluid/alignment_panel.fl')
-rw-r--r--fluid/alignment_panel.fl34
1 files changed, 17 insertions, 17 deletions
diff --git a/fluid/alignment_panel.fl b/fluid/alignment_panel.fl
index 978589d03..5e8e1a251 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.0008
+version 1.0100
header_name {.h}
code_name {.cxx}
gridx 5
@@ -9,37 +9,37 @@ Function {make_alignment_window()} {open
} {
Fl_Window alignment_window {
label Preferences open
- xywh {473 284 365 340} hide modal
+ xywh {469 112 365 340} modal visible
} {
Fl_Box {} {
- label {Alignment:}
+ label {Grid:}
xywh {10 25 130 130} box ENGRAVED_FRAME labelsize 12 align 5
}
Fl_Input horizontal_input {
label {Horizontal:}
user_data 1 user_data_type long
callback alignment_cb
- xywh {90 35 40 20} type Int box THIN_DOWN_BOX
+ tooltip {Horizontal grid spacing.} xywh {90 35 40 20} type Int box THIN_DOWN_BOX
code0 {o->when(FL_WHEN_RELEASE|FL_WHEN_ENTER_KEY);}
}
Fl_Input vertical_input {
label {Vertical:}
user_data 2 user_data_type long
callback alignment_cb
- xywh {90 65 40 20} type Int box THIN_DOWN_BOX
+ tooltip {Vertical grid spacing.} xywh {90 65 40 20} type Int box THIN_DOWN_BOX
code0 {o->when(FL_WHEN_RELEASE|FL_WHEN_ENTER_KEY);}
}
Fl_Input snap_input {
label {Snap:}
user_data 3 user_data_type long
callback alignment_cb
- xywh {90 95 40 20} type Int box THIN_DOWN_BOX
+ tooltip {Snap to grid within this many pixels.} xywh {90 95 40 20} type Int box THIN_DOWN_BOX
code0 {o->when(FL_WHEN_RELEASE|FL_WHEN_ENTER_KEY);}
}
Fl_Button {} {
label Close
- callback {alignment_window->hide();}
- xywh {295 305 60 25}
+ callback {alignment_window->hide();} selected
+ tooltip {Close this dialog.} xywh {295 305 60 25}
}
Fl_Box {} {
label {Output File Names:}
@@ -53,18 +53,18 @@ Function {make_alignment_window()} {open
label {Header File:}
user_data 1 user_data_type {void*}
callback header_input_cb
- xywh {100 205 245 20} box THIN_DOWN_BOX when 1 textfont 4
+ tooltip {The name of the generated header file.} xywh {100 205 245 20} box THIN_DOWN_BOX when 1 textfont 4
}
Fl_Input code_file_input {
label {Code File:}
user_data 1 user_data_type {void*}
callback code_input_cb
- xywh {100 235 245 20} box THIN_DOWN_BOX when 1 textfont 4
+ tooltip {The name of the generated code file.} xywh {100 235 245 20} box THIN_DOWN_BOX when 1 textfont 4
}
Fl_Light_Button include_H_from_C_button {
label {Include Header from Code}
callback include_H_from_C_button_cb
- xywh {100 265 170 20} value 1 labelsize 12
+ tooltip {Include the header file from the code file.} xywh {100 265 170 20} value 1 labelsize 12
}
Fl_Box {} {
label {Internationalization:}
@@ -73,7 +73,7 @@ Function {make_alignment_window()} {open
Fl_Choice i18n_type_chooser {
label {Use:}
callback i18n_type_cb open
- xywh {220 35 125 20} box THIN_UP_BOX
+ tooltip {Type of internationalization to use.} xywh {220 35 125 20} box THIN_UP_BOX down_box BORDER_BOX
} {
menuitem {} {
label None
@@ -90,23 +90,23 @@ Function {make_alignment_window()} {open
}
Fl_Input i18n_include_input {
label {\#include:}
- callback i18n_text_cb selected
- xywh {220 65 125 20} box THIN_DOWN_BOX textfont 4 hide
+ callback i18n_text_cb
+ tooltip {The include file for internationalization.} xywh {220 65 125 20} box THIN_DOWN_BOX textfont 4 hide
}
Fl_Input i18n_file_input {
label {File:}
callback i18n_text_cb
- xywh {220 95 125 20} box THIN_DOWN_BOX textfont 4 hide
+ tooltip {The name of the message catalog.} xywh {220 95 125 20} box THIN_DOWN_BOX textfont 4 hide
}
Fl_Input i18n_set_input {
label {Set:}
callback i18n_text_cb
- xywh {220 125 125 20} type Int box THIN_DOWN_BOX textfont 4 hide
+ tooltip {The message set number.} xywh {220 125 125 20} type Int box THIN_DOWN_BOX textfont 4 hide
}
Fl_Input i18n_function_input {
label {Function:}
callback i18n_text_cb
- xywh {220 95 125 20} box THIN_DOWN_BOX textfont 4 hide
+ tooltip {The function to call to internationalize the labels and tooltips.} xywh {220 95 125 20} box THIN_DOWN_BOX textfont 4 hide
}
}
}