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