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