author | Claus Gittinger <cg@exept.de> |
Wed, 24 Mar 1999 16:26:34 +0100 | |
changeset 1083 | 46a1cb1c595d |
parent 1073 | 3436bfc555e0 |
child 1105 | a19cdc769750 |
permissions | -rw-r--r-- |
332 | 1 |
" |
825 | 2 |
COPYRIGHT (c) 1997 by eXept Software AG |
332 | 3 |
All Rights Reserved |
4 |
||
5 |
This software is furnished under a license and may be used |
|
6 |
only in accordance with the terms of that license and with the |
|
7 |
inclusion of the above copyright notice. This software may not |
|
8 |
be provided or otherwise made available to, or used by, any |
|
9 |
other person. No title to or ownership of the software is |
|
10 |
hereby transferred. |
|
11 |
" |
|
12 |
||
13 |
||
14 |
||
15 |
||
16 |
||
818 | 17 |
ResourceSpecEditor subclass:#DataSetBuilder |
825 | 18 |
instanceVariableNames:'rowClass rowSuperClass columnView columns selectedColumnIndex |
19 |
modalOpened' |
|
816 | 20 |
classVariableNames:'' |
332 | 21 |
poolDictionaries:'' |
22 |
category:'Interface-UIPainter' |
|
23 |
! |
|
24 |
||
1033
21b3bc025e0c
removed the (stupid) fontSettings menu support.
Claus Gittinger <cg@exept.de>
parents:
1019
diff
changeset
|
25 |
Array variableSubclass:#Row |
1004 | 26 |
instanceVariableNames:'' |
27 |
classVariableNames:'' |
|
28 |
poolDictionaries:'' |
|
29 |
privateIn:DataSetBuilder |
|
30 |
! |
|
31 |
||
332 | 32 |
!DataSetBuilder class methodsFor:'documentation'! |
33 |
||
34 |
copyright |
|
35 |
" |
|
825 | 36 |
COPYRIGHT (c) 1997 by eXept Software AG |
332 | 37 |
All Rights Reserved |
38 |
||
39 |
This software is furnished under a license and may be used |
|
40 |
only in accordance with the terms of that license and with the |
|
41 |
inclusion of the above copyright notice. This software may not |
|
42 |
be provided or otherwise made available to, or used by, any |
|
43 |
other person. No title to or ownership of the software is |
|
44 |
hereby transferred. |
|
45 |
" |
|
46 |
||
47 |
||
48 |
||
49 |
||
50 |
! |
|
51 |
||
52 |
documentation |
|
53 |
" |
|
54 |
create and modify or inspect dataset columns; used by UIPainter (DataSetColumnSpec) |
|
55 |
||
56 |
[see also:] |
|
57 |
DataSetColumnSpec |
|
58 |
DataSetSpec |
|
59 |
DataSetView |
|
60 |
DataSetColumn |
|
61 |
||
62 |
[author:] |
|
545 | 63 |
Claus Atzkern, eXept Software AG |
332 | 64 |
" |
65 |
||
66 |
! ! |
|
67 |
||
825 | 68 |
!DataSetBuilder class methodsFor:'accessing'! |
799
22734b99f830
added dummy openOnClass:andSelector: (invoked by Browser)
Claus Gittinger <cg@exept.de>
parents:
687
diff
changeset
|
69 |
|
818 | 70 |
resourceType |
71 |
"get the type of resource of the method generated by the MenuEditor" |
|
72 |
||
825 | 73 |
^#tableColumns |
74 |
||
75 |
||
76 |
! ! |
|
77 |
||
78 |
!DataSetBuilder class methodsFor:'aspects'! |
|
79 |
||
80 |
aspects |
|
81 |
"get the aspects for the attributes of the table columns" |
|
82 |
||
83 |
^#( |
|
829
dac49512301a
language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents:
826
diff
changeset
|
84 |
id |
825 | 85 |
label |
86 |
canSelect |
|
87 |
choices |
|
88 |
editorType |
|
89 |
formatString |
|
90 |
labelIsImage |
|
829
dac49512301a
language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents:
826
diff
changeset
|
91 |
translateLabel |
825 | 92 |
size |
93 |
type |
|
94 |
width |
|
95 |
minWidth |
|
96 |
height |
|
97 |
menu |
|
98 |
foregroundSelector |
|
99 |
backgroundSelector |
|
100 |
doubleClickedSelector |
|
983 | 101 |
rowSeparatorSelector |
825 | 102 |
selectSelector |
1009 | 103 |
showComboFieldSelector |
825 | 104 |
printSelector |
105 |
readSelector |
|
106 |
writeSelector |
|
107 |
rendererType |
|
108 |
showColSeparator |
|
983 | 109 |
showSelectionHighLighted |
825 | 110 |
showRowSeparator |
111 |
backgroundColor |
|
112 |
foregroundColor |
|
113 |
labelForegroundColor |
|
114 |
labelBackgroundColor |
|
115 |
labelFont |
|
116 |
labelActionSelector |
|
117 |
labelActionArgument |
|
118 |
labelAlignment |
|
119 |
columnAlignment |
|
120 |
) |
|
121 |
||
829
dac49512301a
language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents:
826
diff
changeset
|
122 |
"Modified: / 19.5.1998 / 21:27:06 / cg" |
799
22734b99f830
added dummy openOnClass:andSelector: (invoked by Browser)
Claus Gittinger <cg@exept.de>
parents:
687
diff
changeset
|
123 |
! ! |
22734b99f830
added dummy openOnClass:andSelector: (invoked by Browser)
Claus Gittinger <cg@exept.de>
parents:
687
diff
changeset
|
124 |
|
528 | 125 |
!DataSetBuilder class methodsFor:'help specs'! |
126 |
||
127 |
helpSpec |
|
818 | 128 |
"This resource specification was automatically generated |
129 |
by the UIHelpTool of ST/X." |
|
130 |
||
131 |
"Do not manually edit this!! If it is corrupted, |
|
132 |
the UIHelpTool may not be able to read the specification." |
|
528 | 133 |
|
134 |
" |
|
818 | 135 |
UIHelpTool openOnClass:DataSetBuilder |
528 | 136 |
" |
137 |
||
818 | 138 |
<resource: #help> |
139 |
||
983 | 140 |
^ super helpSpec addPairsFrom:#( |
528 | 141 |
|
550 | 142 |
#addColumn |
143 |
'Adds a new column.' |
|
144 |
||
597 | 145 |
#basicsEditor |
829
dac49512301a
language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents:
826
diff
changeset
|
146 |
'Default widget type or a selector returning an instance of a user defined widget opened in the cell.' |
528 | 147 |
|
597 | 148 |
#basicsFont |
1004 | 149 |
'Sets the font of the labeled text.' |
528 | 150 |
|
597 | 151 |
#basicsJustification |
1004 | 152 |
'Aligns the label to the left, right, or center in the cell.' |
528 | 153 |
|
1064 | 154 |
#basicsJustificationEditor |
155 |
'Aligns the column editor to the left, right, or center in the cell.' |
|
156 |
||
597 | 157 |
#basicsLabel |
1004 | 158 |
'The label of the column (String or StringCollection) or a selector returning the label.' |
159 |
||
160 |
#basicsLabelId |
|
161 |
'Unique identifier of the column (optional).' |
|
597 | 162 |
|
163 |
#basicsLabelIsImage |
|
1064 | 164 |
'Label is actually the selector of a message providing an image-label.' |
1004 | 165 |
|
166 |
#basicsLabelTranslate |
|
167 |
'Translate the label via the resource mechanism to a national language string.' |
|
528 | 168 |
|
597 | 169 |
#basicsRenderer |
170 |
'Specifies displaying cell as Text, CheckToggle, ComboBox, ComboList or as a RowSelector.' |
|
528 | 171 |
|
829
dac49512301a
language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents:
826
diff
changeset
|
172 |
#browseRowClass |
dac49512301a
language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents:
826
diff
changeset
|
173 |
'Open a browser on the row class' |
dac49512301a
language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents:
826
diff
changeset
|
174 |
|
597 | 175 |
#colorsBackgroundCellColor |
176 |
'Sets the background color of the column.' |
|
177 |
||
178 |
#colorsBackgroundLabelColor |
|
179 |
'Sets the background color of the label.' |
|
528 | 180 |
|
597 | 181 |
#colorsBackgroundSelector |
182 |
'Selector returning the background color for a cell (optional).' |
|
528 | 183 |
|
597 | 184 |
#colorsForegroundCellColor |
185 |
'Sets the foreground color of the column.' |
|
186 |
||
187 |
#colorsForegroundLabelColor |
|
188 |
'Sets the foreground color of the label.' |
|
528 | 189 |
|
597 | 190 |
#colorsForegroundSelector |
191 |
'Selector returning the foreground color for a cell (optional).' |
|
528 | 192 |
|
829
dac49512301a
language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents:
826
diff
changeset
|
193 |
#fileNew |
dac49512301a
language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents:
826
diff
changeset
|
194 |
'Discard changes and continue with a new, empty column description' |
dac49512301a
language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents:
826
diff
changeset
|
195 |
|
dac49512301a
language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents:
826
diff
changeset
|
196 |
#fileLoad |
dac49512301a
language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents:
826
diff
changeset
|
197 |
'Specify class/selector and edit that column description' |
dac49512301a
language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents:
826
diff
changeset
|
198 |
|
dac49512301a
language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents:
826
diff
changeset
|
199 |
#fileSave |
dac49512301a
language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents:
826
diff
changeset
|
200 |
'Install the column description' |
dac49512301a
language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents:
826
diff
changeset
|
201 |
|
dac49512301a
language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents:
826
diff
changeset
|
202 |
#fileSaveAs |
dac49512301a
language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents:
826
diff
changeset
|
203 |
'Specify class/selector and install the column description' |
dac49512301a
language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents:
826
diff
changeset
|
204 |
|
597 | 205 |
#formatInputType |
206 |
'A type converter symbol used by the input field.' |
|
528 | 207 |
|
597 | 208 |
#formatMaxSize |
209 |
'Maximum size of the string which can be typed in. 0 or nil means unlimited.' |
|
528 | 210 |
|
597 | 211 |
#formatTextFormat |
212 |
'Format string specifying the output format of the cell text. In this release, only numbers are supported (for example: 0.0000).' |
|
213 |
||
214 |
#frameColumnWidth |
|
215 |
'Width (fixed) of a column (optional).' |
|
528 | 216 |
|
597 | 217 |
#frameMinWidth |
218 |
'Minimum width of the column (optional).' |
|
528 | 219 |
|
597 | 220 |
#frameRowHeight |
221 |
'Height of the row (optional).' |
|
222 |
||
223 |
#frameShowColumnSeparator |
|
224 |
'Turns on/off displaying column separators.' |
|
528 | 225 |
|
597 | 226 |
#frameShowRowSeparator |
227 |
'Turns on/off displaying row separators.' |
|
528 | 228 |
|
983 | 229 |
#frameShowRowSeparatorSelector |
230 |
'An optional selector, which is used to test whether the row separator at the bottom is shown.' |
|
231 |
||
829
dac49512301a
language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents:
826
diff
changeset
|
232 |
#generate |
dac49512301a
language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents:
826
diff
changeset
|
233 |
'Code generation.' |
dac49512301a
language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents:
826
diff
changeset
|
234 |
|
dac49512301a
language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents:
826
diff
changeset
|
235 |
#generateCode |
dac49512301a
language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents:
826
diff
changeset
|
236 |
'Generate code and install in the selected class/selector.' |
dac49512301a
language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents:
826
diff
changeset
|
237 |
|
dac49512301a
language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents:
826
diff
changeset
|
238 |
#pickColumns |
dac49512301a
language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents:
826
diff
changeset
|
239 |
'Select an open view and readOut the column specification from it.' |
dac49512301a
language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents:
826
diff
changeset
|
240 |
|
597 | 241 |
#selectionCellClickSelector |
818 | 242 |
'A selector called if cell was selected.' |
528 | 243 |
|
597 | 244 |
#selectionCellDoubleClickSelector |
245 |
'A selector called if cell was double clicked.' |
|
528 | 246 |
|
597 | 247 |
#selectionCellSelector |
1004 | 248 |
'Name of the message sent to the row to validate a selection.' |
528 | 249 |
|
597 | 250 |
#selectionIsSelectable |
251 |
'Turns on/off selection behavior of a column.' |
|
252 |
||
253 |
#selectionLabelClickSelector |
|
1004 | 254 |
'A selector called if a cell was clicked.' |
528 | 255 |
|
597 | 256 |
#selectionLabelSelectorArgument |
1064 | 257 |
'An optional argument passed with the message above.' |
528 | 258 |
|
1009 | 259 |
#showComboFieldSelector |
260 |
'Selector which returns true if the editor on the ComboBox/List has an input field.' |
|
261 |
||
983 | 262 |
#showSelectionHighLighted |
263 |
'Show selected cell highligthened (change fg/bg color).' |
|
264 |
||
597 | 265 |
#valuesChoiceSelector |
1004 | 266 |
'Selector to get a collection of choices for a cell having a ComboBox or a ComboList widget.' |
528 | 267 |
|
597 | 268 |
#valuesMenuSelector |
1004 | 269 |
'Selector to retrive the middle button menu.' |
597 | 270 |
|
271 |
#valuesPrintSelector |
|
1004 | 272 |
'Selector used to register images on a DSVColumnView (the arg). For more detailed info see #register... methods in DSVColumnView.' |
528 | 273 |
|
597 | 274 |
#valuesReadSelector |
1004 | 275 |
'Selector returning the label to be displayed(string, bitmap or a collection).' |
528 | 276 |
|
597 | 277 |
#valuesWriteSelector |
1004 | 278 |
'Selector used to set the value derived from the editor.' |
528 | 279 |
|
280 |
) |
|
829
dac49512301a
language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents:
826
diff
changeset
|
281 |
|
dac49512301a
language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents:
826
diff
changeset
|
282 |
"Modified: / 19.5.1998 / 23:20:51 / cg" |
528 | 283 |
! ! |
284 |
||
881 | 285 |
!DataSetBuilder class methodsFor:'image specs'! |
286 |
||
287 |
newColumnIcon |
|
288 |
"This resource specification was automatically generated |
|
289 |
by the ImageEditor of ST/X." |
|
290 |
||
291 |
"Do not manually edit this!! If it is corrupted, |
|
292 |
the ImageEditor may not be able to read the specification." |
|
293 |
||
294 |
" |
|
295 |
self newColumnIcon inspect |
|
296 |
ImageEditor openOnClass:self andSelector:#newColumnIcon |
|
297 |
" |
|
298 |
||
299 |
<resource: #image> |
|
300 |
||
301 |
^Icon |
|
302 |
constantNamed:#'DataSetBuilder newColumnIcon' |
|
303 |
ifAbsentPut:[(Depth2Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'UT@@@@UPUTUUUXUPUTZ**,UPUTZB",UPUTX*H,UYUTX*H,UPUTZB",UPQTZ**,UPUTX*H,UPUTX*H,UPUTX*H,UPUTXB@,UPUTZ**,UPUTZ**,UPUTX"H,UYUTXB@,UPUTX"@,UPUTX"H,UPUTZ**,UPUTZ**,UPUT/??<UPUT@@@@UP') ; colorMapFromArray:#[0 0 0 255 255 255 170 170 170 127 127 127]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'A??@A??@A??@A??@A??@A??@A??@A??@A??CA??@A??@A??@A??@A??CA??AA??@A??CA??@A??CA??@A??@A??A') ; yourself); yourself]! ! |
|
304 |
||
528 | 305 |
!DataSetBuilder class methodsFor:'interface specs'! |
332 | 306 |
|
307 |
basicsEditSpec |
|
817 | 308 |
"This resource specification was automatically generated |
309 |
by the UIPainter of ST/X." |
|
332 | 310 |
|
817 | 311 |
"Do not manually edit this!! If it is corrupted, |
312 |
the UIPainter may not be able to read the specification." |
|
332 | 313 |
|
314 |
" |
|
315 |
UIPainter new openOnClass:DataSetBuilder andSelector:#basicsEditSpec |
|
316 |
DataSetBuilder new openInterface:#basicsEditSpec |
|
317 |
" |
|
318 |
||
319 |
<resource: #canvas> |
|
320 |
||
321 |
^ |
|
322 |
||
323 |
#(#FullSpec |
|
1073 | 324 |
#name: #basicsEditSpec |
687 | 325 |
#window: |
332 | 326 |
#(#WindowSpec |
687 | 327 |
#name: 'DataSet Basic' |
1073 | 328 |
#layout: #(#LayoutFrame 18 0 158 0 340 0 484 0) |
1036
26ebad245428
fix name entry (did not enable ok-button)
Claus Gittinger <cg@exept.de>
parents:
1033
diff
changeset
|
329 |
#level: 0 |
687 | 330 |
#label: 'DataSet Basic' |
331 |
#min: #(#Point 10 10) |
|
332 |
#max: #(#Point 1280 1024) |
|
1073 | 333 |
#bounds: #(#Rectangle 18 158 341 485) |
687 | 334 |
#usePreferredExtent: false |
1073 | 335 |
#returnIsOKInDialog: true |
336 |
#escapeIsCancelInDialog: true |
|
332 | 337 |
) |
687 | 338 |
#component: |
332 | 339 |
#(#SpecCollection |
687 | 340 |
#collection: |
332 | 341 |
#( |
408 | 342 |
#(#FramedBoxSpec |
687 | 343 |
#name: 'framedBox1' |
949
2e3469100a6a
fixed layout (change with framedBox - sigh)
Claus Gittinger <cg@exept.de>
parents:
894
diff
changeset
|
344 |
#layout: #(#LayoutFrame 0 0.0 3 0 0 1.0 173 0) |
687 | 345 |
#component: |
408 | 346 |
#(#SpecCollection |
687 | 347 |
#collection: |
408 | 348 |
#( |
349 |
#(#LabelSpec |
|
687 | 350 |
#name: 'label1' |
949
2e3469100a6a
fixed layout (change with framedBox - sigh)
Claus Gittinger <cg@exept.de>
parents:
894
diff
changeset
|
351 |
#layout: #(#AlignmentOrigin 94 0 39 0 1 0.5) |
687 | 352 |
#label: 'Label:' |
353 |
#resizeForLabel: true |
|
408 | 354 |
) |
355 |
#(#InputFieldSpec |
|
687 | 356 |
#name: 'labelField' |
949
2e3469100a6a
fixed layout (change with framedBox - sigh)
Claus Gittinger <cg@exept.de>
parents:
894
diff
changeset
|
357 |
#layout: #(#LayoutFrame 97 0 28 0 2 1.0 50 0) |
687 | 358 |
#activeHelpKey: #basicsLabel |
359 |
#tabable: true |
|
360 |
#model: #label |
|
1004 | 361 |
#type: #smalltalkObject |
1073 | 362 |
#immediateAccept: false |
1004 | 363 |
#acceptOnLeave: true |
1036
26ebad245428
fix name entry (did not enable ok-button)
Claus Gittinger <cg@exept.de>
parents:
1033
diff
changeset
|
364 |
#acceptOnLostFocus: true |
1073 | 365 |
#acceptChannel: #acceptChannel |
1064 | 366 |
#modifiedChannel: #modifiedChannel |
408 | 367 |
) |
817 | 368 |
#(#LabelSpec |
369 |
#name: 'LabelFont' |
|
949
2e3469100a6a
fixed layout (change with framedBox - sigh)
Claus Gittinger <cg@exept.de>
parents:
894
diff
changeset
|
370 |
#layout: #(#AlignmentOrigin 94 0 68 0 1 0.5) |
894 | 371 |
#label: 'Font:' |
1036
26ebad245428
fix name entry (did not enable ok-button)
Claus Gittinger <cg@exept.de>
parents:
1033
diff
changeset
|
372 |
#resizeForLabel: true |
817 | 373 |
#adjust: #left |
374 |
) |
|
375 |
#(#FontMenuSpec |
|
376 |
#name: 'fontMenu' |
|
949
2e3469100a6a
fixed layout (change with framedBox - sigh)
Claus Gittinger <cg@exept.de>
parents:
894
diff
changeset
|
377 |
#layout: #(#LayoutFrame 97 0 56 0 0 1.0 78 0) |
817 | 378 |
#activeHelpKey: #labelFont |
379 |
#model: #style |
|
439 | 380 |
) |
442 | 381 |
#(#PopUpListSpec |
687 | 382 |
#name: 'Alignment' |
949
2e3469100a6a
fixed layout (change with framedBox - sigh)
Claus Gittinger <cg@exept.de>
parents:
894
diff
changeset
|
383 |
#layout: #(#LayoutFrame 142 0 85 0 2 1.0 107 0) |
687 | 384 |
#activeHelpKey: #basicsJustification |
385 |
#label: 'Alignment' |
|
386 |
#model: #labelAlignment |
|
387 |
#menu: |
|
442 | 388 |
#(#left |
389 |
#right #center |
|
390 |
) |
|
687 | 391 |
#useIndex: false |
442 | 392 |
) |
393 |
#(#LabelSpec |
|
687 | 394 |
#name: 'JustificationLabel' |
949
2e3469100a6a
fixed layout (change with framedBox - sigh)
Claus Gittinger <cg@exept.de>
parents:
894
diff
changeset
|
395 |
#layout: #(#AlignmentOrigin 140 0 96 0 1 0.5) |
687 | 396 |
#label: 'Justification:' |
1036
26ebad245428
fix name entry (did not enable ok-button)
Claus Gittinger <cg@exept.de>
parents:
1033
diff
changeset
|
397 |
#resizeForLabel: true |
687 | 398 |
#adjust: #left |
442 | 399 |
) |
829
dac49512301a
language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents:
826
diff
changeset
|
400 |
#(#CheckBoxSpec |
dac49512301a
language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents:
826
diff
changeset
|
401 |
#name: 'labelIsImage' |
949
2e3469100a6a
fixed layout (change with framedBox - sigh)
Claus Gittinger <cg@exept.de>
parents:
894
diff
changeset
|
402 |
#layout: #(#LayoutOrigin -3 0 110 0) |
829
dac49512301a
language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents:
826
diff
changeset
|
403 |
#activeHelpKey: #basicsLabelIsImage |
dac49512301a
language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents:
826
diff
changeset
|
404 |
#tabable: true |
dac49512301a
language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents:
826
diff
changeset
|
405 |
#model: #labelIsImage |
dac49512301a
language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents:
826
diff
changeset
|
406 |
#label: 'Label Is Image' |
dac49512301a
language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents:
826
diff
changeset
|
407 |
) |
dac49512301a
language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents:
826
diff
changeset
|
408 |
#(#CheckBoxSpec |
dac49512301a
language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents:
826
diff
changeset
|
409 |
#name: 'CheckBox2' |
949
2e3469100a6a
fixed layout (change with framedBox - sigh)
Claus Gittinger <cg@exept.de>
parents:
894
diff
changeset
|
410 |
#layout: #(#LayoutOrigin 142 0 110 0) |
1004 | 411 |
#activeHelpKey: #basicsLabelTranslate |
829
dac49512301a
language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents:
826
diff
changeset
|
412 |
#tabable: true |
dac49512301a
language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents:
826
diff
changeset
|
413 |
#model: #translateLabel |
dac49512301a
language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents:
826
diff
changeset
|
414 |
#label: 'Translate Label' |
dac49512301a
language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents:
826
diff
changeset
|
415 |
) |
dac49512301a
language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents:
826
diff
changeset
|
416 |
#(#LabelSpec |
dac49512301a
language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents:
826
diff
changeset
|
417 |
#name: 'idLabel' |
949
2e3469100a6a
fixed layout (change with framedBox - sigh)
Claus Gittinger <cg@exept.de>
parents:
894
diff
changeset
|
418 |
#layout: #(#AlignmentOrigin 94 0 14 0 1 0.5) |
829
dac49512301a
language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents:
826
diff
changeset
|
419 |
#label: 'ID:' |
dac49512301a
language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents:
826
diff
changeset
|
420 |
#resizeForLabel: true |
dac49512301a
language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents:
826
diff
changeset
|
421 |
) |
dac49512301a
language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents:
826
diff
changeset
|
422 |
#(#InputFieldSpec |
dac49512301a
language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents:
826
diff
changeset
|
423 |
#name: 'idField' |
949
2e3469100a6a
fixed layout (change with framedBox - sigh)
Claus Gittinger <cg@exept.de>
parents:
894
diff
changeset
|
424 |
#layout: #(#LayoutFrame 97 0 0 0 2 1.0 22 0) |
1004 | 425 |
#activeHelpKey: #basicsLabelId |
829
dac49512301a
language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents:
826
diff
changeset
|
426 |
#tabable: true |
dac49512301a
language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents:
826
diff
changeset
|
427 |
#model: #id |
1073 | 428 |
#acceptOnLostFocus: true |
1064 | 429 |
#acceptChannel: #acceptChannel |
1073 | 430 |
#modifiedChannel: #modifiedChannel |
829
dac49512301a
language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents:
826
diff
changeset
|
431 |
) |
408 | 432 |
) |
433 |
) |
|
687 | 434 |
#label: 'Header:' |
435 |
#labelPosition: #topLeft |
|
332 | 436 |
) |
437 |
#(#FramedBoxSpec |
|
687 | 438 |
#name: 'typesFrame' |
829
dac49512301a
language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents:
826
diff
changeset
|
439 |
#layout: #(#LayoutFrame 0 0.0 178 0 0 1.0 286 0) |
687 | 440 |
#component: |
332 | 441 |
#(#SpecCollection |
687 | 442 |
#collection: |
332 | 443 |
#( |
444 |
#(#LabelSpec |
|
687 | 445 |
#name: 'rendererLabel' |
949
2e3469100a6a
fixed layout (change with framedBox - sigh)
Claus Gittinger <cg@exept.de>
parents:
894
diff
changeset
|
446 |
#layout: #(#AlignmentOrigin 94 0 16 0 1 0.5) |
687 | 447 |
#label: 'Renderer:' |
448 |
#resizeForLabel: true |
|
332 | 449 |
) |
450 |
#(#ComboListSpec |
|
687 | 451 |
#name: 'rendererField' |
949
2e3469100a6a
fixed layout (change with framedBox - sigh)
Claus Gittinger <cg@exept.de>
parents:
894
diff
changeset
|
452 |
#layout: #(#LayoutFrame 97 0 5 0 2 1.0 27 0) |
687 | 453 |
#activeHelpKey: #basicsRenderer |
454 |
#tabable: true |
|
455 |
#model: #rendererType |
|
456 |
#comboList: #rendererTypeList |
|
457 |
#useIndex: false |
|
332 | 458 |
) |
459 |
#(#LabelSpec |
|
687 | 460 |
#name: 'editorLabel' |
949
2e3469100a6a
fixed layout (change with framedBox - sigh)
Claus Gittinger <cg@exept.de>
parents:
894
diff
changeset
|
461 |
#layout: #(#AlignmentOrigin 94 0 42 0 1 0.5) |
687 | 462 |
#label: 'Editor:' |
463 |
#resizeForLabel: true |
|
332 | 464 |
) |
465 |
#(#ComboBoxSpec |
|
687 | 466 |
#name: 'editorField' |
949
2e3469100a6a
fixed layout (change with framedBox - sigh)
Claus Gittinger <cg@exept.de>
parents:
894
diff
changeset
|
467 |
#layout: #(#LayoutFrame 97 0 31 0 2 1.0 53 0) |
687 | 468 |
#activeHelpKey: #basicsEditor |
469 |
#tabable: true |
|
470 |
#model: #editorType |
|
471 |
#type: #symbolOrNil |
|
1073 | 472 |
#acceptOnLostFocus: true |
473 |
#acceptChannel: #acceptChannel |
|
474 |
#modifiedChannel: #modifiedChannel |
|
687 | 475 |
#comboList: #editorTypeList |
476 |
#useIndex: false |
|
332 | 477 |
) |
817 | 478 |
#(#LabelSpec |
479 |
#name: 'JustificationC' |
|
949
2e3469100a6a
fixed layout (change with framedBox - sigh)
Claus Gittinger <cg@exept.de>
parents:
894
diff
changeset
|
480 |
#layout: #(#AlignmentOrigin 140 0 69 0 1 0.5) |
817 | 481 |
#label: 'Justification:' |
1036
26ebad245428
fix name entry (did not enable ok-button)
Claus Gittinger <cg@exept.de>
parents:
1033
diff
changeset
|
482 |
#resizeForLabel: true |
817 | 483 |
#adjust: #left |
484 |
) |
|
485 |
#(#PopUpListSpec |
|
486 |
#name: 'AlignmentC' |
|
949
2e3469100a6a
fixed layout (change with framedBox - sigh)
Claus Gittinger <cg@exept.de>
parents:
894
diff
changeset
|
487 |
#layout: #(#LayoutFrame 142 0 58 0 2 1.0 80 0) |
1064 | 488 |
#activeHelpKey: #basicsJustificationEditor |
817 | 489 |
#label: 'Alignment' |
490 |
#model: #columnAlignment |
|
491 |
#menu: |
|
492 |
#(#left |
|
493 |
#right #center |
|
494 |
) |
|
495 |
#useIndex: false |
|
496 |
) |
|
332 | 497 |
) |
498 |
) |
|
687 | 499 |
#label: 'Cell Type:' |
500 |
#labelPosition: #topLeft |
|
391 | 501 |
) |
502 |
) |
|
503 |
) |
|
504 |
) |
|
505 |
! |
|
506 |
||
408 | 507 |
colorsEditSpec |
825 | 508 |
"This resource specification was automatically generated |
509 |
by the UIPainter of ST/X." |
|
332 | 510 |
|
825 | 511 |
"Do not manually edit this!! If it is corrupted, |
512 |
the UIPainter may not be able to read the specification." |
|
332 | 513 |
|
514 |
" |
|
408 | 515 |
UIPainter new openOnClass:DataSetBuilder andSelector:#colorsEditSpec |
516 |
DataSetBuilder new openInterface:#colorsEditSpec |
|
332 | 517 |
" |
518 |
||
519 |
<resource: #canvas> |
|
520 |
||
521 |
^ |
|
522 |
||
523 |
#(#FullSpec |
|
687 | 524 |
#window: |
332 | 525 |
#(#WindowSpec |
687 | 526 |
#name: 'DataSet Misc' |
831 | 527 |
#layout: #(#LayoutFrame 216 0 173 0 584 0 472 0) |
687 | 528 |
#label: 'DataSet Misc' |
529 |
#min: #(#Point 10 10) |
|
530 |
#max: #(#Point 1280 1024) |
|
831 | 531 |
#bounds: #(#Rectangle 216 173 585 473) |
687 | 532 |
#usePreferredExtent: false |
332 | 533 |
) |
687 | 534 |
#component: |
332 | 535 |
#(#SpecCollection |
687 | 536 |
#collection: |
332 | 537 |
#( |
370 | 538 |
#(#FramedBoxSpec |
687 | 539 |
#name: 'ColorsBox' |
831 | 540 |
#layout: #(#LayoutFrame 0 0.0 3 0 0 1.0 95 0) |
687 | 541 |
#component: |
427 | 542 |
#(#SpecCollection |
687 | 543 |
#collection: |
427 | 544 |
#( |
505 | 545 |
#(#LabelSpec |
687 | 546 |
#name: 'label1' |
949
2e3469100a6a
fixed layout (change with framedBox - sigh)
Claus Gittinger <cg@exept.de>
parents:
894
diff
changeset
|
547 |
#layout: #(#AlignmentOrigin 112 0 24 0 1 0.5) |
687 | 548 |
#label: 'Foreground:' |
549 |
#adjust: #right |
|
550 |
#resizeForLabel: true |
|
505 | 551 |
) |
427 | 552 |
#(#ColorMenuSpec |
687 | 553 |
#name: 'colorMenu1' |
949
2e3469100a6a
fixed layout (change with framedBox - sigh)
Claus Gittinger <cg@exept.de>
parents:
894
diff
changeset
|
554 |
#layout: #(#LayoutFrame 115 0 12 0 -3 1.0 34 0) |
687 | 555 |
#activeHelpKey: #colorsForegroundLabelColor |
556 |
#model: #labelForegroundColor |
|
557 |
#labelsAreColored: true |
|
427 | 558 |
) |
559 |
#(#LabelSpec |
|
687 | 560 |
#name: 'label2' |
949
2e3469100a6a
fixed layout (change with framedBox - sigh)
Claus Gittinger <cg@exept.de>
parents:
894
diff
changeset
|
561 |
#layout: #(#AlignmentOrigin 112 0 52 0 1 0.5) |
687 | 562 |
#label: 'Background:' |
563 |
#adjust: #right |
|
564 |
#resizeForLabel: true |
|
427 | 565 |
) |
566 |
#(#ColorMenuSpec |
|
687 | 567 |
#name: 'colorMenu2' |
949
2e3469100a6a
fixed layout (change with framedBox - sigh)
Claus Gittinger <cg@exept.de>
parents:
894
diff
changeset
|
568 |
#layout: #(#LayoutFrame 115 0 40 0 -3 1.0 62 0) |
687 | 569 |
#activeHelpKey: #colorsBackgroundLabelColor |
570 |
#model: #labelBackgroundColor |
|
571 |
#labelsAreColored: false |
|
427 | 572 |
) |
573 |
) |
|
574 |
) |
|
687 | 575 |
#label: 'Label Colors:' |
576 |
#labelPosition: #topLeft |
|
427 | 577 |
) |
578 |
#(#FramedBoxSpec |
|
687 | 579 |
#name: 'defaultColorsBox' |
831 | 580 |
#layout: #(#LayoutFrame 0 0.0 108 0 0 1.0 263 0) |
687 | 581 |
#component: |
370 | 582 |
#(#SpecCollection |
687 | 583 |
#collection: |
370 | 584 |
#( |
585 |
#(#LabelSpec |
|
687 | 586 |
#name: 'fgLabel' |
949
2e3469100a6a
fixed layout (change with framedBox - sigh)
Claus Gittinger <cg@exept.de>
parents:
894
diff
changeset
|
587 |
#layout: #(#AlignmentOrigin 112 0 28 0 1 0.5) |
687 | 588 |
#label: 'Foreground:' |
589 |
#adjust: #right |
|
590 |
#resizeForLabel: true |
|
370 | 591 |
) |
505 | 592 |
#(#ColorMenuSpec |
687 | 593 |
#name: 'fgMenu' |
949
2e3469100a6a
fixed layout (change with framedBox - sigh)
Claus Gittinger <cg@exept.de>
parents:
894
diff
changeset
|
594 |
#layout: #(#LayoutFrame 115 0 16 0 -3 1.0 38 0) |
687 | 595 |
#activeHelpKey: #colorsForegroundCellColor |
596 |
#model: #foregroundColor |
|
597 |
#labelsAreColored: true |
|
505 | 598 |
) |
370 | 599 |
#(#LabelSpec |
687 | 600 |
#name: 'bgLabel' |
949
2e3469100a6a
fixed layout (change with framedBox - sigh)
Claus Gittinger <cg@exept.de>
parents:
894
diff
changeset
|
601 |
#layout: #(#AlignmentOrigin 112 0 56 0 1 0.5) |
687 | 602 |
#label: 'Background:' |
603 |
#adjust: #right |
|
604 |
#resizeForLabel: true |
|
370 | 605 |
) |
606 |
#(#ColorMenuSpec |
|
687 | 607 |
#name: 'bgMenu' |
949
2e3469100a6a
fixed layout (change with framedBox - sigh)
Claus Gittinger <cg@exept.de>
parents:
894
diff
changeset
|
608 |
#layout: #(#LayoutFrame 115 0 44 0 -3 1.0 66 0) |
687 | 609 |
#activeHelpKey: #colorsBackgroundCellColor |
610 |
#model: #backgroundColor |
|
611 |
#labelsAreColored: false |
|
370 | 612 |
) |
380 | 613 |
#(#LabelSpec |
687 | 614 |
#name: 'fgSelLabel' |
949
2e3469100a6a
fixed layout (change with framedBox - sigh)
Claus Gittinger <cg@exept.de>
parents:
894
diff
changeset
|
615 |
#layout: #(#AlignmentOrigin 112 0 90 0 1 0.5) |
687 | 616 |
#label: 'FG-Selector:' |
617 |
#adjust: #right |
|
618 |
#resizeForLabel: true |
|
380 | 619 |
) |
620 |
#(#InputFieldSpec |
|
687 | 621 |
#name: 'fgSelField' |
949
2e3469100a6a
fixed layout (change with framedBox - sigh)
Claus Gittinger <cg@exept.de>
parents:
894
diff
changeset
|
622 |
#layout: #(#LayoutFrame 115 0 79 0 0 1.0 101 0) |
687 | 623 |
#activeHelpKey: #colorsForegroundSelector |
624 |
#tabable: true |
|
625 |
#model: #foregroundSelector |
|
626 |
#type: #symbolOrNil |
|
1064 | 627 |
#modifiedChannel: #modifiedChannel |
628 |
#acceptChannel: #acceptChannel |
|
629 |
#acceptOnLostFocus: true |
|
470 | 630 |
) |
505 | 631 |
#(#LabelSpec |
687 | 632 |
#name: 'bgSelLabel' |
949
2e3469100a6a
fixed layout (change with framedBox - sigh)
Claus Gittinger <cg@exept.de>
parents:
894
diff
changeset
|
633 |
#layout: #(#AlignmentOrigin 112 0 115 0 1 0.5) |
687 | 634 |
#label: 'BG-Selector:' |
635 |
#adjust: #right |
|
636 |
#resizeForLabel: true |
|
505 | 637 |
) |
470 | 638 |
#(#InputFieldSpec |
687 | 639 |
#name: 'bgSelField' |
949
2e3469100a6a
fixed layout (change with framedBox - sigh)
Claus Gittinger <cg@exept.de>
parents:
894
diff
changeset
|
640 |
#layout: #(#LayoutFrame 115 0 104 0 0 1.0 126 0) |
687 | 641 |
#activeHelpKey: #colorsBackgroundSelector |
642 |
#tabable: true |
|
643 |
#model: #backgroundSelector |
|
644 |
#type: #symbolOrNil |
|
1064 | 645 |
#modifiedChannel: #modifiedChannel |
646 |
#acceptChannel: #acceptChannel |
|
647 |
#acceptOnLostFocus: true |
|
408 | 648 |
) |
380 | 649 |
) |
650 |
) |
|
687 | 651 |
#label: 'Cell Colors:' |
652 |
#labelPosition: #topLeft |
|
377 | 653 |
) |
332 | 654 |
) |
655 |
) |
|
656 |
) |
|
831 | 657 |
|
949
2e3469100a6a
fixed layout (change with framedBox - sigh)
Claus Gittinger <cg@exept.de>
parents:
894
diff
changeset
|
658 |
"Modified: / 13.8.1998 / 19:53:41 / cg" |
332 | 659 |
! |
660 |
||
528 | 661 |
defineClassNameSpec |
825 | 662 |
"This resource specification was automatically generated |
663 |
by the UIPainter of ST/X." |
|
528 | 664 |
|
825 | 665 |
"Do not manually edit this!! If it is corrupted, |
666 |
the UIPainter may not be able to read the specification." |
|
528 | 667 |
|
668 |
" |
|
669 |
UIPainter new openOnClass:DataSetBuilder andSelector:#defineClassNameSpec |
|
670 |
DataSetBuilder new openInterface:#defineClassNameSpec |
|
671 |
" |
|
672 |
||
673 |
<resource: #canvas> |
|
674 |
||
675 |
^ |
|
676 |
||
677 |
#(#FullSpec |
|
687 | 678 |
#window: |
528 | 679 |
#(#WindowSpec |
687 | 680 |
#name: 'Data Set Builder' |
825 | 681 |
#layout: #(#LayoutFrame 414 0 336 0 740 0 471 0) |
687 | 682 |
#label: 'Data Set Builder' |
683 |
#min: #(#Point 10 10) |
|
684 |
#max: #(#Point 1152 900) |
|
825 | 685 |
#bounds: #(#Rectangle 414 336 741 472) |
687 | 686 |
#usePreferredExtent: false |
528 | 687 |
) |
687 | 688 |
#component: |
528 | 689 |
#(#SpecCollection |
687 | 690 |
#collection: |
528 | 691 |
#( |
692 |
#(#FramedBoxSpec |
|
687 | 693 |
#name: 'framedBox1' |
694 |
#layout: #(#LayoutFrame 0 0.0 3 0.0 0 1.0 -34 1.0) |
|
842 | 695 |
#label: 'Class for code' |
696 |
#translateLabel: true |
|
687 | 697 |
#labelPosition: #topLeft |
528 | 698 |
) |
699 |
#(#LabelSpec |
|
687 | 700 |
#name: 'classLabel' |
701 |
#layout: #(#AlignmentOrigin 73 0.11 38 0 1 0.5) |
|
702 |
#label: 'Class:' |
|
842 | 703 |
#translateLabel: true |
687 | 704 |
#adjust: #right |
705 |
#resizeForLabel: true |
|
528 | 706 |
) |
707 |
#(#InputFieldSpec |
|
687 | 708 |
#name: 'classNameInputField' |
709 |
#layout: #(#LayoutFrame 77 0.11 27 0 -16 1.0 49 0) |
|
710 |
#tabable: true |
|
711 |
#model: #classNameChannel |
|
528 | 712 |
) |
713 |
#(#LabelSpec |
|
687 | 714 |
#name: 'superClassLabel' |
715 |
#layout: #(#AlignmentOrigin 73 0.11 65 0 1 0.5) |
|
716 |
#label: 'Superclass:' |
|
842 | 717 |
#translateLabel: true |
687 | 718 |
#adjust: #right |
719 |
#resizeForLabel: true |
|
528 | 720 |
) |
721 |
#(#InputFieldSpec |
|
687 | 722 |
#name: 'superclassNameInputField' |
723 |
#layout: #(#LayoutFrame 76 0.11 55 0 -16 1.0 77 0) |
|
724 |
#tabable: true |
|
725 |
#model: #superclassNameChannel |
|
528 | 726 |
) |
727 |
#(#UISubSpecification |
|
687 | 728 |
#name: 'SubSpecification' |
729 |
#layout: #(#LayoutFrame 0 0.0 -29 1 0 1.0 -5 1.0) |
|
730 |
#majorKey: #ToolApplicationModel |
|
731 |
#minorKey: #windowSpecForCommitWithoutChannels |
|
528 | 732 |
) |
733 |
) |
|
734 |
) |
|
735 |
) |
|
842 | 736 |
|
737 |
"Modified: / 20.5.1998 / 03:46:17 / cg" |
|
528 | 738 |
! |
739 |
||
370 | 740 |
formatEditSpec |
825 | 741 |
"This resource specification was automatically generated |
742 |
by the UIPainter of ST/X." |
|
332 | 743 |
|
825 | 744 |
"Do not manually edit this!! If it is corrupted, |
745 |
the UIPainter may not be able to read the specification." |
|
332 | 746 |
|
747 |
" |
|
370 | 748 |
UIPainter new openOnClass:DataSetBuilder andSelector:#formatEditSpec |
749 |
DataSetBuilder new openInterface:#formatEditSpec |
|
750 |
" |
|
751 |
||
752 |
<resource: #canvas> |
|
753 |
||
754 |
^ |
|
755 |
||
756 |
#(#FullSpec |
|
687 | 757 |
#window: |
370 | 758 |
#(#WindowSpec |
687 | 759 |
#name: 'DataSet Details' |
949
2e3469100a6a
fixed layout (change with framedBox - sigh)
Claus Gittinger <cg@exept.de>
parents:
894
diff
changeset
|
760 |
#layout: #(#LayoutFrame 216 0 173 0 603 0 464 0) |
687 | 761 |
#label: 'DataSet Details' |
762 |
#min: #(#Point 10 10) |
|
763 |
#max: #(#Point 1280 1024) |
|
949
2e3469100a6a
fixed layout (change with framedBox - sigh)
Claus Gittinger <cg@exept.de>
parents:
894
diff
changeset
|
764 |
#bounds: #(#Rectangle 216 173 604 465) |
687 | 765 |
#usePreferredExtent: false |
370 | 766 |
) |
687 | 767 |
#component: |
370 | 768 |
#(#SpecCollection |
687 | 769 |
#collection: |
370 | 770 |
#( |
408 | 771 |
#(#FramedBoxSpec |
687 | 772 |
#name: 'framedBox1' |
829
dac49512301a
language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents:
826
diff
changeset
|
773 |
#layout: #(#LayoutFrame 0 0.0 3 0 0 1.0 127 0) |
687 | 774 |
#component: |
408 | 775 |
#(#SpecCollection |
687 | 776 |
#collection: |
408 | 777 |
#( |
778 |
#(#LabelSpec |
|
687 | 779 |
#name: 'typeLabel' |
949
2e3469100a6a
fixed layout (change with framedBox - sigh)
Claus Gittinger <cg@exept.de>
parents:
894
diff
changeset
|
780 |
#layout: #(#AlignmentOrigin 115 0 26 0 1 0.5) |
687 | 781 |
#label: 'Input Type:' |
782 |
#resizeForLabel: true |
|
408 | 783 |
) |
470 | 784 |
#(#ComboListSpec |
687 | 785 |
#name: 'typeCombo' |
949
2e3469100a6a
fixed layout (change with framedBox - sigh)
Claus Gittinger <cg@exept.de>
parents:
894
diff
changeset
|
786 |
#layout: #(#LayoutFrame 118 0 15 0 3 1.0 37 0) |
687 | 787 |
#activeHelpKey: #formatInputType |
788 |
#tabable: true |
|
789 |
#model: #type |
|
790 |
#comboList: |
|
470 | 791 |
#(#string |
792 |
#password #number |
|
793 |
#numberOrNil #symbolOrNil |
|
794 |
) |
|
687 | 795 |
#useIndex: false |
470 | 796 |
) |
408 | 797 |
#(#LabelSpec |
687 | 798 |
#name: 'sizeLabel' |
949
2e3469100a6a
fixed layout (change with framedBox - sigh)
Claus Gittinger <cg@exept.de>
parents:
894
diff
changeset
|
799 |
#layout: #(#AlignmentOrigin 115 0 52 0 1 0.5) |
687 | 800 |
#label: 'Max Size:' |
801 |
#resizeForLabel: true |
|
408 | 802 |
) |
803 |
#(#InputFieldSpec |
|
687 | 804 |
#name: 'sizeField' |
949
2e3469100a6a
fixed layout (change with framedBox - sigh)
Claus Gittinger <cg@exept.de>
parents:
894
diff
changeset
|
805 |
#layout: #(#LayoutFrame 118 0 41 0 3 1.0 63 0) |
687 | 806 |
#activeHelpKey: #formatMaxSize |
807 |
#tabable: true |
|
808 |
#model: #size |
|
809 |
#type: #numberOrNil |
|
1064 | 810 |
#modifiedChannel: #modifiedChannel |
811 |
#acceptChannel: #acceptChannel |
|
812 |
#acceptOnLostFocus: true |
|
408 | 813 |
) |
439 | 814 |
#(#LabelSpec |
687 | 815 |
#name: 'formatLabel' |
949
2e3469100a6a
fixed layout (change with framedBox - sigh)
Claus Gittinger <cg@exept.de>
parents:
894
diff
changeset
|
816 |
#layout: #(#AlignmentOrigin 115 0 77 0 1 0.5) |
687 | 817 |
#label: 'Text Format:' |
818 |
#resizeForLabel: true |
|
439 | 819 |
) |
470 | 820 |
#(#InputFieldSpec |
687 | 821 |
#name: 'formatField' |
949
2e3469100a6a
fixed layout (change with framedBox - sigh)
Claus Gittinger <cg@exept.de>
parents:
894
diff
changeset
|
822 |
#layout: #(#LayoutFrame 118 0 66 0 3 1.0 88 0) |
687 | 823 |
#activeHelpKey: #formatTextFormat |
824 |
#tabable: true |
|
825 |
#model: #formatString |
|
1064 | 826 |
#modifiedChannel: #modifiedChannel |
827 |
#acceptChannel: #acceptChannel |
|
828 |
#acceptOnLostFocus: true |
|
470 | 829 |
) |
408 | 830 |
) |
831 |
) |
|
687 | 832 |
#label: 'Input Format' |
833 |
#labelPosition: #topLeft |
|
370 | 834 |
) |
835 |
) |
|
836 |
) |
|
837 |
) |
|
829
dac49512301a
language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents:
826
diff
changeset
|
838 |
|
949
2e3469100a6a
fixed layout (change with framedBox - sigh)
Claus Gittinger <cg@exept.de>
parents:
894
diff
changeset
|
839 |
"Modified: / 13.8.1998 / 19:54:13 / cg" |
370 | 840 |
! |
841 |
||
408 | 842 |
frameEditSpec |
825 | 843 |
"This resource specification was automatically generated |
844 |
by the UIPainter of ST/X." |
|
391 | 845 |
|
825 | 846 |
"Do not manually edit this!! If it is corrupted, |
847 |
the UIPainter may not be able to read the specification." |
|
391 | 848 |
|
849 |
" |
|
408 | 850 |
UIPainter new openOnClass:DataSetBuilder andSelector:#frameEditSpec |
851 |
DataSetBuilder new openInterface:#frameEditSpec |
|
391 | 852 |
" |
853 |
||
854 |
<resource: #canvas> |
|
855 |
||
856 |
^ |
|
857 |
||
858 |
#(#FullSpec |
|
687 | 859 |
#window: |
391 | 860 |
#(#WindowSpec |
687 | 861 |
#name: 'DataSet Dimension' |
1036
26ebad245428
fix name entry (did not enable ok-button)
Claus Gittinger <cg@exept.de>
parents:
1033
diff
changeset
|
862 |
#layout: #(#LayoutFrame 216 0 173 0 540 0 520 0) |
26ebad245428
fix name entry (did not enable ok-button)
Claus Gittinger <cg@exept.de>
parents:
1033
diff
changeset
|
863 |
#level: 0 |
687 | 864 |
#label: 'DataSet Dimension' |
865 |
#min: #(#Point 10 10) |
|
866 |
#max: #(#Point 1280 1024) |
|
1036
26ebad245428
fix name entry (did not enable ok-button)
Claus Gittinger <cg@exept.de>
parents:
1033
diff
changeset
|
867 |
#bounds: #(#Rectangle 216 173 541 521) |
687 | 868 |
#usePreferredExtent: false |
391 | 869 |
) |
687 | 870 |
#component: |
391 | 871 |
#(#SpecCollection |
687 | 872 |
#collection: |
391 | 873 |
#( |
874 |
#(#FramedBoxSpec |
|
687 | 875 |
#name: 'separatorBox' |
983 | 876 |
#layout: #(#LayoutFrame 0 0.0 3 0 0 1.0 132 0) |
687 | 877 |
#component: |
391 | 878 |
#(#SpecCollection |
687 | 879 |
#collection: |
391 | 880 |
#( |
408 | 881 |
#(#CheckBoxSpec |
687 | 882 |
#name: 'showRowSeparator' |
1036
26ebad245428
fix name entry (did not enable ok-button)
Claus Gittinger <cg@exept.de>
parents:
1033
diff
changeset
|
883 |
#layout: #(#LayoutFrame 5 0 15 0 293 0 38 0) |
687 | 884 |
#activeHelpKey: #frameShowRowSeparator |
885 |
#tabable: true |
|
886 |
#model: #showRowSeparator |
|
887 |
#label: 'Show Row-Separator' |
|
408 | 888 |
) |
983 | 889 |
#(#InputFieldSpec |
890 |
#name: 'rowSeparatorSelector' |
|
891 |
#layout: #(#LayoutFrame 29 0 41 0 2 1.0 63 0) |
|
892 |
#activeHelpKey: #frameShowRowSeparatorSelector |
|
893 |
#tabable: true |
|
894 |
#model: #rowSeparatorSelector |
|
895 |
#type: #symbolOrNil |
|
1064 | 896 |
#modifiedChannel: #modifiedChannel |
897 |
#acceptChannel: #acceptChannel |
|
898 |
#acceptOnLostFocus: true |
|
983 | 899 |
) |
408 | 900 |
#(#CheckBoxSpec |
687 | 901 |
#name: 'showColSeparator' |
1036
26ebad245428
fix name entry (did not enable ok-button)
Claus Gittinger <cg@exept.de>
parents:
1033
diff
changeset
|
902 |
#layout: #(#LayoutFrame 5 0 70 0 294 0 93 0) |
687 | 903 |
#activeHelpKey: #frameShowColumnSeparator |
904 |
#tabable: true |
|
905 |
#model: #showColSeparator |
|
906 |
#label: 'Show Column-Separator' |
|
408 | 907 |
) |
908 |
) |
|
909 |
) |
|
687 | 910 |
#label: 'Separators' |
911 |
#labelPosition: #topLeft |
|
408 | 912 |
) |
913 |
#(#FramedBoxSpec |
|
687 | 914 |
#name: 'framedBox1' |
983 | 915 |
#layout: #(#LayoutFrame 0 0.0 151 0 0 1.0 268 0) |
687 | 916 |
#component: |
408 | 917 |
#(#SpecCollection |
687 | 918 |
#collection: |
408 | 919 |
#( |
391 | 920 |
#(#LabelSpec |
687 | 921 |
#name: 'widthLabel' |
949
2e3469100a6a
fixed layout (change with framedBox - sigh)
Claus Gittinger <cg@exept.de>
parents:
894
diff
changeset
|
922 |
#layout: #(#AlignmentOrigin 140 0.0 23 0 1 0.5) |
687 | 923 |
#label: 'Column Width:' |
1036
26ebad245428
fix name entry (did not enable ok-button)
Claus Gittinger <cg@exept.de>
parents:
1033
diff
changeset
|
924 |
#resizeForLabel: true |
687 | 925 |
#adjust: #right |
391 | 926 |
) |
470 | 927 |
#(#InputFieldSpec |
687 | 928 |
#name: 'widthField' |
949
2e3469100a6a
fixed layout (change with framedBox - sigh)
Claus Gittinger <cg@exept.de>
parents:
894
diff
changeset
|
929 |
#layout: #(#LayoutFrame 142 0 12 0 2 1.0 34 0) |
687 | 930 |
#activeHelpKey: #frameColumnWidth |
931 |
#tabable: true |
|
932 |
#model: #width |
|
933 |
#type: #numberOrNil |
|
1064 | 934 |
#modifiedChannel: #modifiedChannel |
935 |
#acceptChannel: #acceptChannel |
|
936 |
#acceptOnLostFocus: true |
|
470 | 937 |
) |
391 | 938 |
#(#LabelSpec |
687 | 939 |
#name: 'minWidthLabel' |
949
2e3469100a6a
fixed layout (change with framedBox - sigh)
Claus Gittinger <cg@exept.de>
parents:
894
diff
changeset
|
940 |
#layout: #(#AlignmentOrigin 140 0.0 51 0 1 0.5) |
687 | 941 |
#label: 'Min Width:' |
1036
26ebad245428
fix name entry (did not enable ok-button)
Claus Gittinger <cg@exept.de>
parents:
1033
diff
changeset
|
942 |
#resizeForLabel: true |
687 | 943 |
#adjust: #right |
391 | 944 |
) |
408 | 945 |
#(#InputFieldSpec |
687 | 946 |
#name: 'minWidthField' |
949
2e3469100a6a
fixed layout (change with framedBox - sigh)
Claus Gittinger <cg@exept.de>
parents:
894
diff
changeset
|
947 |
#layout: #(#LayoutFrame 142 0 40 0 2 1.0 62 0) |
687 | 948 |
#activeHelpKey: #frameMinWidth |
949 |
#tabable: true |
|
950 |
#model: #minWidth |
|
951 |
#type: #numberOrNil |
|
1064 | 952 |
#modifiedChannel: #modifiedChannel |
953 |
#acceptChannel: #acceptChannel |
|
954 |
#acceptOnLostFocus: true |
|
408 | 955 |
) |
956 |
#(#LabelSpec |
|
687 | 957 |
#name: 'heightLabel' |
949
2e3469100a6a
fixed layout (change with framedBox - sigh)
Claus Gittinger <cg@exept.de>
parents:
894
diff
changeset
|
958 |
#layout: #(#AlignmentOrigin 140 0.0 79 0 1 0.5) |
687 | 959 |
#label: 'Row Height:' |
1036
26ebad245428
fix name entry (did not enable ok-button)
Claus Gittinger <cg@exept.de>
parents:
1033
diff
changeset
|
960 |
#resizeForLabel: true |
687 | 961 |
#adjust: #right |
408 | 962 |
) |
963 |
#(#InputFieldSpec |
|
687 | 964 |
#name: 'heightField' |
949
2e3469100a6a
fixed layout (change with framedBox - sigh)
Claus Gittinger <cg@exept.de>
parents:
894
diff
changeset
|
965 |
#layout: #(#LayoutFrame 142 0 68 0 2 1.0 90 0) |
687 | 966 |
#activeHelpKey: #frameRowHeight |
967 |
#tabable: true |
|
968 |
#model: #height |
|
969 |
#type: #numberOrNil |
|
1064 | 970 |
#modifiedChannel: #modifiedChannel |
971 |
#acceptChannel: #acceptChannel |
|
972 |
#acceptOnLostFocus: true |
|
391 | 973 |
) |
974 |
) |
|
975 |
) |
|
687 | 976 |
#label: 'Dimensions:' |
977 |
#labelPosition: #topLeft |
|
391 | 978 |
) |
979 |
) |
|
980 |
) |
|
981 |
) |
|
982 |
! |
|
983 |
||
408 | 984 |
selectionEditSpec |
825 | 985 |
"This resource specification was automatically generated |
986 |
by the UIPainter of ST/X." |
|
370 | 987 |
|
825 | 988 |
"Do not manually edit this!! If it is corrupted, |
989 |
the UIPainter may not be able to read the specification." |
|
370 | 990 |
|
991 |
" |
|
408 | 992 |
UIPainter new openOnClass:DataSetBuilder andSelector:#selectionEditSpec |
993 |
DataSetBuilder new openInterface:#selectionEditSpec |
|
332 | 994 |
" |
995 |
||
996 |
<resource: #canvas> |
|
997 |
||
998 |
^ |
|
999 |
||
1000 |
#(#FullSpec |
|
687 | 1001 |
#window: |
332 | 1002 |
#(#WindowSpec |
687 | 1003 |
#name: 'DataSet Basic' |
983 | 1004 |
#layout: #(#LayoutFrame 104 0 195 0 434 0 522 0) |
687 | 1005 |
#label: 'DataSet Basic' |
1006 |
#min: #(#Point 10 10) |
|
1007 |
#max: #(#Point 1280 1024) |
|
983 | 1008 |
#bounds: #(#Rectangle 104 195 435 523) |
687 | 1009 |
#usePreferredExtent: false |
408 | 1010 |
) |
687 | 1011 |
#component: |
408 | 1012 |
#(#SpecCollection |
687 | 1013 |
#collection: |
408 | 1014 |
#( |
1015 |
#(#FramedBoxSpec |
|
687 | 1016 |
#name: 'framedBox1' |
829
dac49512301a
language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents:
826
diff
changeset
|
1017 |
#layout: #(#LayoutFrame 0 0.0 3 0 0 1.0 87 0) |
687 | 1018 |
#component: |
408 | 1019 |
#(#SpecCollection |
687 | 1020 |
#collection: |
408 | 1021 |
#( |
1022 |
#(#LabelSpec |
|
687 | 1023 |
#name: 'ActionLabel' |
949
2e3469100a6a
fixed layout (change with framedBox - sigh)
Claus Gittinger <cg@exept.de>
parents:
894
diff
changeset
|
1024 |
#layout: #(#AlignmentOrigin 95 0 20 0 1 0.5) |
687 | 1025 |
#label: 'Selector:' |
1026 |
#adjust: #left |
|
1027 |
#resizeForLabel: true |
|
408 | 1028 |
) |
1029 |
#(#InputFieldSpec |
|
687 | 1030 |
#name: 'ActionSelector' |
949
2e3469100a6a
fixed layout (change with framedBox - sigh)
Claus Gittinger <cg@exept.de>
parents:
894
diff
changeset
|
1031 |
#layout: #(#LayoutFrame 98 0 9 0 3 1.0 31 0) |
687 | 1032 |
#activeHelpKey: #selectionLabelClickSelector |
1033 |
#tabable: true |
|
1034 |
#model: #labelActionSelector |
|
1035 |
#type: #symbolOrNil |
|
1064 | 1036 |
#modifiedChannel: #modifiedChannel |
1037 |
#acceptChannel: #acceptChannel |
|
1038 |
#acceptOnLostFocus: true |
|
408 | 1039 |
) |
427 | 1040 |
#(#LabelSpec |
687 | 1041 |
#name: 'ArgumentLabel' |
949
2e3469100a6a
fixed layout (change with framedBox - sigh)
Claus Gittinger <cg@exept.de>
parents:
894
diff
changeset
|
1042 |
#layout: #(#AlignmentOrigin 95 0 45 0 1 0.5) |
687 | 1043 |
#label: 'Argument:' |
1044 |
#adjust: #left |
|
1045 |
#resizeForLabel: true |
|
427 | 1046 |
) |
1047 |
#(#InputFieldSpec |
|
687 | 1048 |
#name: 'ArgumentValue' |
949
2e3469100a6a
fixed layout (change with framedBox - sigh)
Claus Gittinger <cg@exept.de>
parents:
894
diff
changeset
|
1049 |
#layout: #(#LayoutFrame 98 0 34 0 3 1.0 56 0) |
687 | 1050 |
#activeHelpKey: #selectionLabelSelectorArgument |
1051 |
#tabable: true |
|
1052 |
#model: #labelActionArgument |
|
1053 |
#type: #string |
|
1064 | 1054 |
#modifiedChannel: #modifiedChannel |
1055 |
#acceptChannel: #acceptChannel |
|
1056 |
#acceptOnLostFocus: true |
|
427 | 1057 |
) |
408 | 1058 |
) |
1059 |
) |
|
687 | 1060 |
#label: 'Label Select Action:' |
1061 |
#labelPosition: #topLeft |
|
408 | 1062 |
) |
1063 |
#(#FramedBoxSpec |
|
687 | 1064 |
#name: 'framedBox2' |
983 | 1065 |
#layout: #(#LayoutFrame 0 0.0 95 0 0 1.0 205 0) |
687 | 1066 |
#component: |
470 | 1067 |
#(#SpecCollection |
687 | 1068 |
#collection: |
470 | 1069 |
#( |
1070 |
#(#CheckBoxSpec |
|
687 | 1071 |
#name: 'canSelect' |
983 | 1072 |
#layout: #(#Point 95 1) |
687 | 1073 |
#activeHelpKey: #selectionIsSelectable |
1074 |
#tabable: true |
|
1075 |
#model: #canSelect |
|
1076 |
#label: 'Is Selectable' |
|
470 | 1077 |
) |
1078 |
#(#LabelSpec |
|
687 | 1079 |
#name: 'selectorLabel' |
983 | 1080 |
#layout: #(#AlignmentOrigin 95 0 37 0 1 0.5) |
687 | 1081 |
#label: 'Selector:' |
1082 |
#adjust: #right |
|
1083 |
#resizeForLabel: true |
|
470 | 1084 |
) |
1085 |
#(#InputFieldSpec |
|
687 | 1086 |
#name: 'selectSelector' |
983 | 1087 |
#layout: #(#LayoutFrame 98 0 26 0 3 1.0 48 0) |
687 | 1088 |
#activeHelpKey: #selectionCellClickSelector |
1089 |
#tabable: true |
|
1090 |
#model: #selectSelector |
|
1091 |
#type: #symbolOrNil |
|
1064 | 1092 |
#modifiedChannel: #modifiedChannel |
1093 |
#acceptChannel: #acceptChannel |
|
1094 |
#acceptOnLostFocus: true |
|
470 | 1095 |
) |
983 | 1096 |
#(#CheckBoxSpec |
1097 |
#name: 'showSelectionHighLightened' |
|
1098 |
#layout: #(#LayoutFrame 95 0 53 0 3 1.0 77 0) |
|
1099 |
#activeHelpKey: #showSelectionHighLighted |
|
1100 |
#tabable: true |
|
1101 |
#model: #showSelectionHighLighted |
|
1102 |
#label: 'Show Selection HighLightened' |
|
1103 |
) |
|
470 | 1104 |
) |
1105 |
) |
|
687 | 1106 |
#label: 'Cell Selection:' |
1107 |
#labelPosition: #topLeft |
|
470 | 1108 |
) |
1109 |
#(#FramedBoxSpec |
|
687 | 1110 |
#name: 'framedBox3' |
983 | 1111 |
#layout: #(#LayoutFrame 0 0.0 217 0 0 1.0 274 0) |
687 | 1112 |
#component: |
408 | 1113 |
#(#SpecCollection |
687 | 1114 |
#collection: |
408 | 1115 |
#( |
1116 |
#(#LabelSpec |
|
687 | 1117 |
#name: 'doubleLabel' |
949
2e3469100a6a
fixed layout (change with framedBox - sigh)
Claus Gittinger <cg@exept.de>
parents:
894
diff
changeset
|
1118 |
#layout: #(#AlignmentOrigin 95 0 19 0 1 0.5) |
687 | 1119 |
#label: 'Selector:' |
1120 |
#adjust: #right |
|
1121 |
#resizeForLabel: true |
|
408 | 1122 |
) |
1123 |
#(#InputFieldSpec |
|
687 | 1124 |
#name: 'doubleClicked' |
949
2e3469100a6a
fixed layout (change with framedBox - sigh)
Claus Gittinger <cg@exept.de>
parents:
894
diff
changeset
|
1125 |
#layout: #(#LayoutFrame 98 0 8 0 3 1.0 30 0) |
687 | 1126 |
#activeHelpKey: #selectionCellDoubleClickSelector |
1127 |
#tabable: true |
|
1128 |
#model: #doubleClickedSelector |
|
1129 |
#type: #symbolOrNil |
|
1064 | 1130 |
#modifiedChannel: #modifiedChannel |
1131 |
#acceptChannel: #acceptChannel |
|
1132 |
#acceptOnLostFocus: true |
|
408 | 1133 |
) |
1134 |
) |
|
1135 |
) |
|
687 | 1136 |
#label: 'Cell Double Click:' |
1137 |
#labelPosition: #topLeft |
|
408 | 1138 |
) |
1139 |
) |
|
1140 |
) |
|
1141 |
) |
|
1142 |
! |
|
1143 |
||
528 | 1144 |
slices |
1145 |
^#( |
|
1146 |
(Basics basicsEditSpec) |
|
1147 |
(Values valuesEditSpec) |
|
1148 |
(Format formatEditSpec) |
|
1149 |
(Selection selectionEditSpec) |
|
1150 |
(Frame frameEditSpec) |
|
1151 |
(Colors colorsEditSpec) |
|
1152 |
) |
|
1153 |
! |
|
1154 |
||
408 | 1155 |
valuesEditSpec |
825 | 1156 |
"This resource specification was automatically generated |
1157 |
by the UIPainter of ST/X." |
|
408 | 1158 |
|
825 | 1159 |
"Do not manually edit this!! If it is corrupted, |
1160 |
the UIPainter may not be able to read the specification." |
|
408 | 1161 |
|
1162 |
" |
|
1163 |
UIPainter new openOnClass:DataSetBuilder andSelector:#valuesEditSpec |
|
1164 |
DataSetBuilder new openInterface:#valuesEditSpec |
|
1165 |
" |
|
1166 |
||
1167 |
<resource: #canvas> |
|
1168 |
||
1169 |
^ |
|
1170 |
||
1171 |
#(#FullSpec |
|
687 | 1172 |
#window: |
408 | 1173 |
#(#WindowSpec |
687 | 1174 |
#name: 'DataSet Basic' |
1009 | 1175 |
#layout: #(#LayoutFrame 14 0 192 0 309 0 497 0) |
687 | 1176 |
#label: 'DataSet Basic' |
1177 |
#min: #(#Point 10 10) |
|
1178 |
#max: #(#Point 1280 1024) |
|
1009 | 1179 |
#bounds: #(#Rectangle 14 192 310 498) |
687 | 1180 |
#usePreferredExtent: false |
332 | 1181 |
) |
687 | 1182 |
#component: |
332 | 1183 |
#(#SpecCollection |
687 | 1184 |
#collection: |
332 | 1185 |
#( |
370 | 1186 |
#(#FramedBoxSpec |
687 | 1187 |
#name: 'valuesBox' |
1188 |
#layout: #(#LayoutFrame 0 0.0 3 0 0 1.0 110 0) |
|
1189 |
#component: |
|
370 | 1190 |
#(#SpecCollection |
687 | 1191 |
#collection: |
370 | 1192 |
#( |
1193 |
#(#LabelSpec |
|
687 | 1194 |
#name: 'readLabel' |
949
2e3469100a6a
fixed layout (change with framedBox - sigh)
Claus Gittinger <cg@exept.de>
parents:
894
diff
changeset
|
1195 |
#layout: #(#AlignmentOrigin 94 0 15 0 1 0.5) |
687 | 1196 |
#label: 'Read:' |
1197 |
#adjust: #right |
|
1198 |
#resizeForLabel: true |
|
370 | 1199 |
) |
1200 |
#(#InputFieldSpec |
|
687 | 1201 |
#name: 'readSelector' |
949
2e3469100a6a
fixed layout (change with framedBox - sigh)
Claus Gittinger <cg@exept.de>
parents:
894
diff
changeset
|
1202 |
#layout: #(#LayoutFrame 97 0 4 0 2 1.0 26 0) |
687 | 1203 |
#activeHelpKey: #valuesReadSelector |
1204 |
#tabable: true |
|
1205 |
#model: #readSelector |
|
1206 |
#type: #symbolOrNil |
|
1064 | 1207 |
#modifiedChannel: #modifiedChannel |
1208 |
#acceptChannel: #acceptChannel |
|
1209 |
#acceptOnLostFocus: true |
|
370 | 1210 |
) |
470 | 1211 |
#(#LabelSpec |
687 | 1212 |
#name: 'writeLabel' |
949
2e3469100a6a
fixed layout (change with framedBox - sigh)
Claus Gittinger <cg@exept.de>
parents:
894
diff
changeset
|
1213 |
#layout: #(#AlignmentOrigin 94 0 40 0 1 0.5) |
687 | 1214 |
#label: 'Write:' |
1215 |
#adjust: #right |
|
1216 |
#resizeForLabel: true |
|
470 | 1217 |
) |
379 | 1218 |
#(#InputFieldSpec |
687 | 1219 |
#name: 'writeSelector' |
949
2e3469100a6a
fixed layout (change with framedBox - sigh)
Claus Gittinger <cg@exept.de>
parents:
894
diff
changeset
|
1220 |
#layout: #(#LayoutFrame 97 0 29 0 2 1.0 51 0) |
687 | 1221 |
#activeHelpKey: #valuesWriteSelector |
1222 |
#tabable: true |
|
1223 |
#model: #writeSelector |
|
1224 |
#type: #symbolOrNil |
|
1064 | 1225 |
#modifiedChannel: #modifiedChannel |
1226 |
#acceptChannel: #acceptChannel |
|
1227 |
#acceptOnLostFocus: true |
|
379 | 1228 |
) |
370 | 1229 |
#(#LabelSpec |
687 | 1230 |
#name: 'printLabel' |
949
2e3469100a6a
fixed layout (change with framedBox - sigh)
Claus Gittinger <cg@exept.de>
parents:
894
diff
changeset
|
1231 |
#layout: #(#AlignmentOrigin 94 0 65 0 1 0.5) |
687 | 1232 |
#label: 'Print:' |
1233 |
#adjust: #right |
|
1234 |
#resizeForLabel: true |
|
370 | 1235 |
) |
1236 |
#(#InputFieldSpec |
|
687 | 1237 |
#name: 'printSelector' |
949
2e3469100a6a
fixed layout (change with framedBox - sigh)
Claus Gittinger <cg@exept.de>
parents:
894
diff
changeset
|
1238 |
#layout: #(#LayoutFrame 97 0 54 0 2 1.0 76 0) |
687 | 1239 |
#activeHelpKey: #valuesPrintSelector |
1240 |
#tabable: true |
|
1241 |
#model: #printSelector |
|
1242 |
#type: #symbolOrNil |
|
1064 | 1243 |
#modifiedChannel: #modifiedChannel |
1244 |
#acceptChannel: #acceptChannel |
|
1245 |
#acceptOnLostFocus: true |
|
370 | 1246 |
) |
1247 |
) |
|
1248 |
) |
|
687 | 1249 |
#label: 'Value Selectors:' |
1250 |
#labelPosition: #topLeft |
|
332 | 1251 |
) |
370 | 1252 |
#(#FramedBoxSpec |
687 | 1253 |
#name: 'menusBox' |
829
dac49512301a
language strings, help spec & initial handle position of panel
Claus Gittinger <cg@exept.de>
parents:
826
diff
changeset
|
1254 |
#layout: #(#LayoutFrame 0 0.0 119 0 0 1.0 176 0) |
687 | 1255 |
#component: |
370 | 1256 |
#(#SpecCollection |
687 | 1257 |
#collection: |
370 | 1258 |
#( |
1259 |
#(#LabelSpec |
|
687 | 1260 |
#name: 'menuLabel' |
949
2e3469100a6a
fixed layout (change with framedBox - sigh)
Claus Gittinger <cg@exept.de>
parents:
894
diff
changeset
|
1261 |
#layout: #(#AlignmentOrigin 94 0 15 0 1 0.5) |
687 | 1262 |
#label: 'Selector:' |
1263 |
#adjust: #right |
|
1264 |
#resizeForLabel: true |
|
370 | 1265 |
) |
1266 |
#(#InputFieldSpec |
|
687 | 1267 |
#name: 'menuSelector' |
949
2e3469100a6a
fixed layout (change with framedBox - sigh)
Claus Gittinger <cg@exept.de>
parents:
894
diff
changeset
|
1268 |
#layout: #(#LayoutFrame 97 0 4 0 2 1.0 26 0) |
687 | 1269 |
#activeHelpKey: #valuesMenuSelector |
1270 |
#tabable: true |
|
1271 |
#model: #menu |
|
1272 |
#type: #symbolOrNil |
|
1064 | 1273 |
#modifiedChannel: #modifiedChannel |
1274 |
#acceptChannel: #acceptChannel |
|
1275 |
#acceptOnLostFocus: true |
|
370 | 1276 |
) |
597 | 1277 |
) |
1278 |
) |
|
687 | 1279 |
#label: 'Menu:' |
1280 |
#labelPosition: #topLeft |
|
597 | 1281 |
) |
1282 |
#(#FramedBoxSpec |
|
687 | 1283 |
#name: 'framedBox1' |
1009 | 1284 |
#layout: #(#LayoutFrame 1 0.0 191 0 1 1.0 279 0) |
687 | 1285 |
#component: |
597 | 1286 |
#(#SpecCollection |
687 | 1287 |
#collection: |
597 | 1288 |
#( |
370 | 1289 |
#(#LabelSpec |
1009 | 1290 |
#name: 'ChoicesLabel' |
949
2e3469100a6a
fixed layout (change with framedBox - sigh)
Claus Gittinger <cg@exept.de>
parents:
894
diff
changeset
|
1291 |
#layout: #(#AlignmentOrigin 94 0 15 0 1 0.5) |
687 | 1292 |
#activeHelpKey: #valuesChoiceSelector |
1009 | 1293 |
#label: 'Choices:' |
687 | 1294 |
#adjust: #right |
1295 |
#resizeForLabel: true |
|
370 | 1296 |
) |
1297 |
#(#InputFieldSpec |
|
1009 | 1298 |
#name: 'ChoicesField' |
949
2e3469100a6a
fixed layout (change with framedBox - sigh)
Claus Gittinger <cg@exept.de>
parents:
894
diff
changeset
|
1299 |
#layout: #(#LayoutFrame 97 0 4 0 2 1.0 26 0) |
687 | 1300 |
#activeHelpKey: #valuesChoiceSelector |
1301 |
#tabable: true |
|
1302 |
#model: #choices |
|
1303 |
#type: #symbolOrNil |
|
1009 | 1304 |
#acceptOnLeave: false |
1064 | 1305 |
#modifiedChannel: #modifiedChannel |
1306 |
#acceptChannel: #acceptChannel |
|
1307 |
#acceptOnLostFocus: true |
|
1009 | 1308 |
) |
1309 |
#(#LabelSpec |
|
1310 |
#name: 'ShowInputFieldLabel' |
|
1311 |
#layout: #(#AlignmentOrigin 94 0 41 0 1 0.5) |
|
1312 |
#activeHelpKey: #showComboFieldSelector |
|
1313 |
#label: 'Editable:' |
|
1314 |
#adjust: #right |
|
1315 |
#resizeForLabel: true |
|
1316 |
) |
|
1317 |
#(#InputFieldSpec |
|
1318 |
#name: 'ShowInputFieldField' |
|
1319 |
#layout: #(#LayoutFrame 97 0 30 0 2 1.0 52 0) |
|
1320 |
#activeHelpKey: #showComboFieldSelector |
|
1321 |
#tabable: true |
|
1322 |
#model: #showComboFieldSelector |
|
1323 |
#type: #symbolOrNil |
|
b153d1426731
checkin from browser
Claus Gittinger <cg@e& |