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