author | Claus Gittinger <cg@exept.de> |
Fri, 17 Nov 2000 01:45:10 +0100 | |
changeset 1429 | 0fb6421a93e9 |
parent 1408 | c3cf368bccf1 |
child 1434 | 223936d0c28b |
permissions | -rw-r--r-- |
93 | 1 |
" |
182 | 2 |
COPYRIGHT (c) 1997 by Claus Gittinger / eXept Software AG |
987 | 3 |
All Rights Reserved |
182 | 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 |
||
1408 | 15 |
"{ Package: 'stx:libtool2' }" |
16 |
||
182 | 17 |
ApplicationModel subclass:#UISelectionPanel |
1142 | 18 |
instanceVariableNames:'gallery userClass userSpecs userLabels majorSelection |
19 |
clipBoardSpec' |
|
1044 | 20 |
classVariableNames:'UserClass UserSpecs UserLabels' |
21 |
poolDictionaries:'' |
|
22 |
category:'Interface-UIPainter' |
|
182 | 23 |
! |
24 |
||
387
8fa6afe1b929
allow dynamic change of user defined selectionPanel
Claus Gittinger <cg@exept.de>
parents:
359
diff
changeset
|
25 |
Object subclass:#UserDefinedGallery |
1044 | 26 |
instanceVariableNames:'' |
27 |
classVariableNames:'LabelList SelectorList HolderList NextUniqueNumber' |
|
28 |
poolDictionaries:'' |
|
29 |
privateIn:UISelectionPanel |
|
207
a31cc933368a
set user defined specification during initialization of class
ca
parents:
190
diff
changeset
|
30 |
! |
a31cc933368a
set user defined specification during initialization of class
ca
parents:
190
diff
changeset
|
31 |
|
182 | 32 |
!UISelectionPanel class methodsFor:'documentation'! |
33 |
||
34 |
copyright |
|
35 |
" |
|
36 |
COPYRIGHT (c) 1997 by Claus Gittinger / eXept Software AG |
|
987 | 37 |
All Rights Reserved |
93 | 38 |
|
39 |
This software is furnished under a license and may be used |
|
40 |
only in accordance with the terms of that license and with the |
|
41 |
inclusion of the above copyright notice. This software may not |
|
42 |
be provided or otherwise made available to, or used by, any |
|
43 |
other person. No title to or ownership of the software is |
|
44 |
hereby transferred. |
|
45 |
" |
|
46 |
||
47 |
||
48 |
! |
|
49 |
||
50 |
documentation |
|
51 |
" |
|
52 |
implements a selection panel, keeping widgets which could be placed |
|
53 |
into the UIPainter by drag & drop. |
|
54 |
||
182 | 55 |
[start with:] |
987 | 56 |
UISelectionPanel open |
182 | 57 |
|
93 | 58 |
[author:] |
987 | 59 |
Claus Gittinger |
60 |
Claus Atzkern |
|
93 | 61 |
|
62 |
[see also:] |
|
987 | 63 |
TabView |
64 |
NoteBookView |
|
65 |
UIGalleryView |
|
66 |
UIPainter |
|
104 | 67 |
|
93 | 68 |
" |
69 |
||
70 |
! ! |
|
71 |
||
207
a31cc933368a
set user defined specification during initialization of class
ca
parents:
190
diff
changeset
|
72 |
!UISelectionPanel class methodsFor:'initialization'! |
a31cc933368a
set user defined specification during initialization of class
ca
parents:
190
diff
changeset
|
73 |
|
a31cc933368a
set user defined specification during initialization of class
ca
parents:
190
diff
changeset
|
74 |
initialize |
a31cc933368a
set user defined specification during initialization of class
ca
parents:
190
diff
changeset
|
75 |
super initialize. |
387
8fa6afe1b929
allow dynamic change of user defined selectionPanel
Claus Gittinger <cg@exept.de>
parents:
359
diff
changeset
|
76 |
UserClass := UISelectionPanel::UserDefinedGallery. |
207
a31cc933368a
set user defined specification during initialization of class
ca
parents:
190
diff
changeset
|
77 |
UserSpecs := #listOfSelectors. |
a31cc933368a
set user defined specification during initialization of class
ca
parents:
190
diff
changeset
|
78 |
UserLabels := #listOfLabels. |
387
8fa6afe1b929
allow dynamic change of user defined selectionPanel
Claus Gittinger <cg@exept.de>
parents:
359
diff
changeset
|
79 |
|
8fa6afe1b929
allow dynamic change of user defined selectionPanel
Claus Gittinger <cg@exept.de>
parents:
359
diff
changeset
|
80 |
"Modified: / 8.12.1997 / 18:53:06 / cg" |
207
a31cc933368a
set user defined specification during initialization of class
ca
parents:
190
diff
changeset
|
81 |
! ! |
a31cc933368a
set user defined specification during initialization of class
ca
parents:
190
diff
changeset
|
82 |
|
182 | 83 |
!UISelectionPanel class methodsFor:'accessing'! |
93 | 84 |
|
182 | 85 |
specifications |
112 | 86 |
|
182 | 87 |
^ #( |
987 | 88 |
#( 'Standard' #( |
89 |
#('Buttons' standardButtons) |
|
90 |
#('Menus' standardMenus) |
|
91 |
#('Text' standardTexts) |
|
92 |
#('Lists' standardLists) |
|
1179 | 93 |
#('Trees' standardTrees) |
987 | 94 |
#('Groups' standardGroups) |
1168
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
95 |
#('Embed' standardEmbed) |
987 | 96 |
#('Misc' standardMisc) |
97 |
) |
|
98 |
) |
|
93 | 99 |
|
987 | 100 |
#( 'Clipboard' #( |
101 |
#('Copy & Paste Buffer' clipBoardSpec) |
|
102 |
) |
|
103 |
) |
|
135 | 104 |
|
987 | 105 |
#( 'User Def.' #userDefined ) |
182 | 106 |
) |
795
9987c25de0f9
ALWAYS USE DEFAULT FONTS !!!!!!!
Claus Gittinger <cg@exept.de>
parents:
753
diff
changeset
|
107 |
|
9987c25de0f9
ALWAYS USE DEFAULT FONTS !!!!!!!
Claus Gittinger <cg@exept.de>
parents:
753
diff
changeset
|
108 |
"Modified: / 21.4.1998 / 12:04:22 / cg" |
387
8fa6afe1b929
allow dynamic change of user defined selectionPanel
Claus Gittinger <cg@exept.de>
parents:
359
diff
changeset
|
109 |
! |
8fa6afe1b929
allow dynamic change of user defined selectionPanel
Claus Gittinger <cg@exept.de>
parents:
359
diff
changeset
|
110 |
|
8fa6afe1b929
allow dynamic change of user defined selectionPanel
Claus Gittinger <cg@exept.de>
parents:
359
diff
changeset
|
111 |
userClass |
8fa6afe1b929
allow dynamic change of user defined selectionPanel
Claus Gittinger <cg@exept.de>
parents:
359
diff
changeset
|
112 |
"return the class which provides the user defined gallery specs." |
8fa6afe1b929
allow dynamic change of user defined selectionPanel
Claus Gittinger <cg@exept.de>
parents:
359
diff
changeset
|
113 |
|
8fa6afe1b929
allow dynamic change of user defined selectionPanel
Claus Gittinger <cg@exept.de>
parents:
359
diff
changeset
|
114 |
^ UserClass |
8fa6afe1b929
allow dynamic change of user defined selectionPanel
Claus Gittinger <cg@exept.de>
parents:
359
diff
changeset
|
115 |
|
8fa6afe1b929
allow dynamic change of user defined selectionPanel
Claus Gittinger <cg@exept.de>
parents:
359
diff
changeset
|
116 |
"Created: / 5.12.1997 / 15:12:50 / cg" |
8fa6afe1b929
allow dynamic change of user defined selectionPanel
Claus Gittinger <cg@exept.de>
parents:
359
diff
changeset
|
117 |
! |
8fa6afe1b929
allow dynamic change of user defined selectionPanel
Claus Gittinger <cg@exept.de>
parents:
359
diff
changeset
|
118 |
|
8fa6afe1b929
allow dynamic change of user defined selectionPanel
Claus Gittinger <cg@exept.de>
parents:
359
diff
changeset
|
119 |
userClass:aClass specSelector:aSpecAccessSelector labelSelector:aLabelListAccessSelector |
8fa6afe1b929
allow dynamic change of user defined selectionPanel
Claus Gittinger <cg@exept.de>
parents:
359
diff
changeset
|
120 |
"change the class which provides the user defined gallery specs." |
8fa6afe1b929
allow dynamic change of user defined selectionPanel
Claus Gittinger <cg@exept.de>
parents:
359
diff
changeset
|
121 |
|
8fa6afe1b929
allow dynamic change of user defined selectionPanel
Claus Gittinger <cg@exept.de>
parents:
359
diff
changeset
|
122 |
UserClass := aClass. |
8fa6afe1b929
allow dynamic change of user defined selectionPanel
Claus Gittinger <cg@exept.de>
parents:
359
diff
changeset
|
123 |
UserSpecs := aSpecAccessSelector. |
8fa6afe1b929
allow dynamic change of user defined selectionPanel
Claus Gittinger <cg@exept.de>
parents:
359
diff
changeset
|
124 |
UserLabels := aLabelListAccessSelector. |
8fa6afe1b929
allow dynamic change of user defined selectionPanel
Claus Gittinger <cg@exept.de>
parents:
359
diff
changeset
|
125 |
|
8fa6afe1b929
allow dynamic change of user defined selectionPanel
Claus Gittinger <cg@exept.de>
parents:
359
diff
changeset
|
126 |
" |
8fa6afe1b929
allow dynamic change of user defined selectionPanel
Claus Gittinger <cg@exept.de>
parents:
359
diff
changeset
|
127 |
UISelectionPanel |
987 | 128 |
userClass:UISelectionPanel::VariableUserDefinedGallery |
129 |
specSelector:#listOfSelectors |
|
130 |
labelSelector:#listOfLabels |
|
387
8fa6afe1b929
allow dynamic change of user defined selectionPanel
Claus Gittinger <cg@exept.de>
parents:
359
diff
changeset
|
131 |
" |
8fa6afe1b929
allow dynamic change of user defined selectionPanel
Claus Gittinger <cg@exept.de>
parents:
359
diff
changeset
|
132 |
|
8fa6afe1b929
allow dynamic change of user defined selectionPanel
Claus Gittinger <cg@exept.de>
parents:
359
diff
changeset
|
133 |
"Modified: / 5.12.1997 / 13:54:47 / cg" |
8fa6afe1b929
allow dynamic change of user defined selectionPanel
Claus Gittinger <cg@exept.de>
parents:
359
diff
changeset
|
134 |
"Created: / 5.12.1997 / 13:56:10 / cg" |
93 | 135 |
! ! |
136 |
||
1297 | 137 |
!UISelectionPanel class methodsFor:'interface specs'! |
93 | 138 |
|
182 | 139 |
nameAndSelectorSpec |
93 | 140 |
"this window spec was automatically generated by the ST/X UIPainter" |
141 |
||
142 |
"do not manually edit this - the painter/builder may not be able to |
|
143 |
handle the specification if its corrupted." |
|
144 |
||
145 |
" |
|
182 | 146 |
UIPainter new openOnClass:UISelectionPanel andSelector:#nameAndSelectorSpec |
147 |
UISelectionPanel new openInterface:#nameAndSelectorSpec |
|
148 |
" |
|
149 |
||
150 |
<resource: #canvas> |
|
151 |
||
152 |
^ |
|
153 |
||
154 |
#(#FullSpec |
|
987 | 155 |
#window: |
156 |
#(#WindowSpec |
|
157 |
#name: 'uIPainterView' |
|
158 |
#layout: #(#LayoutFrame 110 0 366 0 424 0 581 0) |
|
159 |
#label: 'Painter' |
|
160 |
#min: #(#Point 10 10) |
|
161 |
#max: #(#Point 1280 1024) |
|
162 |
#bounds: #(#Rectangle 110 366 425 582) |
|
163 |
#usePreferredExtent: false |
|
164 |
) |
|
165 |
#component: |
|
166 |
#(#SpecCollection |
|
167 |
#collection: |
|
168 |
#( |
|
169 |
#(#LabelSpec |
|
170 |
#name: 'title' |
|
171 |
#layout: #(#Point 5 10) |
|
172 |
#label: 'Class & selectors to access user specs:' |
|
173 |
#adjust: #left |
|
174 |
#resizeForLabel: true |
|
175 |
) |
|
176 |
#(#LabelSpec |
|
177 |
#name: 'classLabel' |
|
178 |
#layout: #(#AlignmentOrigin 68 0.11 51 0 1 0.5) |
|
179 |
#label: 'Class:' |
|
180 |
#adjust: #right |
|
181 |
#resizeForLabel: true |
|
182 |
) |
|
183 |
#(#InputFieldSpec |
|
184 |
#name: 'classField' |
|
185 |
#layout: #(#LayoutFrame 74 0.11 39 0 -5 1.0 61 0) |
|
186 |
#tabable: true |
|
187 |
#model: #className |
|
188 |
#type: #string |
|
189 |
) |
|
190 |
#(#LabelSpec |
|
191 |
#name: 'labelsLabel' |
|
192 |
#layout: #(#AlignmentOrigin 68 0.11 74 0 1 0.5) |
|
193 |
#label: 'Labels:' |
|
194 |
#adjust: #right |
|
195 |
#resizeForLabel: true |
|
196 |
) |
|
197 |
#(#InputFieldSpec |
|
198 |
#name: 'labelsField' |
|
199 |
#layout: #(#LayoutFrame 74 0.11 64 0 -5 1.0 86 0) |
|
200 |
#tabable: true |
|
201 |
#model: #labelsKey |
|
202 |
#type: #symbolOrNil |
|
203 |
) |
|
204 |
#(#LabelSpec |
|
205 |
#name: 'specsLabel' |
|
206 |
#layout: #(#AlignmentOrigin 68 0.11 99 0 1 0.5) |
|
207 |
#label: 'Specifications:' |
|
208 |
#adjust: #right |
|
209 |
#resizeForLabel: true |
|
210 |
) |
|
211 |
#(#InputFieldSpec |
|
212 |
#name: 'specsField' |
|
213 |
#layout: #(#LayoutFrame 74 0.11 89 0 -5 1.0 111 0) |
|
214 |
#tabable: true |
|
215 |
#model: #specsKey |
|
216 |
#type: #symbolOrNil |
|
217 |
) |
|
218 |
#(#HorizontalPanelViewSpec |
|
219 |
#name: 'commitPanel' |
|
220 |
#layout: #(#LayoutFrame 0 0.0 -23 1.0 0 1.0 0 1.0) |
|
221 |
#component: |
|
222 |
#(#SpecCollection |
|
223 |
#collection: |
|
224 |
#( |
|
225 |
#(#ActionButtonSpec |
|
226 |
#name: 'cancel' |
|
227 |
#label: 'cancel' |
|
228 |
#tabable: true |
|
229 |
#model: #cancel |
|
230 |
#extent: #(#Point 153 23) |
|
231 |
) |
|
232 |
#(#ActionButtonSpec |
|
233 |
#name: 'accept' |
|
234 |
#label: 'ok' |
|
235 |
#tabable: true |
|
236 |
#model: #accept |
|
237 |
#isDefault: true |
|
238 |
#extent: #(#Point 153 23) |
|
239 |
) |
|
240 |
) |
|
241 |
) |
|
242 |
#horizontalLayout: #fitSpace |
|
243 |
#verticalLayout: #fit |
|
244 |
#horizontalSpace: 3 |
|
245 |
#verticalSpace: 3 |
|
246 |
) |
|
247 |
#(#CheckBoxSpec |
|
248 |
#name: 'updateDefaultResources' |
|
249 |
#layout: #(#Point 5 133) |
|
250 |
#model: #updateDefaultResources |
|
251 |
#label: 'Update Default Resources' |
|
252 |
) |
|
253 |
) |
|
254 |
) |
|
182 | 255 |
) |
256 |
! |
|
257 |
||
258 |
windowSpec |
|
985
ec4907d7cdfd
dont specify tabViews font - use default from styleSheet
Claus Gittinger <cg@exept.de>
parents:
962
diff
changeset
|
259 |
"This resource specification was automatically generated |
ec4907d7cdfd
dont specify tabViews font - use default from styleSheet
Claus Gittinger <cg@exept.de>
parents:
962
diff
changeset
|
260 |
by the UIPainter of ST/X." |
182 | 261 |
|
985
ec4907d7cdfd
dont specify tabViews font - use default from styleSheet
Claus Gittinger <cg@exept.de>
parents:
962
diff
changeset
|
262 |
"Do not manually edit this!! If it is corrupted, |
ec4907d7cdfd
dont specify tabViews font - use default from styleSheet
Claus Gittinger <cg@exept.de>
parents:
962
diff
changeset
|
263 |
the UIPainter may not be able to read the specification." |
182 | 264 |
|
265 |
" |
|
266 |
UIPainter new openOnClass:UISelectionPanel andSelector:#windowSpec |
|
267 |
UISelectionPanel new openInterface:#windowSpec |
|
985
ec4907d7cdfd
dont specify tabViews font - use default from styleSheet
Claus Gittinger <cg@exept.de>
parents:
962
diff
changeset
|
268 |
UISelectionPanel open |
182 | 269 |
" |
270 |
||
271 |
<resource: #canvas> |
|
272 |
||
1142 | 273 |
^ |
274 |
#(#FullSpec |
|
275 |
#name: #windowSpec |
|
276 |
#window: |
|
277 |
#(#WindowSpec |
|
278 |
#label: 'Widget Gallery' |
|
279 |
#name: 'Widget Gallery' |
|
1143
b04847a679fc
remove some labels from specs
Claus Gittinger <cg@exept.de>
parents:
1142
diff
changeset
|
280 |
#layout: #(#LayoutFrame 374 0 171 0 867 0 472 0) |
1142 | 281 |
#level: 0 |
282 |
#min: #(#Point 100 280) |
|
283 |
#max: #(#Point 1160 870) |
|
1143
b04847a679fc
remove some labels from specs
Claus Gittinger <cg@exept.de>
parents:
1142
diff
changeset
|
284 |
#bounds: #(#Rectangle 374 171 868 473) |
1142 | 285 |
#usePreferredExtent: false |
286 |
#returnIsOKInDialog: true |
|
287 |
#escapeIsCancelInDialog: true |
|
288 |
) |
|
289 |
#component: |
|
290 |
#(#SpecCollection |
|
291 |
#collection: #( |
|
292 |
#(#NoteBookViewSpec |
|
293 |
#name: 'NoteBook1' |
|
294 |
#layout: #(#LayoutFrame 0 0.0 0 0.0 0 1.0 0 1.0) |
|
295 |
#model: #majorChannel |
|
296 |
#menu: #majorList |
|
297 |
#direction: #right |
|
298 |
#useIndex: true |
|
299 |
#canvas: #gallery |
|
300 |
) |
|
301 |
) |
|
302 |
||
303 |
) |
|
182 | 304 |
) |
305 |
! ! |
|
306 |
||
307 |
!UISelectionPanel class methodsFor:'menus'! |
|
308 |
||
309 |
menuSelected |
|
359 | 310 |
|
311 |
<resource: #menu> |
|
312 |
||
182 | 313 |
^ #(#Menu #( |
987 | 314 |
#(#MenuItem |
315 |
#'label:' 'copy' |
|
316 |
#'value:' #copy |
|
317 |
) |
|
318 |
#(#MenuItem |
|
319 |
#'label:' 'cut' |
|
320 |
#'value:' #cut |
|
321 |
) |
|
322 |
) |
|
323 |
nil |
|
324 |
nil |
|
325 |
) |
|
182 | 326 |
|
359 | 327 |
"Modified: / 29.10.1997 / 03:20:30 / cg" |
182 | 328 |
! |
329 |
||
330 |
menuUnselected |
|
359 | 331 |
<resource: #menu> |
332 |
||
182 | 333 |
^ #(#Menu #( |
987 | 334 |
#(#MenuItem |
335 |
#'label:' 'paste' |
|
336 |
#'value:' #paste |
|
337 |
) |
|
338 |
) |
|
339 |
nil |
|
340 |
nil |
|
341 |
) |
|
182 | 342 |
|
359 | 343 |
"Modified: / 29.10.1997 / 03:20:38 / cg" |
182 | 344 |
! ! |
345 |
||
190 | 346 |
!UISelectionPanel class methodsFor:'standard specifications'! |
182 | 347 |
|
677 | 348 |
standardButtons |
753 | 349 |
"This resource specification was automatically generated |
350 |
by the UIPainter of ST/X." |
|
182 | 351 |
|
753 | 352 |
"Do not manually edit this!! If it is corrupted, |
353 |
the UIPainter may not be able to read the specification." |
|
182 | 354 |
|
355 |
" |
|
677 | 356 |
UIPainter new openOnClass:UISelectionPanel andSelector:#standardButtons |
357 |
UISelectionPanel new openInterface:#standardButtons |
|
658 | 358 |
" |
359 |
||
360 |
<resource: #canvas> |
|
361 |
||
1142 | 362 |
^ |
363 |
#(#FullSpec |
|
364 |
#name: #standardButtons |
|
365 |
#window: |
|
366 |
#(#WindowSpec |
|
367 |
#label: 'Buttons' |
|
368 |
#name: 'Buttons' |
|
369 |
#layout: #(#LayoutFrame 58 0 164 0 497 0 321 0) |
|
370 |
#level: 0 |
|
371 |
#min: #(#Point 10 10) |
|
372 |
#max: #(#Point 1280 1024) |
|
373 |
#bounds: #(#Rectangle 58 164 498 322) |
|
374 |
#usePreferredExtent: false |
|
375 |
#returnIsOKInDialog: true |
|
376 |
#escapeIsCancelInDialog: true |
|
377 |
) |
|
378 |
#component: |
|
379 |
#(#SpecCollection |
|
380 |
#collection: #( |
|
381 |
#(#ActionButtonSpec |
|
382 |
#label: 'Button' |
|
383 |
#name: 'Button' |
|
384 |
#layout: #(#LayoutFrame 2 0 1 0 127 0 23 0) |
|
385 |
#translateLabel: true |
|
386 |
) |
|
387 |
#(#ActionButtonSpec |
|
388 |
#label: 'OK' |
|
389 |
#name: 'Button - OK' |
|
390 |
#layout: #(#LayoutFrame 2 0 33 0 127 0 55 0) |
|
391 |
#translateLabel: true |
|
392 |
#model: #accept |
|
393 |
) |
|
394 |
#(#ActionButtonSpec |
|
395 |
#label: 'Cancel' |
|
396 |
#name: 'Button - Cancel' |
|
397 |
#layout: #(#LayoutFrame 2 0 65 0 127 0 87 0) |
|
398 |
#translateLabel: true |
|
399 |
#model: #cancel |
|
400 |
) |
|
401 |
#(#ActionButtonSpec |
|
402 |
#label: 'Help' |
|
403 |
#name: 'Button - Help' |
|
404 |
#layout: #(#LayoutFrame 2 0 97 0 127 0 119 0) |
|
405 |
#translateLabel: true |
|
406 |
#model: #help |
|
407 |
) |
|
408 |
#(#ActionButtonSpec |
|
409 |
#label: 'Close' |
|
410 |
#name: 'Button - Close' |
|
411 |
#layout: #(#LayoutFrame 2 0 129 0 127 0 151 0) |
|
412 |
#translateLabel: true |
|
413 |
#model: #closeRequest |
|
414 |
) |
|
415 |
#(#ToggleSpec |
|
416 |
#label: 'Toggle' |
|
417 |
#name: 'Toggle' |
|
418 |
#layout: #(#LayoutFrame 144 0 1 0 280 0 23 0) |
|
419 |
#translateLabel: true |
|
420 |
#isTriggerOnDown: true |
|
421 |
#lampColor: #(#Color 100.0 100.0 0.0) |
|
422 |
) |
|
423 |
#(#RadioButtonSpec |
|
424 |
#label: 'Radio Button' |
|
425 |
#name: 'Radio Button' |
|
426 |
#layout: #(#LayoutFrame 144 0.0 33 0 280 0 55 0) |
|
427 |
#translateLabel: true |
|
428 |
#isTriggerOnDown: true |
|
429 |
#lampColor: #(#Color 100.0 100.0 0.0) |
|
430 |
) |
|
431 |
#(#CheckBoxSpec |
|
432 |
#label: 'Check Box' |
|
433 |
#name: 'Check Box' |
|
434 |
#layout: #(#LayoutFrame 144 0 65 0 280 0 87 0) |
|
435 |
#translateLabel: true |
|
436 |
) |
|
437 |
#(#CheckToggleSpec |
|
438 |
#name: 'Check Toggle' |
|
439 |
#layout: #(#LayoutOrigin 144 0 99 0) |
|
440 |
#isTriggerOnDown: true |
|
441 |
#showLamp: false |
|
442 |
#lampColor: #(#Color 100.0 100.0 0.0) |
|
443 |
) |
|
444 |
#(#LabelSpec |
|
445 |
#label: 'Check Toggle' |
|
446 |
#name: 'CheckToggleLabel' |
|
447 |
#layout: #(#AlignmentOrigin 170 0 98 0 0 0) |
|
448 |
#resizeForLabel: true |
|
449 |
#adjust: #left |
|
450 |
#canUIDrag: false |
|
451 |
) |
|
452 |
#(#ButtonSpec |
|
453 |
#label: 'Model Button' |
|
454 |
#name: 'Model Button' |
|
455 |
#layout: #(#LayoutFrame 296 0 1 0 432 0 23 0) |
|
456 |
#translateLabel: true |
|
457 |
) |
|
458 |
#(#LabelSpec |
|
459 |
#label: 'Spin Button' |
|
460 |
#name: 'UpDownButtonLabel' |
|
461 |
#layout: #(#AlignmentOrigin 348 0 35 0 0 0) |
|
462 |
#resizeForLabel: true |
|
463 |
#adjust: #left |
|
464 |
#canUIDrag: false |
|
465 |
) |
|
466 |
#(#UpDownButtonSpec |
|
467 |
#name: 'UpDown Button' |
|
468 |
#layout: #(#LayoutFrame 296 0 33 0 341 0 55 0) |
|
469 |
#orientation: #horizontal |
|
470 |
) |
|
471 |
#(#LabelSpec |
|
472 |
#label: 'Arrow Button' |
|
473 |
#name: 'ArrowButtonsLabel' |
|
474 |
#layout: #(#AlignmentOrigin 348 0 69 0 0 0) |
|
475 |
#resizeForLabel: true |
|
476 |
#adjust: #left |
|
477 |
#canUIDrag: false |
|
478 |
) |
|
479 |
#(#ArrowButtonSpec |
|
480 |
#name: 'Arrow Button' |
|
481 |
#layout: #(#LayoutFrame 296 0 65 0 318 0 87 0) |
|
482 |
#isTriggerOnDown: true |
|
483 |
#direction: #right |
|
484 |
) |
|
485 |
) |
|
486 |
||
487 |
) |
|
677 | 488 |
) |
489 |
! |
|
490 |
||
1168
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
491 |
standardEmbed |
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
492 |
"This resource specification was automatically generated |
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
493 |
by the UIPainter of ST/X." |
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
494 |
|
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
495 |
"Do not manually edit this!! If it is corrupted, |
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
496 |
the UIPainter may not be able to read the specification." |
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
497 |
|
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
498 |
" |
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
499 |
UIPainter new openOnClass:UISelectionPanel andSelector:#standardEmbed |
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
500 |
UISelectionPanel new openInterface:#standardEmbed |
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
501 |
" |
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
502 |
|
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
503 |
<resource: #canvas> |
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
504 |
|
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
505 |
^ |
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
506 |
#(#FullSpec |
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
507 |
#name: #standardEmbed |
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
508 |
#window: |
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
509 |
#(#WindowSpec |
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
510 |
#label: 'Misc' |
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
511 |
#name: 'Misc' |
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
512 |
#layout: #(#LayoutFrame 125 0 152 0 566 0 374 0) |
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
513 |
#level: 0 |
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
514 |
#min: #(#Point 10 10) |
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
515 |
#max: #(#Point 1280 1024) |
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
516 |
#bounds: #(#Rectangle 125 152 567 375) |
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
517 |
#usePreferredExtent: false |
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
518 |
#returnIsOKInDialog: true |
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
519 |
#escapeIsCancelInDialog: true |
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
520 |
) |
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
521 |
#component: |
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
522 |
#(#SpecCollection |
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
523 |
#collection: #( |
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
524 |
#(#ArbitraryComponentSpec |
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
525 |
#name: 'Arbitrary Component' |
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
526 |
#layout: #(#LayoutFrame 3 0 3 0 128 0 104 0) |
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
527 |
#hasBorder: false |
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
528 |
) |
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
529 |
#(#LabelSpec |
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
530 |
#label: 'Arbitrary' |
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
531 |
#name: 'ArbitraryComponentLabel1' |
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
532 |
#layout: #(#AlignmentOrigin 7 0 7 0 0 0) |
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
533 |
#style: #(#FontDescription #helvetica #medium #roman 10) |
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
534 |
#resizeForLabel: true |
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
535 |
#adjust: #left |
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
536 |
#canUIDrag: false |
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
537 |
) |
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
538 |
#(#LabelSpec |
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
539 |
#label: 'Component' |
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
540 |
#name: 'ArbitraryComponentLabel2' |
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
541 |
#layout: #(#AlignmentOrigin 7 0 31 0 0 0) |
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
542 |
#style: #(#FontDescription #helvetica #medium #roman 10) |
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
543 |
#resizeForLabel: true |
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
544 |
#adjust: #left |
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
545 |
#canUIDrag: false |
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
546 |
) |
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
547 |
#(#UISubSpecification |
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
548 |
#name: 'SubSpecification' |
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
549 |
#layout: #(#LayoutFrame 145 0 3 0 280 0 104 0) |
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
550 |
) |
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
551 |
#(#LabelSpec |
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
552 |
#label: 'SubSpecification' |
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
553 |
#name: 'SubSpecificationLabel' |
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
554 |
#layout: #(#Point 149 7) |
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
555 |
#style: #(#FontDescription #helvetica #medium #roman 10) |
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
556 |
#resizeForLabel: true |
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
557 |
#canUIDrag: false |
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
558 |
) |
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
559 |
#(#SubCanvasSpec |
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
560 |
#name: 'SubCanvas' |
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
561 |
#layout: #(#LayoutFrame 297 0 3 0 433 0 104 0) |
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
562 |
#hasHorizontalScrollBar: true |
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
563 |
#hasVerticalScrollBar: true |
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
564 |
) |
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
565 |
#(#LabelSpec |
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
566 |
#label: 'SubCanvas' |
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
567 |
#name: 'SubCanvasLabel' |
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
568 |
#layout: #(#AlignmentOrigin 324 0 7 0 0 0) |
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
569 |
#style: #(#FontDescription #helvetica #medium #roman 10) |
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
570 |
#resizeForLabel: true |
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
571 |
#adjust: #left |
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
572 |
#canUIDrag: false |
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
573 |
) |
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
574 |
) |
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
575 |
|
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
576 |
) |
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
577 |
) |
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
578 |
! |
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
579 |
|
677 | 580 |
standardGraphs |
1142 | 581 |
"This resource specification was automatically generated |
582 |
by the UIPainter of ST/X." |
|
677 | 583 |
|
1142 | 584 |
"Do not manually edit this!! If it is corrupted, |
585 |
the UIPainter may not be able to read the specification." |
|
677 | 586 |
|
587 |
" |
|
588 |
UIPainter new openOnClass:UISelectionPanel andSelector:#standardGraphs |
|
589 |
UISelectionPanel new openInterface:#standardGraphs |
|
590 |
" |
|
591 |
||
592 |
<resource: #canvas> |
|
593 |
||
1142 | 594 |
^ |
595 |
#(#FullSpec |
|
596 |
#name: #standardGraphs |
|
597 |
#window: |
|
598 |
#(#WindowSpec |
|
599 |
#label: 'Graphs' |
|
600 |
#name: 'Graphs' |
|
601 |
#layout: #(#LayoutFrame 81 0 219 0 519 0 333 0) |
|
602 |
#level: 0 |
|
603 |
#min: #(#Point 10 10) |
|
604 |
#max: #(#Point 1280 1024) |
|
605 |
#bounds: #(#Rectangle 81 219 520 334) |
|
606 |
#usePreferredExtent: false |
|
607 |
#returnIsOKInDialog: true |
|
608 |
#escapeIsCancelInDialog: true |
|
609 |
) |
|
610 |
#component: |
|
611 |
#(#SpecCollection |
|
612 |
#collection: #( |
|
613 |
#(#GraphColumnView2DSpec |
|
614 |
#name: 'GraphColumnView2D' |
|
615 |
#layout: #(#LayoutFrame 3 0 3 0 208 0 98 0) |
|
616 |
#gridX: 0 |
|
617 |
#gridY: 0 |
|
618 |
) |
|
619 |
#(#LabelSpec |
|
620 |
#label: 'GraphColumnViewView2D' |
|
621 |
#name: 'GraphColumnView2DLabel' |
|
622 |
#layout: #(#AlignmentOrigin 7 0 7 0 0 0) |
|
623 |
#style: #(#FontDescription #helvetica #medium #roman 10) |
|
624 |
#resizeForLabel: true |
|
625 |
#adjust: #left |
|
626 |
#canUIDrag: false |
|
627 |
) |
|
628 |
#(#GraphColumnView3DSpec |
|
629 |
#name: 'GraphColumnView3D' |
|
630 |
#layout: #(#LayoutFrame 228 0 3 0 433 0 98 0) |
|
631 |
) |
|
632 |
#(#LabelSpec |
|
633 |
#label: 'GraphColumnViewView3D' |
|
634 |
#name: 'GraphColumnView3DLabel' |
|
635 |
#layout: #(#AlignmentOrigin 232 0 7 0 0 0) |
|
636 |
#style: #(#FontDescription #helvetica #medium #roman 10) |
|
637 |
#resizeForLabel: true |
|
638 |
#adjust: #left |
|
639 |
#canUIDrag: false |
|
640 |
) |
|
641 |
) |
|
642 |
||
643 |
) |
|
677 | 644 |
) |
645 |
! |
|
646 |
||
647 |
standardGroups |
|
1142 | 648 |
"This resource specification was automatically generated |
649 |
by the UIPainter of ST/X." |
|
677 | 650 |
|
1142 | 651 |
"Do not manually edit this!! If it is corrupted, |
652 |
the UIPainter may not be able to read the specification." |
|
677 | 653 |
|
654 |
" |
|
655 |
UIPainter new openOnClass:UISelectionPanel andSelector:#standardGroups |
|
656 |
UISelectionPanel new openInterface:#standardGroups |
|
657 |
" |
|
658 |
||
659 |
<resource: #canvas> |
|
660 |
||
1142 | 661 |
^ |
662 |
#(#FullSpec |
|
663 |
#name: #standardGroups |
|
664 |
#window: |
|
665 |
#(#WindowSpec |
|
666 |
#label: 'Groups' |
|
667 |
#name: 'Groups' |
|
668 |
#layout: #(#LayoutFrame 92 0 174 0 534 0 395 0) |
|
669 |
#level: 0 |
|
670 |
#min: #(#Point 10 10) |
|
671 |
#max: #(#Point 1280 1024) |
|
672 |
#bounds: #(#Rectangle 92 174 535 396) |
|
673 |
#usePreferredExtent: false |
|
674 |
#returnIsOKInDialog: true |
|
675 |
#escapeIsCancelInDialog: true |
|
676 |
) |
|
677 |
#component: |
|
678 |
#(#SpecCollection |
|
679 |
#collection: #( |
|
680 |
#(#ViewSpec |
|
681 |
#name: 'Box' |
|
682 |
#layout: #(#LayoutFrame 3 0 3 0 208 0 98 0) |
|
683 |
) |
|
684 |
#(#LabelSpec |
|
685 |
#label: 'Box' |
|
686 |
#name: 'ViewLabel' |
|
687 |
#layout: #(#AlignmentOrigin 6 0 5 0 0 0) |
|
688 |
#style: #(#FontDescription #helvetica #medium #roman 10) |
|
689 |
#resizeForLabel: true |
|
690 |
#adjust: #left |
|
691 |
#canUIDrag: false |
|
692 |
) |
|
693 |
#(#LabelSpec |
|
694 |
#label: 'Variable Panels' |
|
695 |
#name: 'VPanelLabel' |
|
696 |
#layout: #(#LayoutFrame 3 0 104 0 208 0 127 0) |
|
697 |
#style: #(#FontDescription #helvetica #medium #roman 10) |
|
698 |
#adjust: #left |
|
699 |
#canUIDrag: false |
|
700 |
) |
|
701 |
#(#VariableHorizontalPanelSpec |
|
702 |
#name: 'Variable Horizontal Panel' |
|
703 |
#layout: #(#LayoutFrame 3 0 128 0 98 0 218 0) |
|
704 |
#handles: #(#Any 0.5 1.0) |
|
705 |
#component: |
|
706 |
#(#SpecCollection |
|
707 |
#collection: #( |
|
987 | 708 |
#(#LabelSpec |
1142 | 709 |
#label: 'A' |
710 |
#name: 'label4' |
|
711 |
#level: 2 |
|
712 |
#style: #(#FontDescription #helvetica #medium #roman 12) |
|
987 | 713 |
#canUIDrag: false |
1142 | 714 |
) |
987 | 715 |
#(#LabelSpec |
1142 | 716 |
#label: 'B' |
717 |
#name: 'label5' |
|
718 |
#level: 2 |
|
719 |
#style: #(#FontDescription #helvetica #medium #roman 12) |
|
720 |
#canUIDrag: false |
|
721 |
) |
|
722 |
) |
|
723 |
||
724 |
) |
|
725 |
) |
|
726 |
#(#VariableVerticalPanelSpec |
|
727 |
#name: 'Variable Vertical Panel' |
|
728 |
#layout: #(#LayoutFrame 113 0 128 0 208 0 218 0) |
|
729 |
#handles: #(#Any 0.5 1.0) |
|
730 |
#component: |
|
731 |
#(#SpecCollection |
|
732 |
#collection: #( |
|
733 |
#(#LabelSpec |
|
734 |
#label: 'A' |
|
735 |
#name: 'label9' |
|
736 |
#level: 2 |
|
737 |
#style: #(#FontDescription #helvetica #medium #roman 12) |
|
738 |
#canUIDrag: false |
|
739 |
) |
|
740 |
#(#LabelSpec |
|
741 |
#label: 'B' |
|
742 |
#name: 'label10' |
|
743 |
#level: 2 |
|
744 |
#style: #(#FontDescription #helvetica #medium #roman 12) |
|
987 | 745 |
#canUIDrag: false |
1142 | 746 |
) |
747 |
) |
|
748 |
||
749 |
) |
|
750 |
) |
|
751 |
#(#FramedBoxSpec |
|
752 |
#label: 'Framed Box' |
|
753 |
#name: 'Framed Box' |
|
754 |
#layout: #(#LayoutFrame 228 0 3 0 433 0 98 0) |
|
755 |
#labelPosition: #topLeft |
|
756 |
#translateLabel: true |
|
757 |
) |
|
758 |
#(#LabelSpec |
|
759 |
#label: 'Panels' |
|
760 |
#name: 'PanelLabel' |
|
761 |
#layout: #(#LayoutFrame 228 0 104 0 433 0 127 0) |
|
762 |
#style: #(#FontDescription #helvetica #medium #roman 10) |
|
763 |
#adjust: #left |
|
764 |
#canUIDrag: false |
|
765 |
) |
|
766 |
#(#HorizontalPanelViewSpec |
|
767 |
#name: 'Horizontal Panel' |
|
768 |
#layout: #(#LayoutFrame 228 0 128 0 312 0 218 0) |
|
769 |
#horizontalLayout: #center |
|
770 |
#verticalLayout: #center |
|
771 |
#horizontalSpace: 3 |
|
772 |
#verticalSpace: 3 |
|
773 |
#component: |
|
774 |
#(#SpecCollection |
|
775 |
#collection: #( |
|
776 |
#(#LabelSpec |
|
777 |
#label: 'A' |
|
778 |
#name: 'label1' |
|
779 |
#level: 2 |
|
780 |
#style: #(#FontDescription #helvetica #medium #roman 12) |
|
781 |
#extent: #(#Point 23 23) |
|
782 |
#canUIDrag: false |
|
783 |
) |
|
784 |
#(#LabelSpec |
|
785 |
#label: 'B' |
|
786 |
#name: 'label2' |
|
787 |
#level: 2 |
|
788 |
#style: #(#FontDescription #helvetica #medium #roman 12) |
|
789 |
#extent: #(#Point 23 23) |
|
790 |
#canUIDrag: false |
|
791 |
) |
|
792 |
#(#LabelSpec |
|
793 |
#label: 'C' |
|
794 |
#name: 'label3' |
|
795 |
#level: 2 |
|
796 |
#style: #(#FontDescription #helvetica #medium #roman 12) |
|
797 |
#extent: #(#Point 23 23) |
|
798 |
#canUIDrag: false |
|
799 |
) |
|
800 |
) |
|
801 |
||
987 | 802 |
) |
1142 | 803 |
) |
804 |
#(#VerticalPanelViewSpec |
|
805 |
#name: 'Vertical Panel' |
|
806 |
#layout: #(#LayoutFrame 320 0 128 0 367 0 218 0) |
|
807 |
#horizontalLayout: #center |
|
808 |
#verticalLayout: #center |
|
809 |
#horizontalSpace: 3 |
|
810 |
#verticalSpace: 3 |
|
811 |
#component: |
|
812 |
#(#SpecCollection |
|
813 |
#collection: #( |
|
814 |
#(#LabelSpec |
|
815 |
#label: 'A' |
|
816 |
#name: 'label6' |
|
817 |
#level: 2 |
|
818 |
#style: #(#FontDescription #helvetica #medium #roman 12) |
|
819 |
#extent: #(#Point 23 23) |
|
820 |
#canUIDrag: false |
|
821 |
) |
|
822 |
#(#LabelSpec |
|
823 |
#label: 'B' |
|
824 |
#name: 'label7' |
|
825 |
#level: 2 |
|
826 |
#style: #(#FontDescription #helvetica #medium #roman 12) |
|
827 |
#extent: #(#Point 23 23) |
|
828 |
#canUIDrag: false |
|
829 |
) |
|
830 |
#(#LabelSpec |
|
831 |
#label: 'C' |
|
832 |
#name: 'label8' |
|
833 |
#level: 2 |
|
834 |
#style: #(#FontDescription #helvetica #medium #roman 12) |
|
835 |
#extent: #(#Point 23 23) |
|
836 |
#canUIDrag: false |
|
837 |
) |
|
838 |
) |
|
839 |
||
840 |
) |
|
841 |
) |
|
842 |
#(#PanelViewSpec |
|
843 |
#name: 'Panel' |
|
844 |
#layout: #(#LayoutFrame 375 0 128 0 433 0 218 0) |
|
845 |
#horizontalLayout: #fitSpace |
|
846 |
#verticalLayout: #fitSpace |
|
847 |
#horizontalSpace: 3 |
|
848 |
#verticalSpace: 3 |
|
849 |
#component: |
|
850 |
#(#SpecCollection |
|
851 |
#collection: #( |
|
852 |
#(#LabelSpec |
|
853 |
#label: 'A' |
|
854 |
#name: 'label11' |
|
855 |
#level: 2 |
|
856 |
#style: #(#FontDescription #helvetica #medium #roman 12) |
|
857 |
#extent: #(#Point 23 23) |
|
858 |
#canUIDrag: false |
|
859 |
) |
|
860 |
#(#LabelSpec |
|
861 |
#label: 'B' |
|
862 |
#name: 'label12' |
|
863 |
#level: 2 |
|
864 |
#style: #(#FontDescription #helvetica #medium #roman 12) |
|
865 |
#extent: #(#Point 23 23) |
|
866 |
#canUIDrag: false |
|
867 |
) |
|
868 |
#(#LabelSpec |
|
869 |
#label: 'C' |
|
870 |
#name: 'label13' |
|
871 |
#level: 2 |
|
872 |
#style: #(#FontDescription #helvetica #medium #roman 12) |
|
873 |
#extent: #(#Point 23 23) |
|
874 |
#canUIDrag: false |
|
875 |
) |
|
876 |
#(#LabelSpec |
|
877 |
#label: 'D' |
|
878 |
#name: 'label14' |
|
879 |
#level: 2 |
|
880 |
#style: #(#FontDescription #helvetica #medium #roman 12) |
|
881 |
#extent: #(#Point 23 23) |
|
882 |
#canUIDrag: false |
|
883 |
) |
|
884 |
#(#LabelSpec |
|
885 |
#label: 'E' |
|
886 |
#name: 'label15' |
|
887 |
#level: 2 |
|
888 |
#style: #(#FontDescription #helvetica #medium #roman 12) |
|
889 |
#extent: #(#Point 23 23) |
|
890 |
#canUIDrag: false |
|
891 |
) |
|
892 |
) |
|
893 |
||
894 |
) |
|
895 |
) |
|
896 |
) |
|
897 |
||
898 |
) |
|
658 | 899 |
) |
900 |
! |
|
901 |
||
902 |
standardLists |
|
797 | 903 |
"This resource specification was automatically generated |
904 |
by the UIPainter of ST/X." |
|
142 | 905 |
|
797 | 906 |
"Do not manually edit this!! If it is corrupted, |
907 |
the UIPainter may not be able to read the specification." |
|
142 | 908 |
|
909 |
" |
|
658 | 910 |
UIPainter new openOnClass:UISelectionPanel andSelector:#standardLists |
911 |
UISelectionPanel new openInterface:#standardLists |
|
142 | 912 |
" |
913 |
||
914 |
<resource: #canvas> |
|
915 |
||
1142 | 916 |
^ |
917 |
#(#FullSpec |
|
918 |
#name: #standardLists |
|
919 |
#window: |
|
920 |
#(#WindowSpec |
|
921 |
#label: 'Lists' |
|
922 |
#name: 'Lists' |
|
1179 | 923 |
#layout: #(#LayoutFrame 61 0 96 0 501 0 313 0) |
1142 | 924 |
#min: #(#Point 10 10) |
925 |
#max: #(#Point 1280 1024) |
|
1179 | 926 |
#bounds: #(#Rectangle 61 96 502 314) |
1142 | 927 |
) |
928 |
#component: |
|
929 |
#(#SpecCollection |
|
930 |
#collection: #( |
|
931 |
#(#SequenceViewSpec |
|
932 |
#name: 'List' |
|
1143
b04847a679fc
remove some labels from specs
Claus Gittinger <cg@exept.de>
parents:
1142
diff
changeset
|
933 |
#layout: #(#LayoutFrame 3 0 3 0 208 0 101 0) |
1142 | 934 |
#hasHorizontalScrollBar: true |
935 |
#hasVerticalScrollBar: true |
|
936 |
#useIndex: false |
|
937 |
) |
|
938 |
#(#DataSetSpec |
|
939 |
#name: 'Table' |
|
1143
b04847a679fc
remove some labels from specs
Claus Gittinger <cg@exept.de>
parents:
1142
diff
changeset
|
940 |
#layout: #(#LayoutFrame 228 0 3 0 433 0 101 0) |
1142 | 941 |
#hasHorizontalScrollBar: true |
942 |
#hasVerticalScrollBar: true |
|
943 |
#has3Dsepartors: false |
|
944 |
) |
|
1179 | 945 |
#(#SelectionInListModelViewSpec |
946 |
#name: 'New SelectionInListView' |
|
947 |
#layout: #(#LayoutFrame 3 0 110 0 208 0 208 0) |
|
1142 | 948 |
#hasHorizontalScrollBar: true |
949 |
#hasVerticalScrollBar: true |
|
1179 | 950 |
#useIndex: false |
1142 | 951 |
) |
952 |
) |
|
953 |
||
954 |
) |
|
182 | 955 |
) |
956 |
! |
|
957 |
||
190 | 958 |
standardMenus |
753 | 959 |
"This resource specification was automatically generated |
960 |
by the UIPainter of ST/X." |
|
182 | 961 |
|
753 | 962 |
"Do not manually edit this!! If it is corrupted, |
963 |
the UIPainter may not be able to read the specification." |
|
182 | 964 |
|
965 |
" |
|
302 | 966 |
UIPainter new openOnClass:UISelectionPanel andSelector:#standardMenus |
967 |
UISelectionPanel new openInterface:#standardMenus |
|
182 | 968 |
" |
969 |
||
970 |
<resource: #canvas> |
|
971 |
||
1142 | 972 |
^ |
973 |
#(#FullSpec |
|
974 |
#name: #standardMenus |
|
975 |
#window: |
|
976 |
#(#WindowSpec |
|
977 |
#label: 'Menus' |
|
978 |
#name: 'Menus' |
|
1168
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
979 |
#layout: #(#LayoutFrame 162 0 182 0 638 0 404 0) |
1142 | 980 |
#min: #(#Point 10 10) |
981 |
#max: #(#Point 1280 1024) |
|
1168
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
982 |
#bounds: #(#Rectangle 162 182 639 405) |
1142 | 983 |
) |
984 |
#component: |
|
985 |
#(#SpecCollection |
|
986 |
#collection: #( |
|
987 |
#(#MenuPanelSpec |
|
988 |
#name: 'Tool Bar' |
|
989 |
#layout: #(#LayoutFrame 4 0 134 0 129 0 166 0) |
|
990 |
#textDefault: true |
|
991 |
) |
|
992 |
#(#LabelSpec |
|
993 |
#label: 'Tool Bar' |
|
994 |
#name: 'ToolBarLabel' |
|
995 |
#layout: #(#AlignmentOrigin 4 0 134 0 0 1) |
|
996 |
#style: #(#FontDescription #helvetica #medium #roman 10) |
|
997 |
#resizeForLabel: true |
|
998 |
#adjust: #left |
|
999 |
#canUIDrag: false |
|
1000 |
) |
|
1001 |
#(#MenuPanelSpec |
|
1002 |
#name: 'Menu Bar' |
|
1168
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
1003 |
#layout: #(#LayoutFrame 4 0 188 0 129 0 210 0) |
1142 | 1004 |
) |
1005 |
#(#LabelSpec |
|
1006 |
#label: 'Menu Bar' |
|
1007 |
#name: 'MenuBarLabel' |
|
1168
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
1008 |
#layout: #(#AlignmentOrigin 4 0 187 0 0 1) |
1142 | 1009 |
#style: #(#FontDescription #helvetica #medium #roman 10) |
1010 |
#resizeForLabel: true |
|
1011 |
#adjust: #left |
|
1012 |
#canUIDrag: false |
|
1013 |
) |
|
1014 |
#(#PopUpListSpec |
|
1015 |
#label: 'PopUp List' |
|
1016 |
#name: 'PopUp List' |
|
1017 |
#layout: #(#LayoutFrame 4 0 3 0 129 0 25 0) |
|
1018 |
#useIndex: false |
|
1019 |
) |
|
1020 |
#(#ComboListSpec |
|
1021 |
#name: 'Combo List' |
|
1022 |
#layout: #(#LayoutFrame 4 0 33 0 129 0 53 0) |
|
1023 |
#useIndex: false |
|
1024 |
) |
|
1025 |
#(#ComboBoxSpec |
|
1026 |
#name: 'Combo Box' |
|
1027 |
#layout: #(#LayoutFrame 4 0 61 0 129 0 81 0) |
|
1168
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
1028 |
#acceptOnPointerLeave: false |
1142 | 1029 |
) |
1030 |
#(#ExtendedComboBoxSpec |
|
1031 |
#name: 'Extended Combo Box' |
|
1032 |
#layout: #(#LayoutFrame 4 0 88 0 129 0 108 0) |
|
1033 |
#miniScrollerHorizontal: true |
|
1034 |
) |
|
1035 |
#(#TabViewSpec |
|
1036 |
#name: 'Tab Header' |
|
1037 |
#layout: #(#LayoutFrame 146 0 3 0 281 0 39 0) |
|
1038 |
) |
|
1039 |
#(#NoteBookViewSpec |
|
1040 |
#name: 'Note Book' |
|
1041 |
#layout: #(#LayoutFrame 146 0 46 0 281 0 138 0) |
|
1042 |
) |
|
1043 |
#(#UIGalleryViewSpec |
|
1044 |
#name: 'Gallery' |
|
1045 |
#layout: #(#LayoutFrame 298 0 3 0 434 0 138 0) |
|
1046 |
) |
|
1047 |
) |
|
1048 |
||
1049 |
) |
|
142 | 1050 |
) |
1051 |
! |
|
1052 |
||
658 | 1053 |
standardMisc |
753 | 1054 |
"This resource specification was automatically generated |
1055 |
by the UIPainter of ST/X." |
|
93 | 1056 |
|
753 | 1057 |
"Do not manually edit this!! If it is corrupted, |
1058 |
the UIPainter may not be able to read the specification." |
|
93 | 1059 |
|
1060 |
" |
|
1178
b348c8e9a1c7
made ScrollBars and Scrollers invisible;
Claus Gittinger <cg@exept.de>
parents:
1175
diff
changeset
|
1061 |
UIPainter new openOnClass:Smalltalk::UISelectionPanel andSelector:#standardMisc |
b348c8e9a1c7
made ScrollBars and Scrollers invisible;
Claus Gittinger <cg@exept.de>
parents:
1175
diff
changeset
|
1062 |
Smalltalk::UISelectionPanel new openInterface:#standardMisc |
93 | 1063 |
" |
1064 |
||
1065 |
<resource: #canvas> |
|
1066 |
||
1142 | 1067 |
^ |
1068 |
#(#FullSpec |
|
1069 |
#name: #standardMisc |
|
1070 |
#window: |
|
1071 |
#(#WindowSpec |
|
1175 | 1072 |
#label: 'NewApplication' |
1073 |
#name: 'NewApplication' |
|
1178
b348c8e9a1c7
made ScrollBars and Scrollers invisible;
Claus Gittinger <cg@exept.de>
parents:
1175
diff
changeset
|
1074 |
#layout: #(#LayoutFrame 44 0 195 0 482 0 437 0) |
1142 | 1075 |
#min: #(#Point 10 10) |
1076 |
#max: #(#Point 1280 1024) |
|
1178
b348c8e9a1c7
made ScrollBars and Scrollers invisible;
Claus Gittinger <cg@exept.de>
parents:
1175
diff
changeset
|
1077 |
#bounds: #(#Rectangle 44 195 483 438) |
1142 | 1078 |
) |
1079 |
#component: |
|
1080 |
#(#SpecCollection |
|
1081 |
#collection: #( |
|
1082 |
#(#LabelSpec |
|
1168
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
1083 |
#label: 'StepSlider' |
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
1084 |
#name: 'StepSliderLabel' |
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
1085 |
#layout: #(#AlignmentOrigin 87 0 9 0 1 0) |
1142 | 1086 |
#style: #(#FontDescription #helvetica #medium #roman 10) |
1087 |
#resizeForLabel: true |
|
1088 |
#canUIDrag: false |
|
1089 |
) |
|
1168
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
1090 |
#(#SteppingSliderSpec |
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
1091 |
#name: 'StepSlider' |
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
1092 |
#layout: #(#LayoutFrame 88 0 7 0 203 0 25 0) |
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
1093 |
#orientation: #horizontal |
1142 | 1094 |
) |
1095 |
#(#LabelSpec |
|
1096 |
#label: 'Slider' |
|
1097 |
#name: 'SliderLabel' |
|
1168
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
1098 |
#layout: #(#AlignmentOrigin 87 0 35 0 1 0) |
1142 | 1099 |
#style: #(#FontDescription #helvetica #medium #roman 10) |
1100 |
#resizeForLabel: true |
|
1101 |
#canUIDrag: false |
|
1102 |
) |
|
1103 |
#(#SliderSpec |
|
1104 |
#name: 'Slider' |
|
1168
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
1105 |
#layout: #(#LayoutFrame 88 0 34 0 203 0 52 0) |
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
1106 |
#orientation: #horizontal |
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
1107 |
) |
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
1108 |
#(#LabelSpec |
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
1109 |
#label: 'ThumbWheel' |
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
1110 |
#name: 'ThumbWheelLabel' |
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
1111 |
#layout: #(#AlignmentOrigin 88 0 62 0 1 0) |
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
1112 |
#style: #(#FontDescription #helvetica #medium #roman 10) |
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
1113 |
#resizeForLabel: true |
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
1114 |
#canUIDrag: false |
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
1115 |
) |
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
1116 |
#(#ThumbWheelSpec |
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
1117 |
#name: 'Thumb Wheel' |
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
1118 |
#layout: #(#LayoutFrame 88 0 60 0 203 0 80 0) |
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
1119 |
#orientation: #horizontal |
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
1120 |
) |
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
1121 |
#(#LabelSpec |
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
1122 |
#label: 'ScrollBar' |
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
1123 |
#name: 'ScrollBarLabel' |
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
1124 |
#layout: #(#AlignmentOrigin 87 0 103 0 1 0) |
1178
b348c8e9a1c7
made ScrollBars and Scrollers invisible;
Claus Gittinger <cg@exept.de>
parents:
1175
diff
changeset
|
1125 |
#initiallyInvisible: true |
1168
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
1126 |
#style: #(#FontDescription #helvetica #medium #roman 10) |
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
1127 |
#resizeForLabel: true |
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
1128 |
#canUIDrag: false |
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
1129 |
) |
1142 | 1130 |
#(#LabelSpec |
1160 | 1131 |
#label: 'Scroller' |
1132 |
#name: 'ScrollerLabel' |
|
1168
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
1133 |
#layout: #(#AlignmentOrigin 87 0 130 0 1 0) |
1178
b348c8e9a1c7
made ScrollBars and Scrollers invisible;
Claus Gittinger <cg@exept.de>
parents:
1175
diff
changeset
|
1134 |
#initiallyInvisible: true |
1160 | 1135 |
#style: #(#FontDescription #helvetica #medium #roman 10) |
1136 |
#resizeForLabel: true |
|
1137 |
#canUIDrag: false |
|
1138 |
) |
|
1139 |
#(#ScrollerSpec |
|
1140 |
#name: 'Scroller' |
|
1168
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
1141 |
#layout: #(#LayoutFrame 88 0 127 0 203 0 145 0) |
1178
b348c8e9a1c7
made ScrollBars and Scrollers invisible;
Claus Gittinger <cg@exept.de>
parents:
1175
diff
changeset
|
1142 |
#initiallyInvisible: true |
1160 | 1143 |
#orientation: #horizontal |
1144 |
) |
|
1168
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
1145 |
#(#SteppingSliderSpec |
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
1146 |
#name: 'VStepSlider' |
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
1147 |
#layout: #(#LayoutFrame 226 0 6 0 244 0 106 0) |
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
1148 |
) |
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
1149 |
#(#SliderSpec |
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
1150 |
#name: 'VSlider' |
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
1151 |
#layout: #(#LayoutFrame 254 0 6 0 272 0 106 0) |
1142 | 1152 |
) |
1153 |
#(#ThumbWheelSpec |
|
1168
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
1154 |
#name: 'VThumbWheel' |
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
1155 |
#layout: #(#LayoutFrame 280 0 6 0 298 0 106 0) |
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
1156 |
) |
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
1157 |
#(#ScrollerSpec |
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
1158 |
#name: 'VScroller' |
d297bc428326
separated misc into embed & misc;
Claus Gittinger <cg@exept.de>
parents:
1160
diff
changeset
|
1159 |
#layout: #(#LayoutFrame 345 0 6 0 363 0 106 0) |
1178
b348c8e9a1c7
made ScrollBars and Scrollers invisible;
Claus Gittinger <cg@exept.de>
parents:
1175
diff
changeset
|
1160 |
#initiallyInvisible: true |
1142 | 1161 |
) |
1162 |
#(#LabelSpec |
|
1163 |
#label: 'Region' |
|
1164 |
#name: 'RegionLabel' |
|
1165 |
#layout: #(#AlignmentOrigin 83 0 177 0 1 0) |
|
1166 |
#style: #(#FontDescription #helvetica #medium #roman 10) |
|
1167 |
#resizeForLabel: true |
|
1168 |
#adjust: #left |
|
1169 |
#canUIDrag: false |
|
1170 |
) |
|
1171 |
#(#RegionSpec |
|
1172 |
#name: 'Region' |
|
1173 |
#layout: #(#LayoutFrame 88 0 171 0 203 0 200 0) |
|
1174 |
#lineWidth: 2 |
|
1175 |
#regionType: #ellipse |
|
1176 |
) |
|
1177 |
#(#LabelSpec |
|
1178 |
#label: 'Separator' |
|
1179 |
#name: 'SeparatorLabel' |
|
1180 |
#layout: #(#AlignmentOrigin 83 0 207 0 1 0) |
|
1181 |
#style: #(#FontDescription #helvetica #medium #roman 10) |
|
1182 |
#resizeForLabel: true |
|
1183 |
#adjust: #left |
|
1184 |
#canUIDrag: false |
|
1185 |
) |
|
1186 |
#(#DividerSpec |
|
1187 |
#name: 'Separator' |
|
1188 |
#layout: #(#LayoutFrame 88 0 213 0 203 0 217 0) |
|
1189 |
) |
|
1190 |
#(#LabelSpec |
|
1191 |
#label: 'Progress Indicator' |
|
1192 |
#name: 'ProgressIndicatorsLabel' |
|
1193 |
#layout: #(#AlignmentOrigin 333 0 117 0 1 0) |
|
1194 |
#style: #(#FontDescription #helvetica #medium #roman 10) |
|
1195 |
#resizeForLabel: true |
|
1196 |
#adjust: #left |
|
1197 |
#canUIDrag: false |
|
1198 |
) |
|
1199 |
#(#ProgressIndicatorSpec |
|
1200 |
#name: 'Progress Indicator' |
|
1201 |
#layout: #(#LayoutFrame 338 0 114 0 433 0 132 0) |
|
1202 |
) |
|
1203 |
#(#LabelSpec |
|
1204 |
#label: 'Round |
|
753 | 1205 |
Progress Indicator' |
1142 | 1206 |
#name: 'RoundProgressIndicatorsLabel' |
1207 |
#layout: #(#AlignmentOrigin 333 0 167 0 1 0) |
|
1208 |
#style: #(#FontDescription #helvetica #medium #roman 10) |
|
1209 |
#resizeForLabel: true |
|
1210 |
#adjust: #left |
|
1211 |
#canUIDrag: false |
|
1212 |
) |
|
1213 |
#(#RoundProgressIndicatorSpec |
|
1214 |
#name: 'Round Progress Indicator' |
|
1215 |
#layout: #(#LayoutFrame 338 0 136 0 425 0 219 0) |
|
1216 |
#level: 0 |
|
1217 |
#borderWidth: 1 |
|
1218 |
) |
|
1175 | 1219 |
#(#ScrollBarSpec |
1220 |
#name: 'ScrollBar' |
|
1221 |
#layout: #(#LayoutFrame 88 0 100 0 203 0 118 0) |
|
1178
b348c8e9a1c7
made ScrollBars and Scrollers invisible;
Claus Gittinger <cg@exept.de>
parents:
1175
diff
changeset
|
1222 |
#initiallyInvisible: true |
1175 | 1223 |
#orientation: #horizontal |
1224 |
) |
|
1225 |
#(#ScrollBarSpec |
|
1226 |
#name: 'VScrollBar' |
|
1227 |
#layout: #(#LayoutFrame 317 0 6 0 335 0 106 0) |
|
1178
b348c8e9a1c7
made ScrollBars and Scrollers invisible;
Claus Gittinger <cg@exept.de>
parents:
1175
diff
changeset
|
1228 |
#initiallyInvisible: true |
1175 | 1229 |
) |
1142 | 1230 |
) |
1231 |
||
1232 |
) |
|
93 | 1233 |
) |
1234 |
! |
|
1235 |
||
677 | 1236 |
standardTexts |
795
9987c25de0f9
ALWAYS USE DEFAULT FONTS !!!!!!!
Claus Gittinger <cg@exept.de>
parents:
753
diff
changeset
|
1237 |
"This resource specification was automatically generated |
9987c25de0f9
ALWAYS USE DEFAULT FONTS !!!!!!!
Claus Gittinger <cg@exept.de>
parents:
753
diff
changeset
|
1238 |
by the UIPainter of ST/X." |
93 | 1239 |
|
795
9987c25de0f9
ALWAYS USE DEFAULT FONTS !!!!!!!
Claus Gittinger <cg@exept.de>
parents:
753
diff
changeset
|
1240 |
"Do not manually edit this!! If it is corrupted, |
9987c25de0f9
ALWAYS USE DEFAULT FONTS !!!!!!!
Claus Gittinger <cg@exept.de>
parents:
753
diff
changeset
|
1241 |
the UIPainter may not be able to read the specification." |
93 | 1242 |
|
1243 |
" |
|
677 | 1244 |
UIPainter new openOnClass:UISelectionPanel andSelector:#standardTexts |
1245 |
UISelectionPanel new openInterface:#standardTexts |
|
93 | 1246 |
" |
1247 |
||
1248 |
<resource: #canvas> |
|
1249 |
||
1142 | 1250 |
^ |
1251 |
#(#FullSpec |
|
1252 |
#name: #standardTexts |
|
1253 |
#window: |
|
1254 |
#(#WindowSpec |
|
1255 |
#label: 'Texts' |
|
1256 |
#name: 'Texts' |
|
1257 |
#min: #(#Point 10 10) |
|