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