author | Claus Gittinger <cg@exept.de> |
Tue, 14 May 2019 09:46:21 +0200 | |
changeset 3663 | 9d49ecf8661a |
parent 3590 | 885f170ab630 |
child 3749 | c10fb49af42b |
permissions | -rw-r--r-- |
739 | 1 |
" |
2 |
COPYRIGHT (c) 1997 by eXept Software AG |
|
3 |
All Rights Reserved |
|
4 |
||
5 |
This software is furnished under a license and may be used |
|
6 |
only in accordance with the terms of that license and with the |
|
7 |
inclusion of the above copyright notice. This software may not |
|
8 |
be provided or otherwise made available to, or used by, any |
|
9 |
other person. No title to or ownership of the software is |
|
10 |
hereby transferred. |
|
11 |
" |
|
1431 | 12 |
"{ Package: 'stx:libtool2' }" |
1373 | 13 |
|
3330 | 14 |
"{ NameSpace: Smalltalk }" |
15 |
||
739 | 16 |
ResourceSpecEditor subclass:#TabListEditor |
1373 | 17 |
instanceVariableNames:'listOfTabs' |
739 | 18 |
classVariableNames:'' |
19 |
poolDictionaries:'' |
|
20 |
category:'Interface-UIPainter' |
|
21 |
! |
|
22 |
||
23 |
!TabListEditor class methodsFor:'documentation'! |
|
24 |
||
25 |
copyright |
|
26 |
" |
|
27 |
COPYRIGHT (c) 1997 by eXept Software AG |
|
28 |
All Rights Reserved |
|
29 |
||
30 |
This software is furnished under a license and may be used |
|
31 |
only in accordance with the terms of that license and with the |
|
32 |
inclusion of the above copyright notice. This software may not |
|
33 |
be provided or otherwise made available to, or used by, any |
|
34 |
other person. No title to or ownership of the software is |
|
35 |
hereby transferred. |
|
36 |
" |
|
37 |
||
38 |
||
39 |
! |
|
40 |
||
41 |
documentation |
|
42 |
" |
|
43 |
The TabListEditor allows you to create, modify or just inspect |
|
44 |
tab lists for tab headers or note books. |
|
45 |
||
46 |
[start with:] |
|
47 |
TabItemEditor open |
|
48 |
||
49 |
[see also:] |
|
50 |
TabItem |
|
51 |
TabView |
|
52 |
NoteBookView |
|
53 |
UIPainter |
|
54 |
||
55 |
[author:] |
|
56 |
Claus Atzkern, eXept Software AG |
|
749 | 57 |
Thomas Zwick, eXept Software AG |
739 | 58 |
" |
59 |
||
60 |
||
61 |
! ! |
|
62 |
||
63 |
!TabListEditor class methodsFor:'instance creation'! |
|
64 |
||
65 |
openModalOnTabList: aTabList |
|
66 |
"Open a TabListEditor modal on aTabList" |
|
67 |
"self openModalOnTabList: (Array with: (TabItem label: 'Tab Item 1'))" |
|
68 |
||
69 |
^self new openModalOnTabList: aTabList |
|
70 |
||
71 |
! ! |
|
72 |
||
73 |
!TabListEditor class methodsFor:'accessing'! |
|
74 |
||
75 |
resourceType |
|
76 |
"get the type of resource of the method generated by the TabListEditor" |
|
77 |
||
78 |
^#tabList |
|
79 |
||
80 |
||
81 |
||
82 |
||
83 |
||
84 |
||
85 |
! ! |
|
86 |
||
87 |
!TabListEditor class methodsFor:'aspects'! |
|
88 |
||
89 |
aspects |
|
90 |
"get the aspects for the attributes of the tab list components" |
|
91 |
||
92 |
^#( |
|
93 |
label |
|
94 |
translateLabel |
|
95 |
labelForegroundColor |
|
96 |
enabled |
|
97 |
editAgument |
|
1325 | 98 |
accessCharacterPosition |
99 |
shortcutKey |
|
1373 | 100 |
activeHelpKey |
101 |
||
102 |
majorKey |
|
103 |
minorKey |
|
104 |
createNewBuilder |
|
105 |
||
106 |
hasHorizontalScrollBar |
|
107 |
hasVerticalScrollBar |
|
108 |
miniScrollerHorizontal |
|
109 |
miniScrollerVertical |
|
739 | 110 |
) |
111 |
||
112 |
! ! |
|
113 |
||
114 |
!TabListEditor class methodsFor:'help specs'! |
|
115 |
||
116 |
helpSpec |
|
117 |
"This resource specification was automatically generated |
|
118 |
by the UIHelpTool of ST/X." |
|
119 |
||
120 |
"Do not manually edit this!! If it is corrupted, |
|
121 |
the UIHelpTool may not be able to read the specification." |
|
122 |
||
123 |
" |
|
124 |
UIHelpTool openOnClass:TabListEditor |
|
125 |
" |
|
126 |
||
127 |
<resource: #help> |
|
128 |
||
1845 | 129 |
^ super helpSpec addPairsFrom:#( |
739 | 130 |
|
131 |
#addTabItem |
|
132 |
'Adds a new tab item.' |
|
133 |
||
2346
d6fdeda319de
confusion between applicationProvidesLabel and translateLabel fixed.
Claus Gittinger <cg@exept.de>
parents:
2281
diff
changeset
|
134 |
#applicationProvidesLabel |
d6fdeda319de
confusion between applicationProvidesLabel and translateLabel fixed.
Claus Gittinger <cg@exept.de>
parents:
2281
diff
changeset
|
135 |
'If on, the label''s string is a selector returning a string or bitmap image, which is used as logo in the tab item.' |
d6fdeda319de
confusion between applicationProvidesLabel and translateLabel fixed.
Claus Gittinger <cg@exept.de>
parents:
2281
diff
changeset
|
136 |
|
1373 | 137 |
#autoHideScrollBars |
138 |
'ScrollBars should be made invisible dynamically, if there is nothing to scroll.' |
|
739 | 139 |
|
1845 | 140 |
#basicTab |
141 |
'Define the basic attributes.' |
|
142 |
||
739 | 143 |
#canSelect |
144 |
'Turns on/off whether the tab item is selectable.' |
|
145 |
||
1845 | 146 |
#canvasTab |
147 |
'Define an application, which is started if the tab is pressed the first time.' |
|
148 |
||
149 |
#color |
|
150 |
'Defines the foreground color of the label. The default color derives from the style sheet.' |
|
151 |
||
1373 | 152 |
#createNewBuilder |
153 |
'Create a new builder for the application; the application use its own aspects.' |
|
154 |
||
1845 | 155 |
#detailTab |
156 |
'Define the optional/specific attributes.' |
|
157 |
||
158 |
#detailsAccelerator |
|
159 |
'Key to be pressed to select the tab item from the keyboard (accelerator key).' |
|
160 |
||
161 |
#detailsAccessCharaterPosition |
|
162 |
'Index of the access character position of the textual label (optional).' |
|
163 |
||
164 |
#detailsArgument |
|
165 |
'An optional argument stored with the tab item.' |
|
739 | 166 |
|
167 |
#fileCreateAspectMethod |
|
168 |
'Creates the aspect method for the tab list.' |
|
169 |
||
170 |
#fileLoad |
|
171 |
'Opens a dialog for selecting and loading a tab list spec from a class.' |
|
172 |
||
173 |
#fileNew |
|
174 |
'Creates a new tab list.' |
|
175 |
||
176 |
#fileSave |
|
177 |
'Saves current tab list.' |
|
178 |
||
1373 | 179 |
#horizontalMiniScroller |
180 |
'Use a mini-scroller as horizontal scrollbar.' |
|
181 |
||
1845 | 182 |
#horizontalScroller |
183 |
'Enable horizontal scrollability.' |
|
1373 | 184 |
|
739 | 185 |
#label |
186 |
'Label of the tab item.' |
|
187 |
||
1845 | 188 |
#majorKey |
189 |
'Name of the class to be started (application if empty); or app-selector returning application instance.' |
|
1373 | 190 |
|
1845 | 191 |
#minorKey |
192 |
'Message sent to the class which returns the window specification (default: #windowSpec).' |
|
1373 | 193 |
|
739 | 194 |
#testPreview |
195 |
'Turns on/off preview of the tab list.' |
|
196 |
||
2346
d6fdeda319de
confusion between applicationProvidesLabel and translateLabel fixed.
Claus Gittinger <cg@exept.de>
parents:
2281
diff
changeset
|
197 |
#translateLabel |
d6fdeda319de
confusion between applicationProvidesLabel and translateLabel fixed.
Claus Gittinger <cg@exept.de>
parents:
2281
diff
changeset
|
198 |
'If on, the label is translated using the applications language resources.' |
d6fdeda319de
confusion between applicationProvidesLabel and translateLabel fixed.
Claus Gittinger <cg@exept.de>
parents:
2281
diff
changeset
|
199 |
|
1845 | 200 |
#verticalMiniScroller |
201 |
'Use a mini-scroller as vertical scrollbar.' |
|
202 |
||
203 |
#verticalScroller |
|
204 |
'Enable vertical scrollability.' |
|
205 |
||
739 | 206 |
) |
207 |
! ! |
|
208 |
||
209 |
!TabListEditor class methodsFor:'image specs'! |
|
210 |
||
211 |
newTabItemIcon |
|
3118
d0e78fb8d796
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3093
diff
changeset
|
212 |
<resource: #image> |
739 | 213 |
"This resource specification was automatically generated |
214 |
by the ImageEditor of ST/X." |
|
215 |
"Do not manually edit this!!!! If it is corrupted, |
|
216 |
the ImageEditor may not be able to read the specification." |
|
217 |
" |
|
3118
d0e78fb8d796
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3093
diff
changeset
|
218 |
ImageEditor openOnClass:self andSelector:#newTabItemIcon" |
d0e78fb8d796
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3093
diff
changeset
|
219 |
|
d0e78fb8d796
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3093
diff
changeset
|
220 |
^ Icon constantNamed:#'TabListEditor newTabItemIcon' |
d0e78fb8d796
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3093
diff
changeset
|
221 |
ifAbsentPut:[ |
d0e78fb8d796
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3093
diff
changeset
|
222 |
(Depth2Image new) |
d0e78fb8d796
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3093
diff
changeset
|
223 |
width:22; |
d0e78fb8d796
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3093
diff
changeset
|
224 |
height:22; |
d0e78fb8d796
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3093
diff
changeset
|
225 |
photometric:(#palette); |
d0e78fb8d796
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3093
diff
changeset
|
226 |
bitsPerSample:(#( 2 )); |
d0e78fb8d796
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3093
diff
changeset
|
227 |
samplesPerPixel:(1); |
d0e78fb8d796
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3093
diff
changeset
|
228 |
bits:(ByteArray |
d0e78fb8d796
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3093
diff
changeset
|
229 |
fromPackedString:'U@@@@EUPUEUUVEUPUF**+EUPUF**+EUPUF**+EUP@F**+@@@EV***UV@F*****+@F KNC*+NF(("H*+@F((BC +EF(("H*+@F(("C*+MF*****+@F"@ H*K@F"""(LK@F"" ("K@F"""(*K@F"" H*K@F*****+HK??????@@@@@@@@@'); |
d0e78fb8d796
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3093
diff
changeset
|
230 |
colorMapFromArray:#[ 0 0 0 255 255 255 170 170 170 127 127 127 ]; |
d0e78fb8d796
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3093
diff
changeset
|
231 |
mask:((ImageMask new) |
d0e78fb8d796
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3093
diff
changeset
|
232 |
width:22; |
d0e78fb8d796
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3093
diff
changeset
|
233 |
height:22; |
d0e78fb8d796
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3093
diff
changeset
|
234 |
bits:(ByteArray |
d0e78fb8d796
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3093
diff
changeset
|
235 |
fromPackedString:'G?<@G?<@G?<@G?<@G?<@???<???<???<???????<???<???<???<???????=???<???????<???????<???<???='); |
d0e78fb8d796
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3093
diff
changeset
|
236 |
yourself); |
d0e78fb8d796
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3093
diff
changeset
|
237 |
yourself |
d0e78fb8d796
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3093
diff
changeset
|
238 |
] |
1431 | 239 |
! ! |
739 | 240 |
|
241 |
!TabListEditor class methodsFor:'interface specs'! |
|
242 |
||
1373 | 243 |
basicSpec |
739 | 244 |
"This resource specification was automatically generated |
245 |
by the UIPainter of ST/X." |
|
246 |
||
247 |
"Do not manually edit this!! If it is corrupted, |
|
248 |
the UIPainter may not be able to read the specification." |
|
249 |
||
250 |
" |
|
1373 | 251 |
UIPainter new openOnClass:TabListEditor andSelector:#basicSpec |
252 |
TabListEditor new openInterface:#basicSpec |
|
739 | 253 |
" |
254 |
||
255 |
<resource: #canvas> |
|
256 |
||
1183 | 257 |
^ |
1876 | 258 |
#(FullSpec |
259 |
name: basicSpec |
|
260 |
window: |
|
261 |
(WindowSpec |
|
262 |
label: 'Basic' |
|
263 |
name: 'Basic' |
|
264 |
min: (Point 10 10) |
|
265 |
max: (Point 1280 1024) |
|
2346
d6fdeda319de
confusion between applicationProvidesLabel and translateLabel fixed.
Claus Gittinger <cg@exept.de>
parents:
2281
diff
changeset
|
266 |
bounds: (Rectangle 0 0 429 240) |
1183 | 267 |
) |
1876 | 268 |
component: |
269 |
(SpecCollection |
|
270 |
collection: ( |
|
271 |
(LabelSpec |
|
272 |
label: 'Label:' |
|
273 |
name: 'labelLabel' |
|
274 |
layout: (AlignmentOrigin 98 0 26 0 1 0.5) |
|
275 |
translateLabel: true |
|
276 |
resizeForLabel: true |
|
1183 | 277 |
) |
1876 | 278 |
(InputFieldSpec |
279 |
name: 'label' |
|
280 |
layout: (LayoutFrame 100 0 15 0 -5 1.0 37 0) |
|
281 |
activeHelpKey: label |
|
282 |
tabable: true |
|
283 |
model: label |
|
284 |
group: inputGroup |
|
285 |
immediateAccept: true |
|
286 |
acceptOnReturn: false |
|
287 |
acceptOnTab: false |
|
288 |
acceptOnLostFocus: false |
|
289 |
acceptChannel: acceptChannel |
|
290 |
modifiedChannel: modifiedChannel |
|
291 |
acceptOnPointerLeave: false |
|
1325 | 292 |
) |
1876 | 293 |
(LabelSpec |
294 |
label: 'Accelerator:' |
|
295 |
name: 'shortcutKeyLabel' |
|
296 |
layout: (AlignmentOrigin 98 0 55 0 1 0.5) |
|
297 |
translateLabel: true |
|
298 |
resizeForLabel: true |
|
1325 | 299 |
) |
1876 | 300 |
(InputFieldSpec |
301 |
name: 'shortcutKey' |
|
302 |
layout: (LayoutFrame 100 0 44 0 -5 1.0 66 0) |
|
303 |
activeHelpKey: detailsAccelerator |
|
304 |
tabable: true |
|
305 |
model: shortcutKey |
|
306 |
group: inputGroup |
|
307 |
type: symbolOrNil |
|
308 |
immediateAccept: true |
|
309 |
acceptOnReturn: false |
|
310 |
acceptOnTab: false |
|
311 |
acceptOnLostFocus: false |
|
312 |
acceptChannel: acceptChannel |
|
313 |
modifiedChannel: modifiedChannel |
|
314 |
acceptOnPointerLeave: false |
|
1325 | 315 |
) |
1876 | 316 |
(LabelSpec |
317 |
label: 'Argument:' |
|
318 |
name: 'editAgumentLabel' |
|
319 |
layout: (AlignmentOrigin 98 0 84 0 1 0.5) |
|
320 |
translateLabel: true |
|
321 |
resizeForLabel: true |
|
1325 | 322 |
) |
1876 | 323 |
(InputFieldSpec |
324 |
name: 'editAgument' |
|
325 |
layout: (LayoutFrame 100 0 73 0 -5 1.0 95 0) |
|
326 |
activeHelpKey: detailsArgument |
|
327 |
tabable: true |
|
328 |
model: editAgument |
|
329 |
group: inputGroup |
|
330 |
immediateAccept: true |
|
331 |
acceptOnReturn: false |
|
332 |
acceptOnTab: false |
|
333 |
acceptOnLostFocus: false |
|
334 |
acceptChannel: acceptChannel |
|
335 |
modifiedChannel: modifiedChannel |
|
336 |
acceptOnPointerLeave: false |
|
1325 | 337 |
) |
1876 | 338 |
(LabelSpec |
339 |
label: 'Access Character Position:' |
|
340 |
name: 'accessCharacterPositionLabel' |
|
341 |
layout: (AlignmentOrigin 275 0 113 0 1 0.5) |
|
342 |
translateLabel: true |
|
343 |
resizeForLabel: true |
|
1325 | 344 |
) |
1876 | 345 |
(InputFieldSpec |
346 |
name: 'accessCharacterPosition' |
|
347 |
layout: (LayoutFrame 278 0 103 0 -5 1.0 125 0) |
|
348 |
activeHelpKey: detailsAccessCharaterPosition |
|
349 |
tabable: true |
|
350 |
model: accessCharacterPosition |
|
351 |
group: inputGroup |
|
352 |
type: number |
|
353 |
immediateAccept: true |
|
354 |
acceptOnReturn: false |
|
355 |
acceptOnTab: false |
|
356 |
acceptOnLostFocus: false |
|
357 |
acceptChannel: acceptChannel |
|
358 |
modifiedChannel: modifiedChannel |
|
359 |
acceptOnPointerLeave: false |
|
1183 | 360 |
) |
1876 | 361 |
(CheckBoxSpec |
2346
d6fdeda319de
confusion between applicationProvidesLabel and translateLabel fixed.
Claus Gittinger <cg@exept.de>
parents:
2281
diff
changeset
|
362 |
label: 'Translate Label ' |
1876 | 363 |
name: 'translateLabel' |
2346
d6fdeda319de
confusion between applicationProvidesLabel and translateLabel fixed.
Claus Gittinger <cg@exept.de>
parents:
2281
diff
changeset
|
364 |
layout: (LayoutFrame 96 0 135 0 308 0 161 0) |
d6fdeda319de
confusion between applicationProvidesLabel and translateLabel fixed.
Claus Gittinger <cg@exept.de>
parents:
2281
diff
changeset
|
365 |
activeHelpKey: translateLabel |
1876 | 366 |
tabable: true |
367 |
model: translateLabel |
|
368 |
translateLabel: true |
|
1183 | 369 |
) |
2346
d6fdeda319de
confusion between applicationProvidesLabel and translateLabel fixed.
Claus Gittinger <cg@exept.de>
parents:
2281
diff
changeset
|
370 |
(CheckBoxSpec |
d6fdeda319de
confusion between applicationProvidesLabel and translateLabel fixed.
Claus Gittinger <cg@exept.de>
parents:
2281
diff
changeset
|
371 |
label: 'Application Provides Label ' |
d6fdeda319de
confusion between applicationProvidesLabel and translateLabel fixed.
Claus Gittinger <cg@exept.de>
parents:
2281
diff
changeset
|
372 |
name: 'CheckBox1' |
d6fdeda319de
confusion between applicationProvidesLabel and translateLabel fixed.
Claus Gittinger <cg@exept.de>
parents:
2281
diff
changeset
|
373 |
layout: (LayoutFrame 96 0 161 0 308 0 187 0) |
d6fdeda319de
confusion between applicationProvidesLabel and translateLabel fixed.
Claus Gittinger <cg@exept.de>
parents:
2281
diff
changeset
|
374 |
activeHelpKey: applicationProvidesLabel |
d6fdeda319de
confusion between applicationProvidesLabel and translateLabel fixed.
Claus Gittinger <cg@exept.de>
parents:
2281
diff
changeset
|
375 |
tabable: true |
d6fdeda319de
confusion between applicationProvidesLabel and translateLabel fixed.
Claus Gittinger <cg@exept.de>
parents:
2281
diff
changeset
|
376 |
model: applicationProvidesLabel |
d6fdeda319de
confusion between applicationProvidesLabel and translateLabel fixed.
Claus Gittinger <cg@exept.de>
parents:
2281
diff
changeset
|
377 |
translateLabel: true |
d6fdeda319de
confusion between applicationProvidesLabel and translateLabel fixed.
Claus Gittinger <cg@exept.de>
parents:
2281
diff
changeset
|
378 |
) |
1876 | 379 |
(LabelSpec |
380 |
label: 'Help Key:' |
|
381 |
name: 'activeHelp' |
|
2346
d6fdeda319de
confusion between applicationProvidesLabel and translateLabel fixed.
Claus Gittinger <cg@exept.de>
parents:
2281
diff
changeset
|
382 |
layout: (AlignmentOrigin 98 0 203 0 1 0.5) |
1876 | 383 |
translateLabel: true |
384 |
resizeForLabel: true |
|
1373 | 385 |
) |
1876 | 386 |
(InputFieldSpec |
387 |
name: 'activeHelpKey' |
|
2346
d6fdeda319de
confusion between applicationProvidesLabel and translateLabel fixed.
Claus Gittinger <cg@exept.de>
parents:
2281
diff
changeset
|
388 |
layout: (LayoutFrame 100 0 192 0 -5 1.0 214 0) |
1876 | 389 |
activeHelpKey: label |
390 |
tabable: true |
|
391 |
model: activeHelpKey |
|
392 |
group: inputGroup |
|
393 |
type: symbolOrNil |
|
394 |
immediateAccept: true |
|
395 |
acceptOnReturn: false |
|
396 |
acceptOnTab: false |
|
397 |
acceptOnLostFocus: false |
|
398 |
acceptChannel: acceptChannel |
|
399 |
modifiedChannel: modifiedChannel |
|
400 |
acceptOnPointerLeave: false |
|
1373 | 401 |
) |
402 |
) |
|
403 |
||
404 |
) |
|
405 |
) |
|
406 |
! |
|
407 |
||
408 |
canvasSpec |
|
409 |
"This resource specification was automatically generated |
|
410 |
by the UIPainter of ST/X." |
|
411 |
||
412 |
"Do not manually edit this!! If it is corrupted, |
|
413 |
the UIPainter may not be able to read the specification." |
|
414 |
||
415 |
" |
|
416 |
UIPainter new openOnClass:TabListEditor andSelector:#canvasSpec |
|
417 |
TabListEditor new openInterface:#canvasSpec |
|
418 |
" |
|
419 |
||
420 |
<resource: #canvas> |
|
421 |
||
422 |
^ |
|
3663 | 423 |
#(FullSpec |
424 |
name: canvasSpec |
|
425 |
uuid: '8a7c55d6-761b-11e9-98ea-b8f6b1108e05' |
|
426 |
window: |
|
427 |
(WindowSpec |
|
428 |
label: 'Canvas' |
|
429 |
name: 'Canvas' |
|
430 |
uuid: '8a7c5964-761b-11e9-98ea-b8f6b1108e05' |
|
431 |
min: (Point 10 10) |
|
432 |
max: (Point 1280 1024) |
|
433 |
bounds: (Rectangle 0 0 383 220) |
|
434 |
) |
|
435 |
component: |
|
436 |
(SpecCollection |
|
437 |
collection: ( |
|
438 |
(LabelSpec |
|
439 |
label: 'Class / Major Key:' |
|
440 |
name: 'majorKeyLabel' |
|
441 |
layout: (AlignmentOrigin 160 0 26 0 1 0.5) |
|
442 |
activeHelpKey: majorKey |
|
443 |
uuid: '8a7cc2f0-761b-11e9-98ea-b8f6b1108e05' |
|
444 |
translateLabel: true |
|
445 |
resizeForLabel: true |
|
446 |
) |
|
447 |
(InputFieldSpec |
|
448 |
name: 'majorKeyField' |
|
449 |
layout: (LayoutFrame 161 0 15 0 -5 1.0 37 0) |
|
450 |
activeHelpKey: majorKey |
|
451 |
uuid: '8a7cc82c-761b-11e9-98ea-b8f6b1108e05' |
|
452 |
tabable: true |
|
453 |
model: majorKey |
|
454 |
group: inputGroup |
|
455 |
type: symbolOrNil |
|
456 |
immediateAccept: true |
|
457 |
acceptOnReturn: false |
|
458 |
acceptOnTab: false |
|
459 |
acceptOnLostFocus: false |
|
460 |
modifiedChannel: modifiedChannel |
|
461 |
acceptOnPointerLeave: false |
|
462 |
) |
|
463 |
(LabelSpec |
|
464 |
label: 'Selector / Minor Key:' |
|
465 |
name: 'minorKeyLabel' |
|
466 |
layout: (AlignmentOrigin 160 0 55 0 1 0.5) |
|
467 |
uuid: '8a7ccda4-761b-11e9-98ea-b8f6b1108e05' |
|
468 |
translateLabel: true |
|
469 |
resizeForLabel: true |
|
470 |
) |
|
471 |
(InputFieldSpec |
|
472 |
name: 'minorKeyField' |
|
473 |
layout: (LayoutFrame 161 0 44 0 -5 1.0 66 0) |
|
474 |
activeHelpKey: majorKey |
|
475 |
uuid: '8a7ccf7a-761b-11e9-98ea-b8f6b1108e05' |
|
476 |
tabable: true |
|
477 |
model: minorKey |
|
478 |
group: inputGroup |
|
479 |
type: symbolOrNil |
|
480 |
immediateAccept: true |
|
481 |
acceptOnReturn: false |
|
482 |
acceptOnTab: false |
|
483 |
acceptOnLostFocus: false |
|
484 |
modifiedChannel: modifiedChannel |
|
485 |
acceptOnPointerLeave: false |
|
486 |
) |
|
487 |
(FramedBoxSpec |
|
488 |
label: 'Scroll Bars' |
|
489 |
name: 'FramedBox' |
|
490 |
layout: (LayoutFrame 0 0.0 119 0.0 0 1.0 218 0) |
|
491 |
uuid: '8a7cd1be-761b-11e9-98ea-b8f6b1108e05' |
|
492 |
labelPosition: topLeft |
|
493 |
translateLabel: true |
|
494 |
component: |
|
495 |
(SpecCollection |
|
496 |
collection: ( |
|
497 |
(HorizontalPanelViewSpec |
|
498 |
name: 'HorizontalPanel1' |
|
499 |
layout: (LayoutFrame 0 0.0 0 0.0 0 1.0 0 1.0) |
|
500 |
uuid: '8a7cd42a-761b-11e9-98ea-b8f6b1108e05' |
|
501 |
horizontalLayout: fitSpace |
|
502 |
verticalLayout: fitSpace |
|
503 |
horizontalSpace: 3 |
|
504 |
verticalSpace: 3 |
|
505 |
component: |
|
506 |
(SpecCollection |
|
507 |
collection: ( |
|
508 |
(ViewSpec |
|
509 |
name: 'Box1' |
|
510 |
uuid: '8a7cd768-761b-11e9-98ea-b8f6b1108e05' |
|
511 |
component: |
|
512 |
(SpecCollection |
|
513 |
collection: ( |
|
514 |
(CheckBoxSpec |
|
515 |
label: 'Vertical' |
|
516 |
name: 'verticalScrollBarCheckBox' |
|
517 |
layout: (LayoutFrame 0 0.0 3 0 0 1.0 27 0) |
|
518 |
activeHelpKey: verticalScroller |
|
519 |
uuid: '8a7cd8ee-761b-11e9-98ea-b8f6b1108e05' |
|
520 |
tabable: true |
|
521 |
model: hasVerticalScrollBar |
|
522 |
translateLabel: true |
|
1373 | 523 |
) |
3663 | 524 |
(CheckBoxSpec |
525 |
label: 'Mini' |
|
526 |
name: 'miniScrollerVerticalCheckBox' |
|
527 |
layout: (LayoutFrame 0 0.0 32 0 0 1.0 56 0) |
|
528 |
activeHelpKey: verticalMiniScroller |
|
529 |
uuid: '8a7cdb82-761b-11e9-98ea-b8f6b1108e05' |
|
530 |
tabable: true |
|
531 |
model: miniScrollerVertical |
|
532 |
translateLabel: true |
|
533 |
) |
|
534 |
) |
|
535 |
||
536 |
) |
|
537 |
useDefaultExtent: true |
|
538 |
) |
|
539 |
(ViewSpec |
|
540 |
name: 'Box2' |
|
541 |
uuid: '8a7cdda8-761b-11e9-98ea-b8f6b1108e05' |
|
542 |
component: |
|
543 |
(SpecCollection |
|
544 |
collection: ( |
|
545 |
(CheckBoxSpec |
|
546 |
label: 'Horizontal' |
|
547 |
name: 'horizontalScrollBarCheckBox' |
|
548 |
layout: (LayoutFrame 0 0.0 3 0 0 1.0 27 0) |
|
549 |
activeHelpKey: horizontalScroller |
|
550 |
uuid: '8a7cdede-761b-11e9-98ea-b8f6b1108e05' |
|
551 |
tabable: true |
|
552 |
model: hasHorizontalScrollBar |
|
553 |
translateLabel: true |
|
554 |
) |
|
555 |
(CheckBoxSpec |
|
556 |
label: 'Mini' |
|
557 |
name: 'miniScrollerHorizontalCheckBox' |
|
558 |
layout: (LayoutFrame 0 0.0 32 0 0 1.0 56 0) |
|
559 |
activeHelpKey: horizontalMiniScroller |
|
560 |
uuid: '8a7ce064-761b-11e9-98ea-b8f6b1108e05' |
|
561 |
tabable: true |
|
562 |
model: miniScrollerHorizontal |
|
563 |
translateLabel: true |
|
1373 | 564 |
) |
3663 | 565 |
) |
566 |
||
567 |
) |
|
568 |
extent: (Point 111 53) |
|
569 |
) |
|
570 |
(ViewSpec |
|
571 |
name: 'Box3' |
|
572 |
uuid: '8a7ce1fe-761b-11e9-98ea-b8f6b1108e05' |
|
573 |
component: |
|
574 |
(SpecCollection |
|
575 |
collection: ( |
|
576 |
(LabelSpec |
|
577 |
label: 'Auto Hide:' |
|
578 |
name: 'Label1' |
|
579 |
layout: (LayoutFrame 0 0.0 6 0 0 1.0 23 0) |
|
580 |
uuid: '8a7ce334-761b-11e9-98ea-b8f6b1108e05' |
|
581 |
translateLabel: true |
|
582 |
resizeForLabel: true |
|
583 |
adjust: left |
|
1373 | 584 |
) |
3663 | 585 |
(PopUpListSpec |
586 |
label: 'Default' |
|
587 |
name: 'PopUpList1' |
|
588 |
layout: (LayoutFrame 0 0.0 32 0 0 1.0 54 0) |
|
589 |
activeHelpKey: autoHideScrollBars |
|
590 |
uuid: '8a7ce4e2-761b-11e9-98ea-b8f6b1108e05' |
|
591 |
translateLabel: true |
|
592 |
tabable: true |
|
593 |
model: autoHideScrollBars |
|
594 |
menu: |
|
595 |
(ImmutableArray |
|
596 |
Default On |
|
597 |
Off |
|
598 |
) |
|
599 |
useIndex: true |
|
600 |
) |
|
601 |
) |
|
602 |
||
603 |
) |
|
604 |
extent: (Point 112 53) |
|
1373 | 605 |
) |
3663 | 606 |
) |
607 |
||
608 |
) |
|
1373 | 609 |
) |
3663 | 610 |
) |
611 |
||
612 |
) |
|
1373 | 613 |
) |
3663 | 614 |
(CheckBoxSpec |
615 |
label: 'Create New Builder' |
|
616 |
name: 'createNewBuilder' |
|
617 |
layout: (Point 161 75) |
|
618 |
activeHelpKey: createNewBuilder |
|
619 |
uuid: '8a7ce8de-761b-11e9-98ea-b8f6b1108e05' |
|
620 |
model: createNewBuilder |
|
621 |
translateLabel: true |
|
622 |
) |
|
623 |
) |
|
624 |
||
625 |
) |
|
626 |
) |
|
1373 | 627 |
! |
628 |
||
629 |
detailSpec |
|
630 |
"This resource specification was automatically generated |
|
631 |
by the UIPainter of ST/X." |
|
632 |
||
633 |
"Do not manually edit this!! If it is corrupted, |
|
634 |
the UIPainter may not be able to read the specification." |
|
635 |
||
636 |
" |
|
637 |
UIPainter new openOnClass:TabListEditor andSelector:#detailSpec |
|
638 |
TabListEditor new openInterface:#detailSpec |
|
639 |
" |
|
640 |
||
641 |
<resource: #canvas> |
|
642 |
||
643 |
^ |
|
1876 | 644 |
#(FullSpec |
645 |
name: detailSpec |
|
646 |
window: |
|
647 |
(WindowSpec |
|
648 |
label: 'Details' |
|
649 |
name: 'Details' |
|
650 |
min: (Point 10 10) |
|
651 |
max: (Point 1280 1024) |
|
652 |
bounds: (Rectangle 0 0 358 107) |
|
1373 | 653 |
) |
1876 | 654 |
component: |
655 |
(SpecCollection |
|
656 |
collection: ( |
|
657 |
(CheckBoxSpec |
|
658 |
label: 'Can Select' |
|
659 |
name: 'enabled' |
|
660 |
layout: (Point 46 14) |
|
661 |
activeHelpKey: canSelect |
|
662 |
tabable: true |
|
663 |
model: enabled |
|
664 |
translateLabel: true |
|
1183 | 665 |
) |
1876 | 666 |
(LabelSpec |
667 |
label: 'Color:' |
|
668 |
name: 'ForegroundLabel' |
|
669 |
layout: (AlignmentOrigin 46 0 62 0 1 0.5) |
|
670 |
translateLabel: true |
|
671 |
resizeForLabel: true |
|
672 |
adjust: right |
|
1183 | 673 |
) |
1876 | 674 |
(ColorMenuSpec |
675 |
name: 'ForegroundColorMenu' |
|
676 |
layout: (LayoutFrame 48 0 50 0 -10 1.0 72 0) |
|
677 |
activeHelpKey: color |
|
678 |
model: labelForegroundColor |
|
679 |
labelsAreColored: false |
|
1183 | 680 |
) |
681 |
) |
|
682 |
||
683 |
) |
|
739 | 684 |
) |
685 |
! |
|
686 |
||
687 |
windowSpec |
|
688 |
"This resource specification was automatically generated |
|
689 |
by the UIPainter of ST/X." |
|
690 |
||
691 |
"Do not manually edit this!! If it is corrupted, |
|
692 |
the UIPainter may not be able to read the specification." |
|
693 |
||
694 |
" |
|
695 |
UIPainter new openOnClass:TabListEditor andSelector:#windowSpec |
|
696 |
TabListEditor new openInterface:#windowSpec |
|
697 |
TabListEditor open |
|
698 |
" |
|
699 |
||
700 |
<resource: #canvas> |
|
701 |
||
1183 | 702 |
^ |
3663 | 703 |
#(FullSpec |
704 |
name: windowSpec |
|
705 |
uuid: 'b2e02714-761b-11e9-98ea-b8f6b1108e05' |
|
706 |
window: |
|
707 |
(WindowSpec |
|
708 |
label: 'Tab List Editor' |
|
709 |
name: 'Tab List Editor' |
|
710 |
uuid: 'b2e02a02-761b-11e9-98ea-b8f6b1108e05' |
|
711 |
min: (Point 440 280) |
|
712 |
bounds: (Rectangle 0 0 536 369) |
|
713 |
menu: menu |
|
714 |
) |
|
715 |
component: |
|
716 |
(SpecCollection |
|
717 |
collection: ( |
|
718 |
(MenuPanelSpec |
|
719 |
name: 'menuToolbarView' |
|
720 |
layout: (LayoutFrame 0 0.0 0 0.0 0 1.0 34 0) |
|
721 |
uuid: 'b2e02c78-761b-11e9-98ea-b8f6b1108e05' |
|
722 |
menu: menuToolbar |
|
723 |
showSeparatingLines: true |
|
724 |
) |
|
725 |
(VariableHorizontalPanelSpec |
|
726 |
name: 'VariablePanel' |
|
727 |
layout: (LayoutFrame 0 0.0 36 0.0 0 1.0 -26 1.0) |
|
728 |
uuid: 'b2e02f48-761b-11e9-98ea-b8f6b1108e05' |
|
729 |
component: |
|
730 |
(SpecCollection |
|
731 |
collection: ( |
|
732 |
(SelectionInListModelViewSpec |
|
733 |
name: 'ListOfLabels' |
|
734 |
uuid: 'b2e031fa-761b-11e9-98ea-b8f6b1108e05' |
|
735 |
tabable: true |
|
736 |
model: selectionHolder |
|
737 |
menu: menuEdit |
|
738 |
hasHorizontalScrollBar: true |
|
739 |
hasVerticalScrollBar: true |
|
740 |
miniScrollerHorizontal: true |
|
741 |
listModel: listOfTabs |
|
742 |
highlightMode: line |
|
743 |
selectConditionSelector: askForItemModification |
|
744 |
) |
|
745 |
(ViewSpec |
|
746 |
name: 'SpecView' |
|
747 |
uuid: 'b2e034d4-761b-11e9-98ea-b8f6b1108e05' |
|
748 |
level: -1 |
|
749 |
component: |
|
750 |
(SpecCollection |
|
751 |
collection: ( |
|
752 |
(NoteBookViewSpec |
|
753 |
name: 'NoteBook' |
|
754 |
layout: (LayoutFrame 1 0.0 0 0.0 0 1.0 -32 1.0) |
|
755 |
uuid: 'b2e03600-761b-11e9-98ea-b8f6b1108e05' |
|
756 |
enableChannel: hasSelectionHolder |
|
757 |
tabable: true |
|
758 |
model: noteBookModel |
|
759 |
menu: noteBookTabList |
|
760 |
useIndex: true |
|
761 |
translateLabel: true |
|
762 |
keepCanvasAlive: true |
|
763 |
) |
|
764 |
(UISubSpecification |
|
765 |
name: 'subSpec' |
|
766 |
layout: (LayoutFrame 2 0.0 -32 1 -2 1.0 0 1) |
|
767 |
uuid: 'b2e039ac-761b-11e9-98ea-b8f6b1108e05' |
|
768 |
majorKey: ToolApplicationModel |
|
769 |
minorKey: windowSpecForCommit |
|
770 |
) |
|
771 |
(NoteBookViewSpec |
|
772 |
name: 'TestNoteBook' |
|
773 |
layout: (LayoutFrame 0 0.0 0 0.0 0 1.0 0 1.0) |
|
774 |
uuid: 'b2e03b32-761b-11e9-98ea-b8f6b1108e05' |
|
775 |
visibilityChannel: testMode |
|
776 |
tabable: true |
|
777 |
menu: testItemList |
|
778 |
useIndex: true |
|
779 |
translateLabel: true |
|
780 |
) |
|
1373 | 781 |
) |
3663 | 782 |
|
783 |
) |
|
1183 | 784 |
) |
3663 | 785 |
) |
786 |
||
787 |
) |
|
788 |
handles: (Any 0.23999999999999999 1.0) |
|
1183 | 789 |
) |
3663 | 790 |
(UISubSpecification |
791 |
name: 'infoBarSubSpec' |
|
792 |
layout: (LayoutFrame 0 0.0 -24 1 0 1.0 0 1.0) |
|
793 |
uuid: 'b2e03d44-761b-11e9-98ea-b8f6b1108e05' |
|
794 |
majorKey: ToolApplicationModel |
|
795 |
minorKey: windowSpecForInfoBar |
|
796 |
) |
|
797 |
) |
|
798 |
||
799 |
) |
|
800 |
) |
|
739 | 801 |
! ! |
802 |
||
1373 | 803 |
!TabListEditor class methodsFor:'list specs'! |
804 |
||
805 |
noteBookTabList |
|
806 |
"This resource specification was automatically generated |
|
807 |
by the TabListEditor of ST/X." |
|
808 |
||
809 |
"Do not manually edit this!! If it is corrupted, |
|
810 |
the TabListEditor may not be able to read the specification." |
|
811 |
||
812 |
" |
|
813 |
TabListEditor new openOnClass:TabListEditor andSelector:#noteBookTabList |
|
814 |
" |
|
815 |
||
816 |
<resource: #tabList> |
|
817 |
||
818 |
^ #( |
|
819 |
#(#TabItem |
|
820 |
#label: 'Basic' |
|
821 |
#activeHelpKey: #basicTab |
|
822 |
#minorKey: #basicSpec |
|
823 |
) |
|
824 |
#(#TabItem |
|
825 |
#label: 'Details' |
|
826 |
#activeHelpKey: #detailTab |
|
827 |
#minorKey: #detailSpec |
|
828 |
) |
|
829 |
#(#TabItem |
|
830 |
#label: 'Canvas' |
|
831 |
#activeHelpKey: #canvasTab |
|
832 |
#minorKey: #canvasSpec |
|
833 |
) |
|
834 |
) |
|
835 |
||
836 |
collect:[:aTab| TabItem new fromLiteralArrayEncoding:aTab ] |
|
837 |
! ! |
|
838 |
||
739 | 839 |
!TabListEditor class methodsFor:'menu specs'! |
840 |
||
841 |
menu |
|
842 |
"This resource specification was automatically generated |
|
843 |
by the MenuEditor of ST/X." |
|
844 |
||
845 |
"Do not manually edit this!! If it is corrupted, |
|
846 |
the MenuEditor may not be able to read the specification." |
|
847 |
||
3663 | 848 |
|
739 | 849 |
" |
850 |
MenuEditor new openOnClass:TabListEditor andSelector:#menu |
|
851 |
(Menu new fromLiteralArrayEncoding:(TabListEditor menu)) startUp |
|
852 |
" |
|
853 |
||
854 |
<resource: #menu> |
|
855 |
||
3663 | 856 |
^ |
857 |
#(Menu |
|
858 |
( |
|
859 |
(MenuItem |
|
860 |
activeHelpKey: file |
|
861 |
label: 'File' |
|
862 |
submenu: |
|
863 |
(Menu |
|
864 |
( |
|
865 |
(MenuItem |
|
866 |
activeHelpKey: fileNew |
|
867 |
label: 'New' |
|
868 |
itemValue: doNew |
|
869 |
) |
|
870 |
(MenuItem |
|
871 |
label: '-' |
|
872 |
) |
|
873 |
(MenuItem |
|
874 |
activeHelpKey: fileLoad |
|
875 |
label: 'Load...' |
|
876 |
itemValue: doLoad |
|
877 |
) |
|
878 |
(MenuItem |
|
879 |
label: '-' |
|
739 | 880 |
) |
3663 | 881 |
(MenuItem |
882 |
activeHelpKey: fileSave |
|
883 |
label: 'Save' |
|
884 |
itemValue: doSave |
|
885 |
) |
|
886 |
(MenuItem |
|
887 |
activeHelpKey: fileSave |
|
888 |
label: 'Save As...' |
|
889 |
itemValue: doSaveAs |
|
890 |
) |
|
891 |
(MenuItem |
|
892 |
label: '-' |
|
893 |
) |
|
894 |
(MenuItem |
|
895 |
activeHelpKey: fileBrowseClass |
|
896 |
label: 'Browse Class' |
|
897 |
itemValue: doBrowseClass |
|
898 |
) |
|
899 |
(MenuItem |
|
900 |
label: '-' |
|
901 |
) |
|
902 |
(MenuItem |
|
903 |
activeHelpKey: fileExit |
|
904 |
label: 'Exit' |
|
905 |
itemValue: closeRequest |
|
906 |
) |
|
907 |
) |
|
908 |
nil |
|
909 |
nil |
|
739 | 910 |
) |
3663 | 911 |
) |
912 |
(MenuItem |
|
913 |
activeHelpKey: edit |
|
914 |
label: 'Edit' |
|
915 |
submenuChannel: menuEdit |
|
916 |
) |
|
917 |
(MenuItem |
|
918 |
activeHelpKey: add |
|
919 |
label: 'Add' |
|
920 |
submenu: |
|
921 |
(Menu |
|
922 |
( |
|
923 |
(MenuItem |
|
924 |
activeHelpKey: addTabItem |
|
925 |
label: 'Tab Item' |
|
926 |
itemValue: doCreate |
|
927 |
labelImage: (ResourceRetriever nil newTabItemIcon 'Tab Item') |
|
739 | 928 |
) |
3663 | 929 |
) |
930 |
nil |
|
931 |
nil |
|
739 | 932 |
) |
3663 | 933 |
) |
934 |
(MenuItem |
|
935 |
activeHelpKey: add |
|
936 |
label: 'Generate' |
|
937 |
submenu: |
|
938 |
(Menu |
|
939 |
( |
|
940 |
(MenuItem |
|
941 |
activeHelpKey: fileCreateAspectMethod |
|
942 |
enabled: hasClassAndSelector |
|
943 |
label: 'Aspect Method' |
|
944 |
itemValue: doGenerateAspectMethod |
|
739 | 945 |
) |
3663 | 946 |
) |
947 |
nil |
|
948 |
nil |
|
739 | 949 |
) |
3663 | 950 |
) |
951 |
(MenuItem |
|
952 |
activeHelpKey: test |
|
953 |
label: 'Test' |
|
954 |
submenu: |
|
955 |
(Menu |
|
956 |
( |
|
957 |
(MenuItem |
|
958 |
activeHelpKey: testPreview |
|
959 |
enabled: canToggleTestMode |
|
960 |
label: 'Preview' |
|
961 |
indication: testMode |
|
739 | 962 |
) |
3663 | 963 |
) |
964 |
nil |
|
965 |
nil |
|
749 | 966 |
) |
3663 | 967 |
) |
968 |
(MenuItem |
|
969 |
activeHelpKey: history |
|
970 |
label: 'History' |
|
971 |
submenuChannel: menuHistory |
|
972 |
) |
|
973 |
(MenuItem |
|
974 |
activeHelpKey: help |
|
975 |
label: 'MENU_Help' |
|
976 |
startGroup: conditionalRight |
|
977 |
submenuChannel: menuHelp |
|
978 |
) |
|
979 |
) |
|
980 |
nil |
|
981 |
nil |
|
739 | 982 |
) |
983 |
! |
|
984 |
||
985 |
menuEdit |
|
986 |
"This resource specification was automatically generated |
|
987 |
by the MenuEditor of ST/X." |
|
988 |
||
989 |
"Do not manually edit this!! If it is corrupted, |
|
990 |
the MenuEditor may not be able to read the specification." |
|
991 |
||
992 |
" |
|
993 |
MenuEditor new openOnClass:TabListEditor andSelector:#menuEdit |
|
994 |
(Menu new fromLiteralArrayEncoding:(TabListEditor menuEdit)) startUp |
|
995 |
" |
|
996 |
||
997 |
<resource: #menu> |
|
998 |
||
1374 | 999 |
^ |
1000 |
#(#Menu |
|
1001 |
#( |
|
1002 |
#(#MenuItem |
|
1003 |
#label: 'Cut' |
|
1004 |
#value: #doCut |
|
1005 |
#activeHelpKey: #editCut |
|
1006 |
#enabled: #hasSelectionHolder |
|
1007 |
) |
|
1008 |
#(#MenuItem |
|
1009 |
#label: 'Copy' |
|
1010 |
#value: #doCopy |
|
1011 |
#activeHelpKey: #editCopy |
|
1012 |
#enabled: #hasSelectionHolder |
|
1013 |
) |
|
1014 |
#(#MenuItem |
|
1015 |
#label: 'Paste' |
|
1016 |
#value: #doPaste |
|
1017 |
#activeHelpKey: #editPaste |
|
2383
e76cc686a293
rename #valueOfCanbPate to #canPasteHolder
Stefan Vogel <sv@exept.de>
parents:
2346
diff
changeset
|
1018 |
#enabled: #canPasteHolder |
1374 | 1019 |
) |
1020 |
#(#MenuItem |
|
1021 |
#label: 'Delete' |
|
1022 |
#value: #doDelete |
|
1023 |
#activeHelpKey: #editPaste |
|
1024 |
#enabled: #hasSelectionHolder |
|
1025 |
) |
|
1026 |
#(#MenuItem |
|
1027 |
#label: '-' |
|
1028 |
) |
|
1029 |
#(#MenuItem |
|
1030 |
#label: 'Move Up' |
|
1031 |
#value: #doMoveTabUpOrDown: |
|
1032 |
#activeHelpKey: #editMoveUp |
|
1033 |
#enabled: #canMoveTabItemUpOrDown |
|
1034 |
#argument: #up |
|
1035 |
#labelImage: #(#ResourceRetriever #Icon #upIcon 'Move Up') |
|
1036 |
) |
|
1037 |
#(#MenuItem |
|
1038 |
#label: 'Move Down' |
|
1039 |
#value: #doMoveTabUpOrDown: |
|
1040 |
#activeHelpKey: #editMoveDown |
|
1041 |
#enabled: #canMoveTabItemUpOrDown |
|
1042 |
#argument: #down |
|
1043 |
#labelImage: #(#ResourceRetriever #Icon #downIcon 'Move Down') |
|
1044 |
) |
|
1045 |
#(#MenuItem |
|
1046 |
#label: '-' |
|
1047 |
#isVisible: #hiddenAccelerator |
|
1048 |
) |
|
1049 |
#(#MenuItem |
|
1050 |
#label: 'Accept' |
|
1051 |
#translateLabel: true |
|
1052 |
#isVisible: #hiddenAccelerator |
|
1053 |
#value: #accept |
|
2432 | 1054 |
#enabled: #enablingCommitButtonsHolder |
1374 | 1055 |
) |
1056 |
) |
|
1057 |
nil |
|
1058 |
nil |
|
739 | 1059 |
) |
1060 |
! |
|
1061 |
||
1062 |
menuToolbar |
|
1063 |
"This resource specification was automatically generated |
|
1064 |
by the MenuEditor of ST/X." |
|
1065 |
||
1066 |
"Do not manually edit this!! If it is corrupted, |
|
1067 |
the MenuEditor may not be able to read the specification." |
|
1068 |
||
1069 |
" |
|
1070 |
MenuEditor new openOnClass:TabListEditor andSelector:#menuToolbar |
|
1071 |
(Menu new fromLiteralArrayEncoding:(TabListEditor menuToolbar)) startUp |
|
1072 |
" |
|
1073 |
||
1074 |
<resource: #menu> |
|
1075 |
||
1373 | 1076 |
^ |
1909 | 1077 |
#(Menu |
1078 |
( |
|
1079 |
(MenuItem |
|
1080 |
activeHelpKey: fileNew |
|
1081 |
label: 'New' |
|
1082 |
itemValue: doNew |
|
1083 |
translateLabel: true |
|
1084 |
isButton: true |
|
1085 |
labelImage: (ResourceRetriever ToolbarIconLibrary new22x22Icon) |
|
1373 | 1086 |
) |
1909 | 1087 |
(MenuItem |
1088 |
activeHelpKey: fileLoad |
|
1089 |
label: 'Load' |
|
1090 |
itemValue: doLoad |
|
1091 |
translateLabel: true |
|
1092 |
isButton: true |
|
1093 |
labelImage: (ResourceRetriever ToolbarIconLibrary loadFromMethodIcon) |
|
1373 | 1094 |
) |
1909 | 1095 |
(MenuItem |
1096 |
activeHelpKey: fileSave |
|
1097 |
label: 'Save' |
|
1098 |
itemValue: doSave |
|
1099 |
translateLabel: true |
|
1100 |
isButton: true |
|
1101 |
labelImage: (ResourceRetriever ToolbarIconLibrary saveAsMethodIcon) |
|
1373 | 1102 |
) |
1909 | 1103 |
(MenuItem |
1104 |
label: '-' |
|
1373 | 1105 |
) |
1909 | 1106 |
(MenuItem |
1107 |
activeHelpKey: editCut |
|
1108 |
enabled: hasSelectionHolder |
|
1109 |
label: 'Cut' |
|
1110 |
itemValue: doCut |
|
1111 |
translateLabel: true |
|
1112 |
isButton: true |
|
1113 |
labelImage: (ResourceRetriever ToolbarIconLibrary cutWidgetIcon) |
|
1373 | 1114 |
) |
1909 | 1115 |
(MenuItem |
1116 |
activeHelpKey: editCopy |
|
1117 |
enabled: hasSelectionHolder |
|
1118 |
label: 'Copy' |
|
1119 |
itemValue: doCopy |
|
1120 |
translateLabel: true |
|
1121 |
isButton: true |
|
1122 |
labelImage: (ResourceRetriever ToolbarIconLibrary copyWidgetIcon) |
|
1373 | 1123 |
) |
1909 | 1124 |
(MenuItem |
1125 |
activeHelpKey: editPaste |
|
2383
e76cc686a293
rename #valueOfCanbPate to #canPasteHolder
Stefan Vogel <sv@exept.de>
parents:
2346
diff
changeset
|
1126 |
enabled: canPasteHolder |
1909 | 1127 |
label: 'Paste' |
1128 |
itemValue: doPaste |
|
1129 |
translateLabel: true |
|
1130 |
isButton: true |
|
1131 |
labelImage: (ResourceRetriever ToolbarIconLibrary pasteWidgetIcon) |
|
1373 | 1132 |
) |
1909 | 1133 |
(MenuItem |
1134 |
activeHelpKey: editDelete |
|
1135 |
enabled: hasSelectionHolder |
|
1136 |
label: 'Delete' |
|
1137 |
itemValue: doDelete |
|
1138 |
translateLabel: true |
|
1139 |
isButton: true |
|
1140 |
isVisible: false |
|
1141 |
labelImage: (ResourceRetriever ToolbarIconLibrary delete22x22Icon) |
|
1373 | 1142 |
) |
1909 | 1143 |
(MenuItem |
1144 |
label: '-' |
|
1373 | 1145 |
) |
1909 | 1146 |
(MenuItem |
1147 |
activeHelpKey: addTabItem |
|
1148 |
label: 'Add Tab Item' |
|
1149 |
itemValue: doCreate |
|
1150 |
translateLabel: true |
|
1151 |
isButton: true |
|
1152 |
labelImage: (ResourceRetriever nil newTabItemIcon) |
|
1373 | 1153 |
) |
1909 | 1154 |
(MenuItem |
1155 |
label: '' |
|
1373 | 1156 |
) |
1909 | 1157 |
(MenuItem |
1158 |
activeHelpKey: editMoveUp |
|
1159 |
enabled: canMoveTabItemUpOrDown |
|
1160 |
label: 'Move Tab Up' |
|
1161 |
itemValue: doMoveTabUpOrDown: |
|
1162 |
translateLabel: true |
|
1163 |
isButton: true |
|
1164 |
startGroup: right |
|
1165 |
labelImage: (ResourceRetriever XPToolbarIconLibrary up22x22Icon) |
|
1166 |
argument: up |
|
1373 | 1167 |
) |
1909 | 1168 |
(MenuItem |
1169 |
activeHelpKey: editMoveDown |
|
1170 |
enabled: canMoveTabItemUpOrDown |
|
1171 |
label: 'Move Tab Down' |
|
1172 |
itemValue: doMoveTabUpOrDown: |
|
1173 |
translateLabel: true |
|
1174 |
isButton: true |
|
1175 |
startGroup: right |
|
1176 |
labelImage: (ResourceRetriever XPToolbarIconLibrary down22x22Icon) |
|
1177 |
argument: down |
|
1373 | 1178 |
) |
1179 |
) |
|
1180 |
nil |
|
1181 |
nil |
|
739 | 1182 |
) |
1183 |
! ! |
|
1184 |
||
1185 |
!TabListEditor methodsFor:'aspects'! |
|
1186 |
||
1373 | 1187 |
autoHideScrollBars |
1188 |
|holder| |
|
1189 |
||
1190 |
(holder := builder bindingAt:#autoHideScrollBars) isNil ifTrue:[ |
|
1191 |
builder aspectAt:#autoHideScrollBars put:(holder := 1 asValue). |
|
1192 |
holder addDependent: self |
|
1193 |
]. |
|
1194 |
^ holder. |
|
1195 |
! |
|
1196 |
||
739 | 1197 |
canMoveTabItemUpOrDown |
1373 | 1198 |
^ builder booleanValueAspectFor:#canMoveTabItemUpOrDown |
1199 |
! |
|
1200 |
||
1374 | 1201 |
hasSelectionHolder |
1202 |
^ builder booleanValueAspectFor:#hasSelectionHolder |
|
1203 |
! |
|
1204 |
||
1205 |
hiddenAccelerator |
|
1206 |
"used to set menu entries with an accelerator not visible to the operator |
|
1207 |
" |
|
1208 |
^ false |
|
1209 |
! |
|
1210 |
||
1326 | 1211 |
inputGroup |
1212 |
||
1213 |
|holder| |
|
1214 |
||
1215 |
(holder := builder bindingAt:#inputGroup) isNil ifTrue:[ |
|
1216 |
builder aspectAt:#inputGroup put:(holder := EnterFieldGroup new) |
|
1217 |
]. |
|
1218 |
^ holder. |
|
1219 |
||
1220 |
||
1221 |
! |
|
1222 |
||
1373 | 1223 |
listOfTabs |
1224 |
^ listOfTabs |
|
1225 |
! |
|
1226 |
||
1227 |
noteBookModel |
|
1228 |
|holder| |
|
1229 |
||
1230 |
(holder := builder bindingAt:#noteBookModel) isNil ifTrue:[ |
|
1231 |
holder := 0 asValue. |
|
1232 |
builder aspectAt:#noteBookModel put:holder. |
|
1233 |
]. |
|
1234 |
^ holder. |
|
1235 |
! |
|
1236 |
||
1237 |
noteBookTabList |
|
1238 |
"Generated by the TabListEditor" |
|
1239 |
||
1240 |
|list| |
|
1241 |
||
1242 |
(list := builder bindingAt:#noteBookTabList) isNil ifTrue:[ |
|
1243 |
builder aspectAt:#noteBookTabList put:(list := self class noteBookTabList). |
|
1244 |
]. |
|
1245 |
^ list |
|
739 | 1246 |
! |
1247 |
||
1248 |
selectionHolder |
|
1249 |
"holder which keeps the current selection |
|
1250 |
" |
|
1251 |
|holder| |
|
1252 |
||
1253 |
(holder := builder bindingAt:#selectionHolder) isNil ifTrue:[ |
|
1373 | 1254 |
holder := 0 asValue. |
739 | 1255 |
builder aspectAt:#selectionHolder put:holder. |
1373 | 1256 |
holder addDependent:self. |
739 | 1257 |
]. |
1258 |
^ holder |
|
1259 |
! |
|
1260 |
||
1373 | 1261 |
testItemList |
739 | 1262 |
|holder| |
1263 |
||
1373 | 1264 |
(holder := builder bindingAt:#testItemList) isNil ifTrue:[ |
1265 |
holder := ValueHolder new. |
|
1266 |
builder aspectAt:#testItemList put:holder. |
|
739 | 1267 |
]. |
1373 | 1268 |
^ holder. |
739 | 1269 |
! |
1270 |
||
1271 |
testMode |
|
1272 |
||
1273 |
|holder| |
|
1274 |
||
1275 |
(holder := builder bindingAt:#testMode) isNil ifTrue:[ |
|
1276 |
builder aspectAt:#testMode put:(holder := false asValue). |
|
1277 |
holder addDependent: self |
|
1278 |
]. |
|
1279 |
^ holder |
|
1280 |
||
1281 |
! ! |
|
1282 |
||
1283 |
!TabListEditor methodsFor:'building'! |
|
1284 |
||
1373 | 1285 |
buildFromResourceSpec:aListSpec |
1286 |
self buildFromTabList:aListSpec |
|
739 | 1287 |
! |
1288 |
||
1289 |
buildFromTabList: aTabList |
|
1290 |
"build from a aTabList" |
|
1291 |
||
1373 | 1292 |
self selection:0. |
739 | 1293 |
listOfTabs removeAll. |
1294 |
||
2819 | 1295 |
aTabList do:[:aTabItem| |
1296 |
self assert:(aTabItem isKindOf:TabItem). |
|
1297 |
listOfTabs add: aTabItem |
|
1298 |
]. |
|
1972 | 1299 |
self clearModified. |
1374 | 1300 |
listOfTabs notEmpty ifTrue:[ self selection:1 ]. |
2819 | 1301 |
|
1302 |
"Modified: / 08-11-2010 / 13:57:27 / cg" |
|
1972 | 1303 |
! |
739 | 1304 |
|
1972 | 1305 |
loadFromClass:aClass andSelector:aSelector |
1306 |
"build from class and selector" |
|
1307 |
||
1308 |
|cls spec| |
|
1309 |
||
1310 |
self assert:(aClass isNil or:[aClass isClass]). |
|
1311 |
||
1312 |
self testMode value: false. |
|
1313 |
self selection:0. |
|
1314 |
||
1315 |
"if opened on a tab list" |
|
1316 |
(aClass isNil and: [aSelector isNil and: [listOfTabs size > 0]]) ifFalse:[ |
|
1317 |
listOfTabs removeAll. |
|
1318 |
||
1319 |
cls := aClass isBehavior ifTrue:[ aClass ] ifFalse:[ self resolveName:aClass]. |
|
1320 |
specSelector := aSelector. |
|
1321 |
||
1322 |
cls notNil ifTrue:[ |
|
1323 |
specSelector notNil ifTrue:[ |
|
1324 |
||
1325 |
(cls respondsTo: aSelector) ifTrue:[ |
|
1326 |
spec := cls perform: aSelector. |
|
1327 |
]. |
|
1328 |
spec size ~~ 0 ifTrue:[ |
|
2819 | 1329 |
spec do:[:aTabOrArray| |