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