author | Claus Gittinger <cg@exept.de> |
Thu, 14 Oct 2004 15:16:44 +0200 | |
changeset 1882 | 80845a794f11 |
parent 1878 | 6ae0cf83738f |
child 1894 | ce8fcfb4389a |
permissions | -rw-r--r-- |
60 | 1 |
" |
156 | 2 |
COPYRIGHT (c) 1995 by Claus Gittinger / eXept Software AG |
1834 | 3 |
All Rights Reserved |
60 | 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 |
|
742 | 7 |
inclusion of the above copyright notice. This software may not |
60 | 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 |
||
1387 | 13 |
"{ Package: 'stx:libtool2' }" |
14 |
||
60 | 15 |
UIObjectView subclass:#UIPainterView |
278 | 16 |
instanceVariableNames:'treeView listHolder superclassName className methodName |
1467
b46624bb6994
use white handles, if the views background color is dark.
Claus Gittinger <cg@exept.de>
parents:
1450
diff
changeset
|
17 |
categoryName handleColorBlack handleColorWhite handleMasterColor' |
925
e6ddd46581c3
added option of generating aspects as instvars.
Claus Gittinger <cg@exept.de>
parents:
887
diff
changeset
|
18 |
classVariableNames:'HandCursor RedefineAspectMethods AspectsAsInstances' |
60 | 19 |
poolDictionaries:'' |
20 |
category:'Interface-UIPainter' |
|
21 |
! |
|
22 |
||
211 | 23 |
Object subclass:#ViewProperty |
24 |
instanceVariableNames:'view spec identifier' |
|
25 |
classVariableNames:'Identifier' |
|
26 |
poolDictionaries:'' |
|
27 |
privateIn:UIPainterView |
|
28 |
! |
|
29 |
||
60 | 30 |
!UIPainterView class methodsFor:'documentation'! |
31 |
||
32 |
copyright |
|
33 |
" |
|
156 | 34 |
COPYRIGHT (c) 1995 by Claus Gittinger / eXept Software AG |
1834 | 35 |
All Rights Reserved |
60 | 36 |
|
37 |
This software is furnished under a license and may be used |
|
38 |
only in accordance with the terms of that license and with the |
|
742 | 39 |
inclusion of the above copyright notice. This software may not |
60 | 40 |
be provided or otherwise made available to, or used by, any |
41 |
other person. No title to or ownership of the software is |
|
42 |
hereby transferred. |
|
43 |
" |
|
44 |
! |
|
45 |
||
46 |
documentation |
|
47 |
" |
|
128 | 48 |
buildIn view used by the UIPainter; from this view, the layout of the |
49 |
new application derives from. |
|
50 |
||
51 |
[see also:] |
|
1834 | 52 |
UIBuilder |
53 |
UIObjectView |
|
156 | 54 |
|
55 |
[author:] |
|
1834 | 56 |
Claus Gittinger |
57 |
Claus Atzkern |
|
60 | 58 |
" |
59 |
! ! |
|
60 |
||
1225 | 61 |
!UIPainterView class methodsFor:'initialization'! |
62 |
||
63 |
initialize |
|
64 |
||
1494 | 65 |
AspectsAsInstances := true. "/ false. |
1225 | 66 |
RedefineAspectMethods := false. |
67 |
||
68 |
"Created: / 22.9.1999 / 12:32:31 / stefan" |
|
69 |
! ! |
|
70 |
||
698 | 71 |
!UIPainterView class methodsFor:'code generation mode'! |
72 |
||
925
e6ddd46581c3
added option of generating aspects as instvars.
Claus Gittinger <cg@exept.de>
parents:
887
diff
changeset
|
73 |
generateAspectsAsInstanceVariables |
e6ddd46581c3
added option of generating aspects as instvars.
Claus Gittinger <cg@exept.de>
parents:
887
diff
changeset
|
74 |
"if on, aspects are held as instance variables; |
e6ddd46581c3
added option of generating aspects as instvars.
Claus Gittinger <cg@exept.de>
parents:
887
diff
changeset
|
75 |
if off (the default), they are kept in the bindings dictionary. |
e6ddd46581c3
added option of generating aspects as instvars.
Claus Gittinger <cg@exept.de>
parents:
887
diff
changeset
|
76 |
" |
e6ddd46581c3
added option of generating aspects as instvars.
Claus Gittinger <cg@exept.de>
parents:
887
diff
changeset
|
77 |
^ AspectsAsInstances |
e6ddd46581c3
added option of generating aspects as instvars.
Claus Gittinger <cg@exept.de>
parents:
887
diff
changeset
|
78 |
|
e6ddd46581c3
added option of generating aspects as instvars.
Claus Gittinger <cg@exept.de>
parents:
887
diff
changeset
|
79 |
"Created: / 29.7.1998 / 11:21:38 / cg" |
e6ddd46581c3
added option of generating aspects as instvars.
Claus Gittinger <cg@exept.de>
parents:
887
diff
changeset
|
80 |
"Modified: / 29.7.1998 / 11:22:01 / cg" |
e6ddd46581c3
added option of generating aspects as instvars.
Claus Gittinger <cg@exept.de>
parents:
887
diff
changeset
|
81 |
! |
e6ddd46581c3
added option of generating aspects as instvars.
Claus Gittinger <cg@exept.de>
parents:
887
diff
changeset
|
82 |
|
e6ddd46581c3
added option of generating aspects as instvars.
Claus Gittinger <cg@exept.de>
parents:
887
diff
changeset
|
83 |
generateAspectsAsInstanceVariables:aBoolean |
e6ddd46581c3
added option of generating aspects as instvars.
Claus Gittinger <cg@exept.de>
parents:
887
diff
changeset
|
84 |
"if on, aspects are held as instance variables; |
e6ddd46581c3
added option of generating aspects as instvars.
Claus Gittinger <cg@exept.de>
parents:
887
diff
changeset
|
85 |
if off (the default), they are kept in the bindings dictionary. |
e6ddd46581c3
added option of generating aspects as instvars.
Claus Gittinger <cg@exept.de>
parents:
887
diff
changeset
|
86 |
" |
e6ddd46581c3
added option of generating aspects as instvars.
Claus Gittinger <cg@exept.de>
parents:
887
diff
changeset
|
87 |
AspectsAsInstances := aBoolean |
e6ddd46581c3
added option of generating aspects as instvars.
Claus Gittinger <cg@exept.de>
parents:
887
diff
changeset
|
88 |
|
e6ddd46581c3
added option of generating aspects as instvars.
Claus Gittinger <cg@exept.de>
parents:
887
diff
changeset
|
89 |
"Created: / 29.7.1998 / 11:21:26 / cg" |
e6ddd46581c3
added option of generating aspects as instvars.
Claus Gittinger <cg@exept.de>
parents:
887
diff
changeset
|
90 |
"Modified: / 29.7.1998 / 11:22:11 / cg" |
e6ddd46581c3
added option of generating aspects as instvars.
Claus Gittinger <cg@exept.de>
parents:
887
diff
changeset
|
91 |
! |
e6ddd46581c3
added option of generating aspects as instvars.
Claus Gittinger <cg@exept.de>
parents:
887
diff
changeset
|
92 |
|
742 | 93 |
redefineAspectMethods |
698 | 94 |
"redefine methods yes or no. If a method is defined in super class |
95 |
should the message be reinstalled ? |
|
96 |
" |
|
1225 | 97 |
^ RedefineAspectMethods |
698 | 98 |
|
1225 | 99 |
"Modified: / 22.9.1999 / 12:33:03 / stefan" |
698 | 100 |
! |
101 |
||
742 | 102 |
redefineAspectMethods:aBoolean |
698 | 103 |
"redefine methods yes or no. If a method is defined in super class |
104 |
should the message be reinstalled ? |
|
105 |
" |
|
742 | 106 |
RedefineAspectMethods := aBoolean |
698 | 107 |
|
108 |
||
109 |
! ! |
|
110 |
||
60 | 111 |
!UIPainterView class methodsFor:'defaults'! |
112 |
||
1834 | 113 |
defaultMenuMessage |
60 | 114 |
"This message is the default yo be sent to the menuHolder to get a menu |
115 |
" |
|
121 | 116 |
^ #showMiddleButtonMenu |
60 | 117 |
|
118 |
||
119 |
! ! |
|
120 |
||
121 |
!UIPainterView methodsFor:'accessing'! |
|
122 |
||
123 |
application |
|
124 |
^ nil |
|
125 |
||
126 |
"Modified: 6.9.1995 / 00:46:44 / claus" |
|
127 |
! |
|
128 |
||
78 | 129 |
applicationName |
130 |
^ self className |
|
131 |
! |
|
132 |
||
133 |
applicationName:aName |
|
134 |
self className:aName |
|
135 |
! |
|
136 |
||
60 | 137 |
className |
138 |
^ className |
|
139 |
! |
|
140 |
||
78 | 141 |
className:aName |
142 |
className := aName |
|
60 | 143 |
! |
144 |
||
145 |
className:aClassName superclassName:aSuperclassName selector:aSelector |
|
78 | 146 |
className := aClassName. |
60 | 147 |
superclassName := aSuperclassName. |
78 | 148 |
methodName := aSelector. |
60 | 149 |
|
150 |
! |
|
151 |
||
152 |
methodName |
|
153 |
^ methodName |
|
154 |
! |
|
155 |
||
78 | 156 |
methodName:aName |
157 |
methodName := aName |
|
60 | 158 |
! |
159 |
||
160 |
selectNames:aStringOrCollection |
|
1031 | 161 |
|prop coll s n newSel| |
162 |
||
163 |
(aStringOrCollection size == 0) ifTrue:[ |
|
1834 | 164 |
newSel := nil. |
1031 | 165 |
] ifFalse:[ |
1834 | 166 |
(s := aStringOrCollection) isString ifFalse:[ |
167 |
s size == 1 ifTrue:[ |
|
168 |
s := s first |
|
169 |
] ifFalse:[ |
|
170 |
coll := OrderedCollection new. |
|
171 |
||
172 |
s do:[:aName| |
|
173 |
(prop := self propertyOfName:aName) notNil ifTrue:[ |
|
174 |
coll add:(prop view) |
|
175 |
] |
|
176 |
]. |
|
177 |
(n := coll size) == 1 ifTrue:[ |
|
178 |
newSel := coll at:1 |
|
179 |
] ifFalse:[ |
|
180 |
n == 0 ifTrue:[ |
|
181 |
newSel := nil |
|
182 |
] ifFalse:[ |
|
183 |
newSel := coll |
|
184 |
] |
|
185 |
]. |
|
186 |
^ self select:newSel. |
|
187 |
] |
|
188 |
]. |
|
189 |
||
190 |
prop := self propertyOfName:s. |
|
191 |
prop isNil ifTrue:[ |
|
192 |
newSel := nil |
|
193 |
] ifFalse:[ |
|
194 |
newSel := prop view |
|
195 |
]. |
|
60 | 196 |
]. |
197 |
||
1031 | 198 |
^ self select:newSel |
60 | 199 |
! ! |
200 |
||
111 | 201 |
!UIPainterView methodsFor:'change & update'! |
202 |
||
223 | 203 |
layoutChanged |
1445 | 204 |
treeView notNil ifTrue:[ |
1834 | 205 |
treeView layoutChanged |
1445 | 206 |
] |
111 | 207 |
! ! |
208 |
||
60 | 209 |
!UIPainterView methodsFor:'copy & cut & paste'! |
210 |
||
1744
c59a91953b64
paste with no container selected: search for a good one
Claus Gittinger <cg@exept.de>
parents:
1733
diff
changeset
|
211 |
commonContainerOf:someComponents |
c59a91953b64
paste with no container selected: search for a good one
Claus Gittinger <cg@exept.de>
parents:
1733
diff
changeset
|
212 |
|container| |
c59a91953b64
paste with no container selected: search for a good one
Claus Gittinger <cg@exept.de>
parents:
1733
diff
changeset
|
213 |
|
c59a91953b64
paste with no container selected: search for a good one
Claus Gittinger <cg@exept.de>
parents:
1733
diff
changeset
|
214 |
container := someComponents first container. |
c59a91953b64
paste with no container selected: search for a good one
Claus Gittinger <cg@exept.de>
parents:
1733
diff
changeset
|
215 |
[container notNil |
c59a91953b64
paste with no container selected: search for a good one
Claus Gittinger <cg@exept.de>
parents:
1733
diff
changeset
|
216 |
and:[ (someComponents conform:[:eachComponent | eachComponent isComponentOf:container]) not]] |
1834 | 217 |
whileTrue:[ |
218 |
container := container container. |
|
1744
c59a91953b64
paste with no container selected: search for a good one
Claus Gittinger <cg@exept.de>
parents:
1733
diff
changeset
|
219 |
]. |
c59a91953b64
paste with no container selected: search for a good one
Claus Gittinger <cg@exept.de>
parents:
1733
diff
changeset
|
220 |
^ container |
c59a91953b64
paste with no container selected: search for a good one
Claus Gittinger <cg@exept.de>
parents:
1733
diff
changeset
|
221 |
! |
c59a91953b64
paste with no container selected: search for a good one
Claus Gittinger <cg@exept.de>
parents:
1733
diff
changeset
|
222 |
|
60 | 223 |
copySelection |
224 |
"copy the selection into the cut&paste-buffer |
|
225 |
" |
|
698 | 226 |
|specs coll sel| |
227 |
||
228 |
sel := treeView selection. |
|
71 | 229 |
|
128 | 230 |
coll := self minSetOfSuperViews:(self selection). |
60 | 231 |
|
71 | 232 |
coll notNil ifTrue:[ |
776 | 233 |
"/ self select:nil. |
1870 | 234 |
specs := coll collect:[:aView| self fullSpecFor:aView ]. |
235 |
self setClipboardObject:specs. |
|
776 | 236 |
"/ treeView selection: sel |
60 | 237 |
]. |
238 |
! |
|
239 |
||
723 | 240 |
deleteSelection |
887
79a6e12e1d0f
after deleting a widget do select the neighbour then the parent (step 2)
tz
parents:
886
diff
changeset
|
241 |
"delete the selection buffered |
79a6e12e1d0f
after deleting a widget do select the neighbour then the parent (step 2)
tz
parents:
886
diff
changeset
|
242 |
" |
79a6e12e1d0f
after deleting a widget do select the neighbour then the parent (step 2)
tz
parents:
886
diff
changeset
|
243 |
self deleteSelectionBuffered: true |
79a6e12e1d0f
after deleting a widget do select the neighbour then the parent (step 2)
tz
parents:
886
diff
changeset
|
244 |
! |
79a6e12e1d0f
after deleting a widget do select the neighbour then the parent (step 2)
tz
parents:
886
diff
changeset
|
245 |
|
79a6e12e1d0f
after deleting a widget do select the neighbour then the parent (step 2)
tz
parents:
886
diff
changeset
|
246 |
deleteSelectionBuffered: buffered |
698 | 247 |
"cut the selection into the cut&paste-buffer |
62 | 248 |
and open a transaction |
60 | 249 |
" |
1574 | 250 |
|specs coll index oldSelection newSelection treeModel children size nd| |
71 | 251 |
|
1621
112670159075
cg: check if selection change is allowed BEFORE changing the
tm
parents:
1574
diff
changeset
|
252 |
treeView askForSelectionChangeAllowed ifFalse:[^ self]. |
112670159075
cg: check if selection change is allowed BEFORE changing the
tm
parents:
1574
diff
changeset
|
253 |
|
128 | 254 |
coll := self minSetOfSuperViews:(self selection). |
60 | 255 |
|
78 | 256 |
coll notNil ifTrue:[ |
1870 | 257 |
treeView cvsEventsDisabledDo:[ |
258 |
treeModel := treeView model. |
|
259 |
oldSelection := treeModel selectedNodes at:1 ifAbsent: nil. |
|
260 |
||
261 |
oldSelection notNil ifTrue:[ |
|
262 |
children := oldSelection parent children. |
|
263 |
(size := children size) > 1 ifTrue:[ |
|
264 |
index := children identityIndexOf:oldSelection. |
|
265 |
size == index ifTrue:[ |
|
266 |
index := index - 1 |
|
267 |
]. |
|
268 |
newSelection := children at:index ifAbsent:1. |
|
269 |
] ifFalse:[ |
|
270 |
newSelection := oldSelection parent |
|
271 |
]. |
|
272 |
newSelection := treeModel indexOf:newSelection. |
|
273 |
] ifFalse:[ |
|
274 |
newSelection := 1 |
|
275 |
]. |
|
276 |
||
277 |
self hideSelection. |
|
278 |
selection := nil. |
|
279 |
specs := coll collect:[:aView| self fullSpecFor:aView ]. |
|
280 |
||
281 |
self withinTransaction:#cut objects:coll do:[ |
|
282 |
coll reverseDo:[:aView| |
|
283 |
self createUndoRemove:aView. |
|
284 |
self remove:aView. |
|
285 |
] |
|
286 |
]. |
|
287 |
buffered ifTrue: [self setClipboardObject:specs]. |
|
288 |
treeView selection:nil. |
|
289 |
treeView selection:(Array with: newSelection). |
|
290 |
(nd := treeView selectedNode) notNil ifTrue:[ |
|
291 |
self setSelection:nd contents view withRedraw:true. |
|
292 |
] |
|
293 |
] |
|
698 | 294 |
] |
295 |
! |
|
296 |
||
723 | 297 |
deleteTotalSelection |
887
79a6e12e1d0f
after deleting a widget do select the neighbour then the parent (step 2)
tz
parents:
886
diff
changeset
|
298 |
"delete the selection |
1834 | 299 |
" |
887
79a6e12e1d0f
after deleting a widget do select the neighbour then the parent (step 2)
tz
parents:
886
diff
changeset
|
300 |
self deleteSelectionBuffered: false |
60 | 301 |
! |
302 |
||
1832 | 303 |
getSelectedViewsAndSpecs |
304 |
"return an array filed with selected views and corresponding specs. |
|
305 |
Nil if there is none. |
|
306 |
" |
|
307 |
|specs coll sel| |
|
308 |
||
309 |
sel := treeView selection. |
|
310 |
||
311 |
coll := self minSetOfSuperViews:(self selection). |
|
312 |
||
313 |
coll isNil ifTrue:[^ nil]. |
|
314 |
||
315 |
specs := coll collect:[:aView| self fullSpecFor:aView ]. |
|
316 |
^ Array with: coll with: specs |
|
317 |
! |
|
318 |
||
60 | 319 |
pasteBuffer |
62 | 320 |
"add the objects in the paste-buffer to the object view |
60 | 321 |
" |
223 | 322 |
|sel| |
323 |
||
1872 | 324 |
sel := self pasteSpecifications:(self getClipboardObject) keepLayout:false. |
223 | 325 |
|
326 |
sel notNil ifTrue:[ |
|
1872 | 327 |
self select:sel. |
223 | 328 |
]. |
89 | 329 |
! |
330 |
||
1338
3c1a528c50db
added paste-keeping-absolute-position function
Claus Gittinger <cg@exept.de>
parents:
1308
diff
changeset
|
331 |
pasteKeepingPosition |
1834 | 332 |
"add the objects in the paste-buffer to the object view; |
1338
3c1a528c50db
added paste-keeping-absolute-position function
Claus Gittinger <cg@exept.de>
parents:
1308
diff
changeset
|
333 |
translate the layout as appropriate, to position the component |
3c1a528c50db
added paste-keeping-absolute-position function
Claus Gittinger <cg@exept.de>
parents:
1308
diff
changeset
|
334 |
at the same absolute position (relative to topView) as before |
3c1a528c50db
added paste-keeping-absolute-position function
Claus Gittinger <cg@exept.de>
parents:
1308
diff
changeset
|
335 |
" |
3c1a528c50db
added paste-keeping-absolute-position function
Claus Gittinger <cg@exept.de>
parents:
1308
diff
changeset
|
336 |
|sel| |
3c1a528c50db
added paste-keeping-absolute-position function
Claus Gittinger <cg@exept.de>
parents:
1308
diff
changeset
|
337 |
|
3c1a528c50db
added paste-keeping-absolute-position function
Claus Gittinger <cg@exept.de>
parents:
1308
diff
changeset
|
338 |
sel := self |
1872 | 339 |
pasteSpecifications:(self getClipboardObject) |
340 |
keepLayout:true |
|
341 |
keepPosition:true |
|
342 |
at:nil. |
|
1338
3c1a528c50db
added paste-keeping-absolute-position function
Claus Gittinger <cg@exept.de>
parents:
1308
diff
changeset
|
343 |
|
3c1a528c50db
added paste-keeping-absolute-position function
Claus Gittinger <cg@exept.de>
parents:
1308
diff
changeset
|
344 |
sel notNil ifTrue:[ |
1872 | 345 |
self select:sel. |
1338
3c1a528c50db
added paste-keeping-absolute-position function
Claus Gittinger <cg@exept.de>
parents:
1308
diff
changeset
|
346 |
]. |
3c1a528c50db
added paste-keeping-absolute-position function
Claus Gittinger <cg@exept.de>
parents:
1308
diff
changeset
|
347 |
! |
3c1a528c50db
added paste-keeping-absolute-position function
Claus Gittinger <cg@exept.de>
parents:
1308
diff
changeset
|
348 |
|
89 | 349 |
pasteSpecifications:aSpecificationOrList keepLayout:keepLayout |
223 | 350 |
"add the specs to the object view; returns list of pasted components |
89 | 351 |
" |
278 | 352 |
|
353 |
^ self |
|
1834 | 354 |
pasteSpecifications:aSpecificationOrList |
355 |
keepLayout:keepLayout |
|
356 |
at:nil |
|
278 | 357 |
|
358 |
"Modified: 11.8.1997 / 01:00:35 / cg" |
|
359 |
! |
|
360 |
||
361 |
pasteSpecifications:aSpecificationOrList keepLayout:keepLayout at:aPointOrNil |
|
362 |
"add the specs to the object view; returns list of pasted components |
|
363 |
" |
|
1834 | 364 |
^ self |
365 |
pasteSpecifications:aSpecificationOrList |
|
366 |
keepLayout:keepLayout |
|
367 |
keepPosition:false |
|
368 |
at:aPointOrNil |
|
1338
3c1a528c50db
added paste-keeping-absolute-position function
Claus Gittinger <cg@exept.de>
parents:
1308
diff
changeset
|
369 |
|
3c1a528c50db
added paste-keeping-absolute-position function
Claus Gittinger <cg@exept.de>
parents:
1308
diff
changeset
|
370 |
! |
3c1a528c50db
added paste-keeping-absolute-position function
Claus Gittinger <cg@exept.de>
parents:
1308
diff
changeset
|
371 |
|
3c1a528c50db
added paste-keeping-absolute-position function
Claus Gittinger <cg@exept.de>
parents:
1308
diff
changeset
|
372 |
pasteSpecifications:aSpecificationOrList keepLayout:keepLayout keepPosition:keepPosition at:aPointOrNil |
1878
6ae0cf83738f
Use #setClipboardText: instead of obsolete #setTextSelection:
Stefan Vogel <sv@exept.de>
parents:
1872
diff
changeset
|
373 |
"add the specs to the object view; returns list of pasted components" |
6ae0cf83738f
Use #setClipboardText: instead of obsolete #setTextSelection:
Stefan Vogel <sv@exept.de>
parents:
1872
diff
changeset
|
374 |
|
1744
c59a91953b64
paste with no container selected: search for a good one
Claus Gittinger <cg@exept.de>
parents:
1733
diff
changeset
|
375 |
|paste pasteOrigin pasteOffset builder newSel bounds containerToPasteInto| |
1621
112670159075
cg: check if selection change is allowed BEFORE changing the
tm
parents:
1574
diff
changeset
|
376 |
|
112670159075
cg: check if selection change is allowed BEFORE changing the
tm
parents:
1574
diff
changeset
|
377 |
treeView askForSelectionChangeAllowed ifFalse:[^ nil]. |
112670159075
cg: check if selection change is allowed BEFORE changing the
tm
parents:
1574
diff
changeset
|
378 |
|
1744
c59a91953b64
paste with no container selected: search for a good one
Claus Gittinger <cg@exept.de>
parents:
1733
diff
changeset
|
379 |
containerToPasteInto := self singleSelection. |
c59a91953b64
paste with no container selected: search for a good one
Claus Gittinger <cg@exept.de>
parents:
1733
diff
changeset
|
380 |
containerToPasteInto isNil ifTrue:[ |
1878
6ae0cf83738f
Use #setClipboardText: instead of obsolete #setTextSelection:
Stefan Vogel <sv@exept.de>
parents:
1872
diff
changeset
|
381 |
self selection size > 0 ifTrue:[ |
6ae0cf83738f
Use #setClipboardText: instead of obsolete #setTextSelection:
Stefan Vogel <sv@exept.de>
parents:
1872
diff
changeset
|
382 |
containerToPasteInto := self commonContainerOf:self selection |
6ae0cf83738f
Use #setClipboardText: instead of obsolete #setTextSelection:
Stefan Vogel <sv@exept.de>
parents:
1872
diff
changeset
|
383 |
] ifFalse:[ |
6ae0cf83738f
Use #setClipboardText: instead of obsolete #setTextSelection:
Stefan Vogel <sv@exept.de>
parents:
1872
diff
changeset
|
384 |
containerToPasteInto := self |
6ae0cf83738f
Use #setClipboardText: instead of obsolete #setTextSelection:
Stefan Vogel <sv@exept.de>
parents:
1872
diff
changeset
|
385 |
]. |
6ae0cf83738f
Use #setClipboardText: instead of obsolete #setTextSelection:
Stefan Vogel <sv@exept.de>
parents:
1872
diff
changeset
|
386 |
self selection:containerToPasteInto. |
1744
c59a91953b64
paste with no container selected: search for a good one
Claus Gittinger <cg@exept.de>
parents:
1733
diff
changeset
|
387 |
]. |
c59a91953b64
paste with no container selected: search for a good one
Claus Gittinger <cg@exept.de>
parents:
1733
diff
changeset
|
388 |
|
c59a91953b64
paste with no container selected: search for a good one
Claus Gittinger <cg@exept.de>
parents:
1733
diff
changeset
|
389 |
(self canPasteInto:containerToPasteInto) ifFalse:[ |
1878
6ae0cf83738f
Use #setClipboardText: instead of obsolete #setTextSelection:
Stefan Vogel <sv@exept.de>
parents:
1872
diff
changeset
|
390 |
containerToPasteInto notNil ifTrue:[ |
6ae0cf83738f
Use #setClipboardText: instead of obsolete #setTextSelection:
Stefan Vogel <sv@exept.de>
parents:
1872
diff
changeset
|
391 |
"/ search up parent list for something we can paste into |
6ae0cf83738f
Use #setClipboardText: instead of obsolete #setTextSelection:
Stefan Vogel <sv@exept.de>
parents:
1872
diff
changeset
|
392 |
[containerToPasteInto notNil and:[(self canPasteInto:containerToPasteInto) not]] whileTrue:[ |
6ae0cf83738f
Use #setClipboardText: instead of obsolete #setTextSelection:
Stefan Vogel <sv@exept.de>
parents:
1872
diff
changeset
|
393 |
containerToPasteInto := containerToPasteInto container. |
6ae0cf83738f
Use #setClipboardText: instead of obsolete #setTextSelection:
Stefan Vogel <sv@exept.de>
parents:
1872
diff
changeset
|
394 |
]. |
6ae0cf83738f
Use #setClipboardText: instead of obsolete #setTextSelection:
Stefan Vogel <sv@exept.de>
parents:
1872
diff
changeset
|
395 |
self selection:containerToPasteInto. |
6ae0cf83738f
Use #setClipboardText: instead of obsolete #setTextSelection:
Stefan Vogel <sv@exept.de>
parents:
1872
diff
changeset
|
396 |
]. |
1621
112670159075
cg: check if selection change is allowed BEFORE changing the
tm
parents:
1574
diff
changeset
|
397 |
]. |
1752 | 398 |
containerToPasteInto isNil ifTrue:[ |
1878
6ae0cf83738f
Use #setClipboardText: instead of obsolete #setTextSelection:
Stefan Vogel <sv@exept.de>
parents:
1872
diff
changeset
|
399 |
containerToPasteInto := self |
1752 | 400 |
]. |
60 | 401 |
|
89 | 402 |
(self canPaste:aSpecificationOrList) ifFalse:[ |
1878
6ae0cf83738f
Use #setClipboardText: instead of obsolete #setTextSelection:
Stefan Vogel <sv@exept.de>
parents:
1872
diff
changeset
|
403 |
Dialog warn:'Cannot paste into selected component (not a container ?)'. |
6ae0cf83738f
Use #setClipboardText: instead of obsolete #setTextSelection:
Stefan Vogel <sv@exept.de>
parents:
1872
diff
changeset
|
404 |
^ nil |
89 | 405 |
]. |
223 | 406 |
|
776 | 407 |
aSpecificationOrList isCollection ifTrue:[ |
1878
6ae0cf83738f
Use #setClipboardText: instead of obsolete #setTextSelection:
Stefan Vogel <sv@exept.de>
parents:
1872
diff
changeset
|
408 |
paste := aSpecificationOrList |
776 | 409 |
] ifFalse:[ |
1878
6ae0cf83738f
Use #setClipboardText: instead of obsolete #setTextSelection:
Stefan Vogel <sv@exept.de>
parents:
1872
diff
changeset
|
410 |
paste := Array with:aSpecificationOrList |
776 | 411 |
]. |
1878
6ae0cf83738f
Use #setClipboardText: instead of obsolete #setTextSelection:
Stefan Vogel <sv@exept.de>
parents:
1872
diff
changeset
|
412 |
self setClipboardObject:nil. |
776 | 413 |
|
414 |
newSel := OrderedCollection new. |
|
415 |
builder := UIBuilder new isEditing:true. |
|
416 |
||
417 |
className notNil ifTrue:[ |
|
1878
6ae0cf83738f
Use #setClipboardText: instead of obsolete #setTextSelection:
Stefan Vogel <sv@exept.de>
parents:
1872
diff
changeset
|
418 |
builder applicationClass:(self resolveName:className) |
776 | 419 |
]. |
420 |
||
1338
3c1a528c50db
added paste-keeping-absolute-position function
Claus Gittinger <cg@exept.de>
parents:
1308
diff
changeset
|
421 |
(keepLayout not or:[keepPosition]) ifTrue:[ |
1878
6ae0cf83738f
Use #setClipboardText: instead of obsolete #setTextSelection:
Stefan Vogel <sv@exept.de>
parents:
1872
diff
changeset
|
422 |
pasteOffset := 0@0. |
6ae0cf83738f
Use #setClipboardText: instead of obsolete #setTextSelection:
Stefan Vogel <sv@exept.de>
parents:
1872
diff
changeset
|
423 |
|
6ae0cf83738f
Use #setClipboardText: instead of obsolete #setTextSelection:
Stefan Vogel <sv@exept.de>
parents:
1872
diff
changeset
|
424 |
keepPosition ifTrue:[ |
6ae0cf83738f
Use #setClipboardText: instead of obsolete #setTextSelection:
Stefan Vogel <sv@exept.de>
parents:
1872
diff
changeset
|
425 |
pasteOrigin := device translatePoint:0@0 |
6ae0cf83738f
Use #setClipboardText: instead of obsolete #setTextSelection:
Stefan Vogel <sv@exept.de>
parents:
1872
diff
changeset
|
426 |
fromView:self |
6ae0cf83738f
Use #setClipboardText: instead of obsolete #setTextSelection:
Stefan Vogel <sv@exept.de>
parents:
1872
diff
changeset
|
427 |
toView:containerToPasteInto. |
6ae0cf83738f
Use #setClipboardText: instead of obsolete #setTextSelection:
Stefan Vogel <sv@exept.de>
parents:
1872
diff
changeset
|
428 |
] ifFalse:[ |
6ae0cf83738f
Use #setClipboardText: instead of obsolete #setTextSelection:
Stefan Vogel <sv@exept.de>
parents:
1872
diff
changeset
|
429 |
aPointOrNil isNil ifTrue:[ |
6ae0cf83738f
Use #setClipboardText: instead of obsolete #setTextSelection:
Stefan Vogel <sv@exept.de>
parents:
1872
diff
changeset
|
430 |
pasteOrigin := self sensor mousePoint. |
6ae0cf83738f
Use #setClipboardText: instead of obsolete #setTextSelection:
Stefan Vogel <sv@exept.de>
parents:
1872
diff
changeset
|
431 |
pasteOrigin := device translatePoint:pasteOrigin |
6ae0cf83738f
Use #setClipboardText: instead of obsolete #setTextSelection:
Stefan Vogel <sv@exept.de>
parents:
1872
diff
changeset
|
432 |
fromView:nil |
6ae0cf83738f
Use #setClipboardText: instead of obsolete #setTextSelection:
Stefan Vogel <sv@exept.de>
parents:
1872
diff
changeset
|
433 |
toView:containerToPasteInto. |
6ae0cf83738f
Use #setClipboardText: instead of obsolete #setTextSelection:
Stefan Vogel <sv@exept.de>
parents:
1872
diff
changeset
|
434 |
] ifFalse:[ |
6ae0cf83738f
Use #setClipboardText: instead of obsolete #setTextSelection:
Stefan Vogel <sv@exept.de>
parents:
1872
diff
changeset
|
435 |
pasteOrigin := device translatePoint:aPointOrNil |
6ae0cf83738f
Use #setClipboardText: instead of obsolete #setTextSelection:
Stefan Vogel <sv@exept.de>
parents:
1872
diff
changeset
|
436 |
fromView:self |
6ae0cf83738f
Use #setClipboardText: instead of obsolete #setTextSelection:
Stefan Vogel <sv@exept.de>
parents:
1872
diff
changeset
|
437 |
toView:containerToPasteInto. |
6ae0cf83738f
Use #setClipboardText: instead of obsolete #setTextSelection:
Stefan Vogel <sv@exept.de>
parents:
1872
diff
changeset
|
438 |
] |
6ae0cf83738f
Use #setClipboardText: instead of obsolete #setTextSelection:
Stefan Vogel <sv@exept.de>
parents:
1872
diff
changeset
|
439 |
]. |
6ae0cf83738f
Use #setClipboardText: instead of obsolete #setTextSelection:
Stefan Vogel <sv@exept.de>
parents:
1872
diff
changeset
|
440 |
|
6ae0cf83738f
Use #setClipboardText: instead of obsolete #setTextSelection:
Stefan Vogel <sv@exept.de>
parents:
1872
diff
changeset
|
441 |
bounds := Rectangle origin:0@0 extent:(containerToPasteInto bounds extent) |
776 | 442 |
]. |
60 | 443 |
|
776 | 444 |
paste do:[:aSpec| |
1878
6ae0cf83738f
Use #setClipboardText: instead of obsolete #setTextSelection:
Stefan Vogel <sv@exept.de>
parents:
1872
diff
changeset
|
445 |
|view newOrigin| |
6ae0cf83738f
Use #setClipboardText: instead of obsolete #setTextSelection:
Stefan Vogel <sv@exept.de>
parents:
1872
diff
changeset
|
446 |
|
6ae0cf83738f
Use #setClipboardText: instead of obsolete #setTextSelection:
Stefan Vogel <sv@exept.de>
parents:
1872
diff
changeset
|
447 |
view := self addSpec:aSpec builder:builder in:containerToPasteInto. |
6ae0cf83738f
Use #setClipboardText: instead of obsolete #setTextSelection:
Stefan Vogel <sv@exept.de>
parents:
1872
diff
changeset
|
448 |
|
6ae0cf83738f
Use #setClipboardText: instead of obsolete #setTextSelection:
Stefan Vogel <sv@exept.de>
parents:
1872
diff
changeset
|
449 |
keepPosition ifTrue:[ |
6ae0cf83738f
Use #setClipboardText: instead of obsolete #setTextSelection:
Stefan Vogel <sv@exept.de>
parents:
1872
diff
changeset
|
450 |
self moveObject:view to:(view origin + pasteOrigin). |
6ae0cf83738f
Use #setClipboardText: instead of obsolete #setTextSelection:
Stefan Vogel <sv@exept.de>
parents:
1872
diff
changeset
|
451 |
] ifFalse:[ |
6ae0cf83738f
Use #setClipboardText: instead of obsolete #setTextSelection:
Stefan Vogel <sv@exept.de>
parents:
1872
diff
changeset
|
452 |
keepLayout ifFalse:[ |
6ae0cf83738f
Use #setClipboardText: instead of obsolete #setTextSelection:
Stefan Vogel <sv@exept.de>
parents:
1872
diff
changeset
|
453 |
(bounds containsPoint:pasteOrigin) ifFalse:[ |
6ae0cf83738f
Use #setClipboardText: instead of obsolete #setTextSelection:
Stefan Vogel <sv@exept.de>
parents:
1872
diff
changeset
|
454 |
newOrigin := pasteOffset. |
6ae0cf83738f
Use #setClipboardText: instead of obsolete #setTextSelection:
Stefan Vogel <sv@exept.de>
parents:
1872
diff
changeset
|
455 |
] ifTrue:[ |
6ae0cf83738f
Use #setClipboardText: instead of obsolete #setTextSelection:
Stefan Vogel <sv@exept.de>
parents:
1872
diff
changeset
|
456 |
newOrigin := pasteOrigin + pasteOffset. |
6ae0cf83738f
Use #setClipboardText: instead of obsolete #setTextSelection:
Stefan Vogel <sv@exept.de>
parents:
1872
diff
changeset
|
457 |
]. |
6ae0cf83738f
Use #setClipboardText: instead of obsolete #setTextSelection:
Stefan Vogel <sv@exept.de>
parents:
1872
diff
changeset
|
458 |
self moveObject:view to:newOrigin. |
6ae0cf83738f
Use #setClipboardText: instead of obsolete #setTextSelection:
Stefan Vogel <sv@exept.de>
parents:
1872
diff
changeset
|
459 |
pasteOffset := pasteOffset + 4 |
6ae0cf83738f
Use #setClipboardText: instead of obsolete #setTextSelection:
Stefan Vogel <sv@exept.de>
parents:
1872
diff
changeset
|
460 |
]. |
6ae0cf83738f
Use #setClipboardText: instead of obsolete #setTextSelection:
Stefan Vogel <sv@exept.de>
parents:
1872
diff
changeset
|
461 |
]. |
6ae0cf83738f
Use #setClipboardText: instead of obsolete #setTextSelection:
Stefan Vogel <sv@exept.de>
parents:
1872
diff
changeset
|
462 |
view realize. |
6ae0cf83738f
Use #setClipboardText: instead of obsolete #setTextSelection:
Stefan Vogel <sv@exept.de>
parents:
1872
diff
changeset
|
463 |
newSel add:view. |
776 | 464 |
]. |
60 | 465 |
|
776 | 466 |
self withinTransaction:#paste objects:newSel do:[ |
1878
6ae0cf83738f
Use #setClipboardText: instead of obsolete #setTextSelection:
Stefan Vogel <sv@exept.de>
parents:
1872
diff
changeset
|
467 |
undoHistory addUndoSelector:#undoCreate: |
6ae0cf83738f
Use #setClipboardText: instead of obsolete #setTextSelection:
Stefan Vogel <sv@exept.de>
parents:
1872
diff
changeset
|
468 |
withArgs:(newSel collect:[:v|(self propertyOfView:v) identifier]) |
776 | 469 |
]. |
60 | 470 |
|
776 | 471 |
self realizeAllSubViews. |
472 |
newSel do:[:v| v raise]. |
|
1744
c59a91953b64
paste with no container selected: search for a good one
Claus Gittinger <cg@exept.de>
parents:
1733
diff
changeset
|
473 |
self elementChangedSize:containerToPasteInto. |
134 | 474 |
|
776 | 475 |
newSel size == 1 ifTrue:[newSel := newSel at:1]. |
223 | 476 |
^ newSel |
1500
36c0b4b268b8
use new translatePoint:fromView:toView:
Claus Gittinger <cg@exept.de>
parents:
1494
diff
changeset
|
477 |
|
36c0b4b268b8
use new translatePoint:fromView:toView:
Claus Gittinger <cg@exept.de>
parents:
1494
diff
changeset
|
478 |
"Modified: / 10.10.2001 / 14:15:12 / cg" |
89 | 479 |
! |
480 |
||
481 |
pasteWithLayout |
|
482 |
"add the objects in the paste-buffer to the object view; don't change the |
|
483 |
layout |
|
484 |
" |
|
223 | 485 |
|sel| |
486 |
||
1872 | 487 |
sel := self pasteSpecifications:(self getClipboardObject) keepLayout:true. |
89 | 488 |
|
223 | 489 |
sel notNil ifTrue:[ |
1872 | 490 |
self select:sel. |
223 | 491 |
]. |
60 | 492 |
! ! |
493 |
||
494 |
!UIPainterView methodsFor:'drag & drop'! |
|
495 |
||
288 | 496 |
canDrop:something |
497 |
"returns true if something can be droped |
|
1834 | 498 |
" |
288 | 499 |
(something size == 1 and:[self enabled and:[self numberOfSelections <= 1]]) ifTrue:[ |
500 |
^ something first theObject isKindOf:UISpecification |
|
223 | 501 |
]. |
502 |
^ false |
|
503 |
! |
|
504 |
||
285 | 505 |
canPaste |
506 |
"returns true if something to be past exists and can be paste into |
|
507 |
the selection if exists |
|
508 |
" |
|
1872 | 509 |
^ self canPaste:(self getClipboardObject) |
285 | 510 |
! |
511 |
||
223 | 512 |
canPaste:something |
513 |
"returns true if something could be paste |
|
514 |
" |
|
515 |
|el size| |
|
516 |
||
517 |
((size := self numberOfSelections) <= 1 and:[self enabled]) ifFalse:[ |
|
1834 | 518 |
^ false |
223 | 519 |
]. |
520 |
something isCollection ifTrue:[something notEmpty ifTrue:[el := something first]] |
|
1834 | 521 |
ifFalse:[el := something]. |
223 | 522 |
|
523 |
(el isKindOf:UISpecification) ifFalse:[ |
|
1834 | 524 |
^ false |
223 | 525 |
]. |
526 |
||
527 |
size == 1 ifTrue:[ |
|
1834 | 528 |
^ self canPasteInto:(self singleSelection) |
223 | 529 |
]. |
530 |
^ true |
|
531 |
! |
|
532 |
||
533 |
canPasteInto:aView |
|
534 |
"can paste into a view |
|
535 |
" |
|
285 | 536 |
|prop| |
60 | 537 |
|
1870 | 538 |
aView isNil ifTrue:[ ^ false ]. |
539 |
||
540 |
(aView isKindOf:VerticalPanelView) ifTrue:[self halt]. |
|
541 |
(prop := self propertyOfView:aView) notNil ifTrue:[ |
|
542 |
^ prop spec class supportsSubComponents |
|
89 | 543 |
]. |
1870 | 544 |
^ aView specClass supportsSubComponents. |
60 | 545 |
! |
546 |
||
547 |
drop:anObjectOrCollection at:aPoint |
|
1833 | 548 |
|spec newSel oldSel dragOffset widg doit| |
549 |
||
550 |
doit := true. |
|
288 | 551 |
self selection notNil ifTrue:[ |
1834 | 552 |
oldSel := self singleSelection. |
553 |
||
554 |
"/ search selections hierarchy for a widget into which we can paste |
|
555 |
widg := oldSel. |
|
556 |
[widg isNil or:[self canPasteInto:widg]] whileFalse:[ |
|
557 |
widg notNil ifTrue:[ |
|
558 |
widg := widg container |
|
559 |
]. |
|
560 |
]. |
|
561 |
||
562 |
oldSel := nil. |
|
563 |
self setSelection:widg withRedraw:true. |
|
231 | 564 |
]. |
89 | 565 |
spec := (anObjectOrCollection at:1) theObject. |
1833 | 566 |
doit ifTrue:[ |
1834 | 567 |
dragOffset := DragAndDropManager dragOffsetQuerySignal query. |
568 |
newSel := self pasteSpecifications:spec keepLayout:false at:aPoint - dragOffset. |
|
569 |
||
570 |
self select:(oldSel ? newSel) |
|
1833 | 571 |
]. |
1060
0332a41de5c5
Use #query instead of #raise when invoking QuerySignals
Stefan Vogel <sv@exept.de>
parents:
1058
diff
changeset
|
572 |
|
0332a41de5c5
Use #query instead of #raise when invoking QuerySignals
Stefan Vogel <sv@exept.de>
parents:
1058
diff
changeset
|
573 |
"Modified: / 18.3.1999 / 18:29:43 / stefan" |
1520
eb77c52704c7
drop: paste in surrounding view if not possible to drop in selected.
Claus Gittinger <cg@exept.de>
parents:
1500
diff
changeset
|
574 |
"Modified: / 30.10.2001 / 14:02:35 / cg" |
60 | 575 |
! ! |
576 |
||
361 | 577 |
!UIPainterView methodsFor:'event handling'! |
578 |
||
579 |
keyPress:key x:x y:y view:aView |
|
376 | 580 |
"a delegated keyEvent from aView" |
581 |
||
361 | 582 |
self keyPress:key x:x y:y |
583 |
||
376 | 584 |
"Modified: / 31.10.1997 / 20:27:22 / cg" |
361 | 585 |
! |
586 |
||
587 |
keyRelease:key x:x y:y view:aView |
|
376 | 588 |
"a delegated keyEvent from aView" |
589 |
||
361 | 590 |
self keyRelease:key x:x y:y |
591 |
||
376 | 592 |
"Modified: / 31.10.1997 / 20:27:32 / cg" |
754 | 593 |
! |
594 |
||
595 |
sizeChanged:how |
|
596 |
||
1834 | 597 |
super sizeChanged:how. |
754 | 598 |
|
599 |
self layoutChanged |
|
361 | 600 |
! ! |
601 |
||
78 | 602 |
!UIPainterView methodsFor:'generating output'! |
603 |
||
352 | 604 |
aspectMethods |
605 |
"extract a list of aspect methods - for browsing" |
|
606 |
||
1683
f95658463570
added selective aspect method generation.
Claus Gittinger <cg@exept.de>
parents:
1671
diff
changeset
|
607 |
|cls methods| |
352 | 608 |
|
609 |
className isNil ifTrue:[ |
|
1834 | 610 |
self warn:'No class defined !!'. |
611 |
^ #() |
|
352 | 612 |
]. |
613 |
||
614 |
cls := self resolveName:className. |
|
615 |
methods := IdentitySet new. |
|
616 |
||
1683
f95658463570
added selective aspect method generation.
Claus Gittinger <cg@exept.de>
parents:
1671
diff
changeset
|
617 |
self aspectSelectorsAndTypesDo: |
1834 | 618 |
[:selector :typeSymbol | |
619 |
|skip| |
|
620 |
||
621 |
(cls includesSelector:selector) ifTrue:[ |
|
622 |
||
623 |
skip := false. |
|
624 |
(typeSymbol == #modelAspect) ifTrue:[ |
|
625 |
(cls isSubclassOf:SimpleDialog) ifTrue:[ |
|
626 |
skip := SimpleDialog includesSelector:(selector asSymbol) |
|
627 |
]. |
|
628 |
]. |
|
629 |
skip ifFalse:[ |
|
630 |
methods add:(cls compiledMethodAt:selector) |
|
631 |
]. |
|
632 |
] |
|
633 |
]. |
|
1683
f95658463570
added selective aspect method generation.
Claus Gittinger <cg@exept.de>
parents:
1671
diff
changeset
|
634 |
|
f95658463570
added selective aspect method generation.
Claus Gittinger <cg@exept.de>
parents:
1671
diff
changeset
|
635 |
^ methods |
f95658463570
added selective aspect method generation.
Claus Gittinger <cg@exept.de>
parents:
1671
diff
changeset
|
636 |
|
f95658463570
added selective aspect method generation.
Claus Gittinger <cg@exept.de>
parents:
1671
diff
changeset
|
637 |
"Created: / 25.10.1997 / 18:58:25 / cg" |
f95658463570
added selective aspect method generation.
Claus Gittinger <cg@exept.de>
parents:
1671
diff
changeset
|
638 |
"Modified: / 26.10.1997 / 15:06:18 / cg" |
f95658463570
added selective aspect method generation.
Claus Gittinger <cg@exept.de>
parents:
1671
diff
changeset
|
639 |
! |
f95658463570
added selective aspect method generation.
Claus Gittinger <cg@exept.de>
parents:
1671
diff
changeset
|
640 |
|
f95658463570
added selective aspect method generation.
Claus Gittinger <cg@exept.de>
parents:
1671
diff
changeset
|
641 |
aspectSelectorsAndTypesDo:aTwoArgBlock |
f95658463570
added selective aspect method generation.
Claus Gittinger <cg@exept.de>
parents:
1671
diff
changeset
|
642 |
"evaluate aBlock for every aspect methods selector; 2nd arg describes the aspects type" |
f95658463570
added selective aspect method generation.
Claus Gittinger <cg@exept.de>
parents:
1671
diff
changeset
|
643 |
|
1726 | 644 |
|cls selector protoSpec| |
1683
f95658463570
added selective aspect method generation.
Claus Gittinger <cg@exept.de>
parents:
1671
diff
changeset
|
645 |
|
f95658463570
added selective aspect method generation.
Claus Gittinger <cg@exept.de>
parents:
1671
diff
changeset
|
646 |
className isNil ifTrue:[ |
1834 | 647 |
self warn:'No class defined !!'. |
648 |
^ self |
|
1683
f95658463570
added selective aspect method generation.
Claus Gittinger <cg@exept.de>
parents:
1671
diff
changeset
|
649 |
]. |
f95658463570
added selective aspect method generation.
Claus Gittinger <cg@exept.de>
parents:
1671
diff
changeset
|
650 |
|
f95658463570
added selective aspect method generation.
Claus Gittinger <cg@exept.de>
parents:
1671
diff
changeset
|
651 |
cls := self resolveName:className. |
f95658463570
added selective aspect method generation.
Claus Gittinger <cg@exept.de>
parents:
1671
diff
changeset
|
652 |
|
352 | 653 |
treeView propertiesDo:[:aProp| |
1834 | 654 |
|selector| |
655 |
||
656 |
(selector := aProp model) notNil ifTrue:[ |
|
657 |
selector isArray ifFalse:[ |
|
658 |
aTwoArgBlock value:(selector asSymbol) value:#modelAspect |
|
659 |
]. |
|
660 |
]. |
|
661 |
||
662 |
(selector := aProp menu) notNil ifTrue:[ |
|
663 |
selector isArray ifFalse:[ |
|
664 |
aTwoArgBlock value:(selector asSymbol) value:#menu |
|
665 |
]. |
|
666 |
]. |
|
667 |
||
668 |
(aProp spec aspectSelectors) do:[:aSel | |
|
669 |
aSel isArray ifFalse:[ |
|
670 |
aTwoArgBlock value:(aSel asSymbol) value:#channelAspect |
|
671 |
]. |
|
672 |
]. |
|
673 |
aProp spec actionSelectors do:[:aSel| |
|
674 |
aSel isArray ifFalse:[ |
|
675 |
aTwoArgBlock value:(aSel asSymbol) value:#actionSelector |
|
676 |
]. |
|
677 |
]. |
|
678 |
aProp spec valueSelectors do:[:aSel| |
|
679 |
aSel isArray ifFalse:[ |
|
680 |
aTwoArgBlock value:(aSel asSymbol) value:#valueSelector |
|
681 |
]. |
|
682 |
] |
|
352 | 683 |
]. |
684 |
||
685 |
protoSpec := treeView canvasSpec. |
|
686 |
||
687 |
(selector := protoSpec menu) notNil ifTrue:[ |
|
1834 | 688 |
selector isArray ifFalse:[ |
689 |
aTwoArgBlock value:(selector asSymbol) value:#menu |
|
690 |
]. |
|
352 | 691 |
]. |
692 |
! |
|
693 |
||
60 | 694 |
generateActionMethodFor:aspect spec:protoSpec inClass:targetClass |
568 | 695 |
|selector args showIt code alreadyInSuperclass numArgs method| |
288 | 696 |
|
697 |
selector := aspect asSymbol. |
|
141 | 698 |
|
288 | 699 |
alreadyInSuperclass := targetClass superclass canUnderstand:selector. |
700 |
||
568 | 701 |
numArgs := selector numArgs. |
702 |
method := aspect. |
|
703 |
||
704 |
numArgs == 1 ifTrue:[ |
|
1834 | 705 |
args := 'anArgument'. |
706 |
showIt := ''' , anArgument printString , '' ...''.\'. |
|
707 |
] ifFalse:[ |
|
708 |
args := ''. |
|
709 |
showIt := ' ...''.\'. |
|
710 |
||
711 |
numArgs ~~ 0 ifTrue:[ |
|
712 |
method := ''. |
|
713 |
||
714 |
selector keywords keysAndValuesDo:[:i :key| |
|
715 |
method := method, key, 'arg', i printString, ' ' |
|
716 |
] |
|
717 |
] |
|
149 | 718 |
]. |
141 | 719 |
|
288 | 720 |
code := '!!' , targetClass name , ' methodsFor:''actions''!!\\' , |
1834 | 721 |
method , args , '\' , |
722 |
' "automatically generated by UIPainter ..."\\' , |
|
723 |
' "*** the code below performs no action"\' , |
|
724 |
' "*** (except for some feedback on the Transcript)"\' , |
|
725 |
' "*** Please change as required and accept in the browser."\' , |
|
726 |
'\' . |
|
288 | 727 |
|
728 |
alreadyInSuperclass ifTrue:[ |
|
1834 | 729 |
code := code , |
730 |
' "action for ' , aspect , ' is already provided in a superclass."\' , |
|
731 |
' "It may be redefined here ..."\\'. |
|
288 | 732 |
] ifFalse:[ |
1834 | 733 |
code := code , |
734 |
' "action to be added ..."\\'. |
|
288 | 735 |
]. |
736 |
||
737 |
code := code , |
|
1834 | 738 |
' Transcript showCR:self class name, '': '. |
288 | 739 |
alreadyInSuperclass ifTrue:[ |
1834 | 740 |
code := code , 'inherited '. |
288 | 741 |
]. |
742 |
code := code , 'action for ' , aspect , showIt. |
|
743 |
||
744 |
alreadyInSuperclass ifTrue:[ |
|
1834 | 745 |
code := code , |
746 |
' super ' , aspect , args , '.\'. |
|
288 | 747 |
]. |
748 |
||
749 |
code := code , |
|
1834 | 750 |
'!! !!\\'. |
288 | 751 |
^ code withCRs |
752 |
||
352 | 753 |
"Modified: / 25.10.1997 / 19:18:50 / cg" |
60 | 754 |
! |
755 |
||
1683
f95658463570
added selective aspect method generation.
Claus Gittinger <cg@exept.de>
parents:
1671
diff
changeset
|
756 |
generateAspectMethodCode |
f95658463570
added selective aspect method generation.
Claus Gittinger <cg@exept.de>
parents:
1671
diff
changeset
|
757 |
"generate aspect, action & menu methods |
f95658463570
added selective aspect method generation.
Claus Gittinger <cg@exept.de>
parents:
1671
diff
changeset
|
758 |
- but do not overwrite existing ones. |
f95658463570
added selective aspect method generation.
Claus Gittinger <cg@exept.de>
parents:
1671
diff
changeset
|
759 |
Return a string ready to compile into the application class." |
f95658463570
added selective aspect method generation.
Claus Gittinger <cg@exept.de>
parents:
1671
diff
changeset
|
760 |
|
f95658463570
added selective aspect method generation.
Claus Gittinger <cg@exept.de>
parents:
1671
diff
changeset
|
761 |
^ self generateAspectMethodCodeFiltering:nil |
f95658463570
added selective aspect method generation.
Claus Gittinger <cg@exept.de>
parents:
1671
diff
changeset
|
762 |
! |
f95658463570
added selective aspect method generation.
Claus Gittinger <cg@exept.de>
parents:
1671
diff
changeset
|
763 |
|
f95658463570
added selective aspect method generation.
Claus Gittinger <cg@exept.de>
parents:
1671
diff
changeset
|
764 |
generateAspectMethodCodeFiltering:aFilterOrEmpty |
f95658463570
added selective aspect method generation.
Claus Gittinger <cg@exept.de>
parents:
1671
diff
changeset
|
765 |
"generate aspect, action & menu methods |
f95658463570
added selective aspect method generation.
Claus Gittinger <cg@exept.de>
parents:
1671
diff
changeset
|
766 |
- but do not overwrite existing ones. |
f95658463570
added selective aspect method generation.
Claus Gittinger <cg@exept.de>
parents:
1671
diff
changeset
|
767 |
Return a string ready to compile into the application class." |
f95658463570
added selective aspect method generation.
Claus Gittinger <cg@exept.de>
parents:
1671
diff
changeset
|
768 |
|
f95658463570
added selective aspect method generation.
Claus Gittinger <cg@exept.de>
parents:
1671
diff
changeset
|
769 |
|cls codePieces skip protoSpec thisCode |
f95658463570
added selective aspect method generation.
Claus Gittinger <cg@exept.de>
parents:
1671
diff
changeset
|
770 |
definedMethodSelectors iVars t exportSels| |
f95658463570
added selective aspect method generation.
Claus Gittinger <cg@exept.de>
parents:
1671
diff
changeset
|
771 |
|
f95658463570
added selective aspect method generation.
Claus Gittinger <cg@exept.de>
parents:
1671
diff
changeset
|
772 |
cls := self targetClass. |
f95658463570
added selective aspect method generation.
Claus Gittinger <cg@exept.de>
parents:
1671
diff
changeset
|
773 |
cls isNil ifTrue:[ |
1834 | 774 |
^ nil |
1683
f95658463570
added selective aspect method generation.
Claus Gittinger <cg@exept.de>
parents:
1671
diff
changeset
|
775 |
]. |
f95658463570
added selective aspect method generation.
Claus Gittinger <cg@exept.de>
parents:
1671
diff
changeset
|
776 |
|
f95658463570
added selective aspect method generation.
Claus Gittinger <cg@exept.de>
parents:
1671
diff
changeset
|
777 |
codePieces := OrderedCollection new. |
f95658463570
added selective aspect method generation.
Claus Gittinger <cg@exept.de>
parents:
1671
diff
changeset
|
778 |
definedMethodSelectors := IdentitySet new. |
f95658463570
added selective aspect method generation.
Claus Gittinger <cg@exept.de>
parents:
1671
diff
changeset
|
779 |
|
f95658463570
added selective aspect method generation.
Claus Gittinger <cg@exept.de>
parents:
1671
diff
changeset
|
780 |
treeView propertiesDo:[:aProp| |
1834 | 781 |
|modelSelector| |
782 |
||
783 |
protoSpec := aProp spec. |
|
784 |
||
785 |
(modelSelector := aProp model) notNil ifTrue:[ |
|
786 |
self generateCodeFrom:(Array with:modelSelector) in:cls |
|
787 |
do:[:aSel| |
|
788 |
(aFilterOrEmpty isNil or:[aFilterOrEmpty includes:aSel]) ifTrue:[ |
|
789 |
skip := false. |
|
790 |
||
791 |
(cls isSubclassOf:SimpleDialog) ifTrue:[ |
|
792 |
skip := SimpleDialog includesSelector:aSel |
|
793 |
]. |
|
794 |
(definedMethodSelectors includes:aSel) ifTrue:[ |
|
795 |
skip := true. |
|
796 |
]. |
|
797 |
||
798 |
skip ifFalse:[ |
|
799 |
"/ kludge .. |
|
800 |
"/ (protoSpec isKindOf:ActionButtonSpec) |
|
801 |
(protoSpec defaultModelIsCallBackMethodSelector:aSel) |
|
802 |
ifTrue:[ |
|
803 |
thisCode := (self generateActionMethodFor:aSel spec:protoSpec inClass:cls). |
|
804 |
] ifFalse:[ |
|
805 |
thisCode := (self generateAspectMethodFor:aSel spec:protoSpec inClass:cls). |
|
806 |
]. |
|
807 |
codePieces add:thisCode. |
|
808 |
definedMethodSelectors add:aSel. |
|
809 |
Transcript showCR:'code generated for aspect: ' , aSel |
|
810 |
] ifTrue:[ |
|
811 |
Transcript showCR:'*** no code generated for aspect: ' , aSel , ' (method already exists)' |
|
812 |
]. |
|
813 |
]. |
|
814 |
]. |
|
815 |
]. |
|
816 |
||
817 |
"/ for each aspect, generate getter (if not yet implemented) |
|
818 |
self generateCodeFrom:(aProp spec aspectSelectors) in:cls |
|
819 |
do:[:aSel| |
|
820 |
(aFilterOrEmpty isNil or:[aFilterOrEmpty includes:aSel]) ifTrue:[ |
|
821 |
(definedMethodSelectors includes:aSel) ifFalse:[ |
|
822 |
thisCode := (self generateAspectMethodFor:aSel spec:protoSpec inClass:cls). |
|
823 |
codePieces add:thisCode. |
|
824 |
definedMethodSelectors add:aSel. |
|
825 |
Transcript showCR:'code generated for aspect: ' , aSel |
|
826 |
] |
|
827 |
] |
|
828 |
]. |
|
829 |
||
830 |
"/ exported aspects - need setter methods |
|
831 |
exportSels := (treeView exportedAspects ? #()) collect:[:entry | (entry subAspect , ':') asSymbol]. |
|
832 |
self generateCodeFrom:exportSels in:cls |
|
833 |
do:[:aSel| |
|
834 |
|aspect| |
|
835 |
||
836 |
(aFilterOrEmpty isNil or:[aFilterOrEmpty includes:aSel]) ifTrue:[ |
|
837 |
(definedMethodSelectors includes:aSel) ifFalse:[ |
|
838 |
aspect := (aSel copyWithoutLast:1) asSymbol. |
|
839 |
thisCode := (self generateAspectSetMethodFor:aspect spec:protoSpec inClass:cls). |
|
840 |
codePieces add:thisCode. |
|
841 |
definedMethodSelectors add:aSel. |
|
842 |
Transcript showCR:'export code generated for aspect: ' , aSel |
|
843 |
] |
|
844 |
] |
|
845 |
]. |
|
846 |
||
847 |
self generateCodeFrom:(aProp spec actionSelectors) in:cls |
|
848 |
do:[:aSel| |
|
849 |
(aFilterOrEmpty isNil or:[aFilterOrEmpty includes:aSel]) ifTrue:[ |
|
850 |
(definedMethodSelectors includes:aSel) ifFalse:[ |
|
851 |
thisCode := (self generateActionMethodFor:aSel spec:protoSpec inClass:cls). |
|
852 |
codePieces add:thisCode. |
|
853 |
definedMethodSelectors add:aSel. |
|
854 |
Transcript showCR:'action generated for aspect: ' , aSel |
|
855 |
] |
|
856 |
] |
|
857 |
]. |
|
858 |
||
859 |
self generateCodeFrom:(aProp spec valueSelectors) in:cls |
|
860 |
do:[:aSel| |
|
861 |
(aFilterOrEmpty isNil or:[aFilterOrEmpty includes:aSel]) ifTrue:[ |
|
862 |
(definedMethodSelectors includes:aSel) ifFalse:[ |
|
863 |
"/ uppercase: - assume its a globals name. |
|
864 |
aSel first isUppercase ifFalse:[ |
|
865 |
thisCode := (self generateValueMethodFor:aSel spec:protoSpec inClass:cls). |
|
866 |
codePieces add:thisCode. |
|
867 |
definedMethodSelectors add:aSel. |
|
868 |
Transcript showCR:'code generated for aspect: ' , aSel |
|
869 |
] |
|
870 |
] |
|
871 |
] |
|
872 |
]. |
|
1683
f95658463570
added selective aspect method generation.
Claus Gittinger <cg@exept.de>
parents:
1671
diff
changeset
|
873 |
]. |
f95658463570
added selective aspect method generation.
Claus Gittinger <cg@exept.de>
parents:
1671
diff
changeset
|
874 |
|
f95658463570
added selective aspect method generation.
Claus Gittinger <cg@exept.de>
parents:
1671
diff
changeset
|
875 |
AspectsAsInstances ifTrue:[ |
1834 | 876 |
iVars := cls instVarNames asOrderedCollection. |
877 |
definedMethodSelectors do:[:ivar | |
|
878 |
(iVars includes:ivar) ifFalse:[ |
|
879 |
iVars add:ivar |
|
880 |
] |
|
881 |
]. |
|
882 |
iVars := iVars asArray. |
|
883 |
t := cls shallowCopy. |
|
884 |
t setInstanceVariableString:iVars asStringCollection asString. |
|
885 |
codePieces addFirst:(t definition , '!!\' withCRs). |
|
1683
f95658463570
added selective aspect method generation.
Claus Gittinger <cg@exept.de>
parents:
1671
diff
changeset
|
886 |
]. |
f95658463570
added selective aspect method generation.
Claus Gittinger <cg@exept.de>
parents:
1671
diff
changeset
|
887 |
|
1834 | 888 |
^ String |
889 |
streamContents: |
|
890 |
[:codeStream | |
|
891 |
codePieces do:[:eachPiece | codeStream nextPutAll:eachPiece]. |
|
892 |
]. |
|
1683
f95658463570
added selective aspect method generation.
Claus Gittinger <cg@exept.de>
parents:
1671
diff
changeset
|
893 |
|
f95658463570
added selective aspect method generation.
Claus Gittinger <cg@exept.de>
parents:
1671
diff
changeset
|
894 |
"Modified: / 29.7.1998 / 12:21:19 / cg" |
f95658463570
added selective aspect method generation.
Claus Gittinger <cg@exept.de>
parents:
1671
diff
changeset
|
895 |
! |
f95658463570
added selective aspect method generation.
Claus Gittinger <cg@exept.de>
parents:
1671
diff
changeset
|
896 |
|
60 | 897 |
generateAspectMethodFor:aspect spec:protoSpec inClass:targetClass |
1257
acb8c0a58ef3
dataSPec defaultValue when generating aspects
Claus Gittinger <cg@exept.de>
parents:
1252
diff
changeset
|
898 |
|modelClass modelValueString modelValue modelGen code| |
134 | 899 |
|
149 | 900 |
modelClass := protoSpec defaultModelClassFor:aspect. |
1257
acb8c0a58ef3
dataSPec defaultValue when generating aspects
Claus Gittinger <cg@exept.de>
parents:
1252
diff
changeset
|
901 |
modelValueString := protoSpec defaultModelValueStringFor:aspect. |
acb8c0a58ef3
dataSPec defaultValue when generating aspects
Claus Gittinger <cg@exept.de>
parents:
1252
diff
changeset
|
902 |
modelValueString notNil ifTrue:[ |
1834 | 903 |
modelGen := modelValueString |
1257
acb8c0a58ef3
dataSPec defaultValue when generating aspects
Claus Gittinger <cg@exept.de>
parents:
1252
diff
changeset
|
904 |
] ifFalse:[ |
1834 | 905 |
modelValue := protoSpec defaultModelValueFor:aspect. |
906 |
modelValue isNil ifTrue:[ |
|
907 |
modelGen := modelClass name , ' new' |
|
908 |
] ifFalse:[ |
|
909 |
modelGen := modelValue storeString , ' asValue' |
|
910 |
]. |
|
352 | 911 |
|
912 |
]. |
|
134 | 913 |
|
655
093cba68e10a
simplified to make microsoft cc happy
Claus Gittinger <cg@exept.de>
parents:
588
diff
changeset
|
914 |
code := '!!' , targetClass name , ' methodsFor:''aspects''!!\\' , |
60 | 915 |
aspect , '\' , |
352 | 916 |
' "automatically generated by UIPainter ..."\\' , |
917 |
' "*** the code below creates a default model when invoked."\' , |
|
918 |
' "*** (which may not be the one you wanted)"\' , |
|
1441
36916e4ce9ab
generate better comments (in aspect methods)
Claus Gittinger <cg@exept.de>
parents:
1429
diff
changeset
|
919 |
' "*** Please change as required and accept it in the browser."\' , |
36916e4ce9ab
generate better comments (in aspect methods)
Claus Gittinger <cg@exept.de>
parents:
1429
diff
changeset
|
920 |
' "*** (and replace this comment by something more useful ;-)"\' . |
655
093cba68e10a
simplified to make microsoft cc happy
Claus Gittinger <cg@exept.de>
parents:
588
diff
changeset
|
921 |
|
1474 | 922 |
|
925
e6ddd46581c3
added option of generating aspects as instvars.
Claus Gittinger <cg@exept.de>
parents:
887
diff
changeset
|
923 |
AspectsAsInstances ifTrue:[ |
1834 | 924 |
code := code , '\' , |
925 |
' ' , aspect , ' isNil ifTrue:[\' , |
|
926 |
' ' , aspect , ' := ' , modelGen , '.\'. |
|
927 |
modelClass ~~ TriggerValue ifTrue:[ |
|
928 |
code := code , |
|
929 |
'"/ if your app needs to be notified of changes, uncomment one of the lines below:\' , |
|
930 |
'"/ ' , aspect , ' addDependent:self.\' , |
|
931 |
'"/ ' , aspect , ' onChangeSend:#', aspect ,'Changed to:self.\'. |
|
932 |
]. |
|
933 |
code := code , |
|
934 |
' ].\' , |
|
935 |
' ^ ' , aspect ,'.\' , |
|
936 |
'!! !!\\' |
|
925
e6ddd46581c3
added option of generating aspects as instvars.
Claus Gittinger <cg@exept.de>
parents:
887
diff
changeset
|
937 |
] ifFalse:[ |
1834 | 938 |
code := code , '\' , |
939 |
' |holder|\' , |
|
940 |
'\' , |
|
941 |
' (holder := builder bindingAt:#' , aspect , ') isNil ifTrue:[\' , |
|
942 |
' holder := ', modelGen, '.\', |
|
943 |
' builder aspectAt:#' , aspect , ' put:holder.\'. |
|
944 |
modelClass ~~ TriggerValue ifTrue:[ |
|
945 |
code := code , |
|
946 |
'"/ if your app needs to be notified of changes, uncomment one of the lines below:\' , |
|
947 |
'"/ holder addDependent:self.\' , |
|
948 |
'"/ holder onChangeSend:#', aspect ,'Changed to:self.\'. |
|
949 |
]. |
|
950 |
code := code , |
|
951 |
' ].\' , |
|
952 |
' ^ holder.\' , |
|
953 |
'!! !!\\' |
|
925
e6ddd46581c3
added option of generating aspects as instvars.
Claus Gittinger <cg@exept.de>
parents:
887
diff
changeset
|
954 |
]. |
1361
9020214f03e6
generate aspect-setters for exported aspects
Claus Gittinger <cg@exept.de>
parents:
1358
diff
changeset
|
955 |
|
925
e6ddd46581c3
added option of generating aspects as instvars.
Claus Gittinger <cg@exept.de>
parents:
887
diff
changeset
|
956 |
^ code withCRs |
352 | 957 |
|
925
e6ddd46581c3
added option of generating aspects as instvars.
Claus Gittinger <cg@exept.de>
parents:
887
diff
changeset
|
958 |
"Modified: / 29.7.1998 / 11:29:16 / cg" |
1225 | 959 |
"Modified: / 22.9.1999 / 12:33:47 / stefan" |
60 | 960 |
! |
961 |
||
1358 | 962 |
generateAspectSelectorsMethod |
963 |
"generate aspectSelectors method. |
|
964 |
Return a string ready to compile into the application class." |
|
965 |
||
966 |
|cls code spec| |
|
967 |
||
1683
f95658463570
added selective aspect method generation.
Claus Gittinger <cg@exept.de>
parents:
1671
diff
changeset
|
968 |
cls := self targetClass. |
f95658463570
added selective aspect method generation.
Claus Gittinger <cg@exept.de>
parents:
1671
diff
changeset
|
969 |
cls isNil ifTrue:[ |
1834 | 970 |
^ nil |
1358 | 971 |
]. |
972 |
||
973 |
spec := treeView exportedAspects. |
|
974 |
spec size == 0 ifTrue:[^ nil]. |
|
975 |
||
976 |
"/ make it an array ... |
|
1362
b710bba663cb
fixed generateAspectSelectors code generator
Claus Gittinger <cg@exept.de>
parents:
1361
diff
changeset
|
977 |
spec := spec collect:[:entry | |subAspect type| |
1834 | 978 |
subAspect := entry subAspect asSymbol. |
979 |
(type := entry type) isNil ifTrue:[ |
|
980 |
subAspect |
|
981 |
] ifFalse:[ |
|
982 |
Array with:subAspect with:type asSymbol |
|
983 |
]. |
|
984 |
]. |
|
1358 | 985 |
spec := spec asArray. |
986 |
||
987 |
code := '!!' , cls name , ' class methodsFor:''plugIn spec''!!\\' . |
|
988 |
||
989 |
code := code , 'aspectSelectors |
|
990 |
"This resource specification was automatically generated |
|
991 |
by the UIPainter of ST/X." |
|
992 |
||
993 |
"Do not manually edit this. If it is corrupted, |
|
994 |
the UIPainter may not be able to read the specification." |
|
995 |
||
996 |
"Return a description of exported aspects; |
|
997 |
these can be connected to aspects of an embedding application |
|
998 |
(if this app is embedded in a subCanvas)." |
|
999 |
||
1362
b710bba663cb
fixed generateAspectSelectors code generator
Claus Gittinger <cg@exept.de>
parents:
1361
diff
changeset
|
1000 |
^ #(\'. |
b710bba663cb
fixed generateAspectSelectors code generator
Claus Gittinger <cg@exept.de>
parents:
1361
diff
changeset
|
1001 |
spec do:[:el | code := code , (' ' , el storeString , '\') ]. |
b710bba663cb
fixed generateAspectSelectors code generator
Claus Gittinger <cg@exept.de>
parents:
1361
diff
changeset
|
1002 |
code := code , ' ).\'. |
b710bba663cb
fixed generateAspectSelectors code generator
Claus Gittinger <cg@exept.de>
parents:
1361
diff
changeset
|
1003 |
code := code , '\!!\'. |
1358 | 1004 |
code := code withCRs. |
1005 |
^ code |
|
1006 |
||
1362
b710bba663cb
fixed generateAspectSelectors code generator
Claus Gittinger <cg@exept.de>
parents:
1361
diff
changeset
|
1007 |
"Modified: / 18.2.2000 / 02:08:34 / cg" |
1358 | 1008 |
! |
1009 |
||
1361
9020214f03e6
generate aspect-setters for exported aspects
Claus Gittinger <cg@exept.de>
parents:
1358
diff
changeset
|
1010 |
generateAspectSetMethodFor:aspect spec:protoSpec inClass:targetClass |
9020214f03e6
generate aspect-setters for exported aspects
Claus Gittinger <cg@exept.de>
parents:
1358
diff
changeset
|
1011 |
|code| |
9020214f03e6
generate aspect-setters for exported aspects
Claus Gittinger <cg@exept.de>
parents:
1358
diff
changeset
|
1012 |
|
9020214f03e6
generate aspect-setters for exported aspects
Claus Gittinger <cg@exept.de>
parents:
1358
diff
changeset
|
1013 |
code := '!!' , targetClass name , ' methodsFor:''aspects - exported''!!\\' , |
9020214f03e6
generate aspect-setters for exported aspects
Claus Gittinger <cg@exept.de>
parents:
1358
diff
changeset
|
1014 |
aspect , ':something\' , |
9020214f03e6
generate aspect-setters for exported aspects
Claus Gittinger <cg@exept.de>
parents:
1358
diff
changeset
|
1015 |
' "automatically generated by UIPainter ..."\\' , |
9020214f03e6
generate aspect-setters for exported aspects
Claus Gittinger <cg@exept.de>
parents:
1358
diff
changeset
|
1016 |
' "This method is used when I am embedded as subApplication,"\' , |
9020214f03e6
generate aspect-setters for exported aspects
Claus Gittinger <cg@exept.de>
parents:
1358
diff
changeset
|
1017 |
' "and the mainApp wants to connect its aspects to mine."\'. |
9020214f03e6
generate aspect-setters for exported aspects
Claus Gittinger <cg@exept.de>
parents:
1358
diff
changeset
|
1018 |
|
9020214f03e6
generate aspect-setters for exported aspects
Claus Gittinger <cg@exept.de>
parents:
1358
diff
changeset
|
1019 |
AspectsAsInstances ifTrue:[ |
1834 | 1020 |
code := (code , '\' , |
1021 |
'"/ ' , aspect , ' notNil ifTrue:[\' , |
|
1022 |
'"/ ' , aspect , ' removeDependent:self.\' , |
|
1023 |
'"/ ].\' , |
|
1024 |
' ' , aspect ,' := something.\' , |
|
1025 |
'"/ ' , aspect ,' notNil ifTrue:[\' , |
|
1026 |
'"/ ' , aspect , ' addDependent:self.\' , |
|
1027 |
'"/ ].\' , |
|
1028 |
' ^ self.\' , |
|
1029 |
'!! !!\\') |
|
1361
9020214f03e6
generate aspect-setters for exported aspects
Claus Gittinger <cg@exept.de>
parents:
1358
diff
changeset
|
1030 |
] ifFalse:[ |
1834 | 1031 |
code := (code , '\' , |
1032 |
'"/ |holder|\' , |
|
1033 |
'\' , |
|
1034 |
'"/ (holder := builder bindingAt:#' , aspect , ') notNil ifTrue:[\' , |
|
1035 |
'"/ holder removeDependent:self.\' , |
|
1036 |
'"/ ].\' , |
|
1037 |
' builder aspectAt:#' , aspect , ' put:something.\', |
|
1038 |
'"/ something notNil ifTrue:[\' , |
|
1039 |
'"/ something addDependent:self.\' , |
|
1040 |
'"/ ].\' , |
|
1041 |
' ^ self.\' , |
|
1042 |
'!! !!\\') |
|
1361
9020214f03e6
generate aspect-setters for exported aspects
Claus Gittinger <cg@exept.de>
parents:
1358
diff
changeset
|
1043 |
]. |
9020214f03e6
generate aspect-setters for exported aspects
Claus Gittinger <cg@exept.de>
parents:
1358
diff
changeset
|
1044 |
|
9020214f03e6
generate aspect-setters for exported aspects
Claus Gittinger <cg@exept.de>
parents:
1358
diff
changeset
|
1045 |
^ code withCRs |
9020214f03e6
generate aspect-setters for exported aspects
Claus Gittinger <cg@exept.de>
parents:
1358
diff
changeset
|
1046 |
|
9020214f03e6
generate aspect-setters for exported aspects
Claus Gittinger <cg@exept.de>
parents:
1358
diff
changeset
|
1047 |
"Modified: / 29.7.1998 / 11:29:16 / cg" |
9020214f03e6
generate aspect-setters for exported aspects
Claus Gittinger <cg@exept.de>
parents:
1358
diff
changeset
|
1048 |
"Modified: / 22.9.1999 / 12:33:47 / stefan" |
9020214f03e6
generate aspect-setters for exported aspects
Claus Gittinger <cg@exept.de>
parents:
1358
diff
changeset
|
1049 |
! |
9020214f03e6
generate aspect-setters for exported aspects
Claus Gittinger <cg@exept.de>
parents:
1358
diff
changeset
|
1050 |
|
698 | 1051 |
generateCodeFrom:aListOfSelectors in:aClass do:aBlock |
1696 | 1052 |
|realSelectors redefCondition redefMessage| |
1053 |
||
1054 |
realSelectors := aListOfSelectors select:[:sel | sel isArray not]. |
|
698 | 1055 |
|
744 | 1056 |
self class redefineAspectMethods ifTrue:[ |
1834 | 1057 |
redefCondition := [:cls :sel | (cls includesSelector:sel) not]. |
1058 |
redefMessage := ' skipped - already implemented in the class'. |
|
698 | 1059 |
] ifFalse:[ |
1834 | 1060 |
redefCondition := [:cls :sel | (cls canUnderstand:sel) not]. |
1061 |
redefMessage := ' skipped - already implemented in the class (or superclass)'. |
|
1696 | 1062 |
]. |
1063 |
||
1064 |
realSelectors do:[:aSelector| |
|
1834 | 1065 |
(redefCondition value:aClass value:aSelector) ifTrue:[ |
1066 |
aBlock value:aSelector asSymbol |
|
1067 |
] ifFalse:[ |
|
1068 |
Transcript showCR:('#' , aSelector , redefMessage) |
|
1069 |
] |
|
698 | 1070 |
] |
376 | 1071 |
! |
1072 |
||
1073 |
generateHookMethodFor:selectorSpec comment:commentWhen note:noteOrNil defaultCode:defaultCode inClass:targetClass |
|
1074 |
^ ('!!' , targetClass name , ' methodsFor:''hooks''!!\\' , |
|
1075 |
selectorSpec , '\' , |
|
1076 |
' "automatically generated by UIPainter ..."\\' , |
|
1077 |
' "*** the code here does nothing. It is invoked when"\' , |
|
1078 |
' "*** ' , commentWhen , '"\' , |
|
1079 |
' "*** Please change as required and accept in the browser."\' , |
|
1080 |
'\' , |
|
1081 |
' "specific code to be added below ..."\' , |
|
1082 |
' "' , (noteOrNil ? '') , '"\' , |
|
1083 |
'\' , |
|
1084 |
(defaultCode ? '^ self.') , |
|
1085 |
'!! !!\\') withCRs |
|
1086 |
||
1087 |
"Modified: / 25.10.1997 / 19:22:17 / cg" |
|
1088 |
"Created: / 31.10.1997 / 17:31:53 / cg" |
|
1089 |
! |
|
1090 |
||
1091 |
generateHookMethods |
|
1092 |
"generate hook methods |
|
1093 |
- but do not overwrite existing ones. |
|
1094 |
Return a string ready to compile into the application class." |
|
1095 |
||
1683
f95658463570
added selective aspect method generation.
Claus Gittinger <cg@exept.de>
parents:
1671
diff
changeset
|
1096 |
|cls| |
f95658463570
added selective aspect method generation.
Claus Gittinger <cg@exept.de>
parents:
1671
diff
changeset
|
1097 |
|
f95658463570
added selective aspect method generation.
Claus Gittinger <cg@exept.de>
parents:
1671
diff
changeset
|
1098 |
cls := self targetClass. |
f95658463570
added selective aspect method generation.
Claus Gittinger <cg@exept.de>
parents:
1671
diff
changeset
|
1099 |
cls isNil ifTrue:[ |
1834 | 1100 |
^ nil |
376 | 1101 |
]. |
1683
f95658463570
added selective aspect method generation.
Claus Gittinger <cg@exept.de>
parents:
1671
diff
changeset
|
1102 |
|
f95658463570
added selective aspect method generation.
Claus Gittinger <cg@exept.de>
parents:
1671
diff
changeset
|
1103 |
^ self generateHookMethodsInClass:cls. |
376 | 1104 |
! |
1105 |
||
1106 |
generateHookMethodsInClass:targetClass |
|
1107 |
|code| |
|
1108 |
||
1109 |
code := ''. |
|
1110 |
||
1554
d5e4612bf7cf
implements -> includesSelector
Claus Gittinger <cg@exept.de>
parents:
1543
diff
changeset
|
1111 |
(targetClass includesSelector:#postBuildWith:) ifFalse:[ |
1834 | 1112 |
code := code |
1113 |
, (self |
|
1114 |
generateHookMethodFor:'postBuildWith:aBuilder' |
|
1115 |
comment:'the widgets have been built, but before the view is opened' |
|
1116 |
note:'or after the super send' |
|
1117 |
defaultCode:' super postBuildWith:aBuilder' |
|
1118 |
inClass:targetClass) |
|
376 | 1119 |
]. |
1554
d5e4612bf7cf
implements -> includesSelector
Claus Gittinger <cg@exept.de>
parents:
1543
diff
changeset
|
1120 |
(targetClass includesSelector:#postOpenWith:) ifFalse:[ |
1834 | 1121 |
code := code |
1122 |
, (self |
|
1123 |
generateHookMethodFor:'postOpenWith:aBuilder' |
|
1124 |
comment:'the topView has been opened, but before events are dispatched for it' |
|
1125 |
note:'or after the super send' |
|
1126 |
defaultCode:' super postOpenWith:aBuilder' |
|
1127 |
inClass:targetClass) |
|
376 | 1128 |
]. |
1554
d5e4612bf7cf
implements -> includesSelector
Claus Gittinger <cg@exept.de>
parents:
1543
diff
changeset
|
1129 |
(targetClass includesSelector:#closeRequest) ifFalse:[ |
1834 | 1130 |
code := code |
1131 |
, (self |
|
1132 |
generateHookMethodFor:'closeRequest' |
|
1133 |
comment:'the topView has been asked to close' |
|
1134 |
note:'return without the ''super closeRequest'' to stay open' |
|
1135 |
defaultCode:' ^super closeRequest' |
|
1136 |
inClass:targetClass) |
|
376 | 1137 |
]. |
1138 |
^ code |
|
1139 |
||
1140 |
"Modified: / 31.10.1997 / 17:30:34 / cg" |
|
1141 |
"Created: / 31.10.1997 / 17:32:49 / cg" |
|
316 | 1142 |
! |
1143 |
||
965
4f786b46a569
added menu-action code generation
Claus Gittinger <cg@exept.de>
parents:
925
diff
changeset
|
1144 |
generateMenuMethodFor:menuSel inClass:targetClass |
1805
cf1a9d636bf7
category and comment flags now in Userprefs
Claus Gittinger <cg@exept.de>
parents:
1785
diff
changeset
|
1145 |
|selector args showIt code alreadyInSuperclass numArgs method category| |
965
4f786b46a569
added menu-action code generation
Claus Gittinger <cg@exept.de>
parents:
925
diff
changeset
|
1146 |
|
4f786b46a569
added menu-action code generation
Claus Gittinger <cg@exept.de>
parents:
925
diff
changeset
|
1147 |
selector := menuSel asSymbol. |
1805
cf1a9d636bf7
category and comment flags now in Userprefs
Claus Gittinger <cg@exept.de>
parents:
1785
diff
changeset
|
1148 |
category := UserPreferences current categoryForMenuActionsMethods. |
965
4f786b46a569
added menu-action code generation
Claus Gittinger <cg@exept.de>
parents:
925
diff
changeset
|
1149 |
|
4f786b46a569
added menu-action code generation
Claus Gittinger <cg@exept.de>
parents:
925
diff
changeset
|
1150 |
alreadyInSuperclass := targetClass superclass canUnderstand:selector. |
4f786b46a569
added menu-action code generation
Claus Gittinger <cg@exept.de>
parents:
925
diff
changeset
|
1151 |
|
1805
cf1a9d636bf7
category and comment flags now in Userprefs
Claus Gittinger <cg@exept.de>
parents:
1785
diff
changeset
|
1152 |
code := '!!' , targetClass name , ' methodsFor:''' , category , '''!!\\'. |
965
4f786b46a569
added menu-action code generation
Claus Gittinger <cg@exept.de>
parents:
925
diff
changeset
|
1153 |
|
4f786b46a569
added menu-action code generation
Claus Gittinger <cg@exept.de>
parents:
925
diff
changeset
|
1154 |
selector = 'openAboutThisApplication' ifTrue:[ |
1834 | 1155 |
code := code , |
1156 |
'openAboutThisApplication\' , |
|
1157 |
' "opens an about box for this application."\\' , |
|
1158 |
' "automatically generated by UIPainter ..."\\' , |
|
1159 |
||
1160 |
' |rev box myClass clsRev image msg|\\' , |
|
1161 |
||
1162 |
' rev := ''''.\' , |
|
1163 |
' myClass := self class.\' , |
|
1164 |
||
1165 |
' (clsRev := myClass revision) notNil ifTrue:[\' , |
|
1166 |
' rev := '' (rev: '', clsRev printString, '')''].\\' , |
|
1167 |
||
1168 |
' msg := Character cr asString , myClass name asBoldText, rev.\' , |
|
1169 |
' msg := (msg , ''\\*** add more info here ***\\'') withCRs.\\' , |
|
1170 |
' box := AboutBox title:msg.\' , |
|
1171 |
||
1172 |
' "/ *** add a #defaultIcon method in the class\' , |
|
1173 |
' "/ *** and uncomment the following line:\' , |
|
1174 |
' "/ image := self class defaultIcon.\\' , |
|
1175 |
' image notNil ifTrue:[\' , |
|
1176 |
' box image:image\' , |
|
1177 |
' ].\' , |
|
1178 |
' box label:(resources string:''About %1'' with:myClass name).\' , |
|
1179 |
' box autoHideAfter:10 with:[].\' , |
|
1180 |
' box showAtPointer.\' , |
|
1181 |
'!! !!\\'. |
|
1182 |
^ code withCRs |
|
965
4f786b46a569
added menu-action code generation
Claus Gittinger <cg@exept.de>
parents:
925
diff
changeset
|
1183 |
]. |
4f786b46a569
added menu-action code generation
Claus Gittinger <cg@exept.de>
parents:
925
diff
changeset
|
1184 |
|
4f786b46a569
added menu-action code generation
Claus Gittinger <cg@exept.de>
parents:
925
diff
changeset
|
1185 |
selector = 'menuOpen' ifTrue:[ |
1834 | 1186 |
code := code , |
1187 |
'menuOpen\' , |
|
1188 |
' "automatically generated by UIPainter ..."\\' , |
|
1189 |
' "*** the code below opens a dialog for file selection"\' , |
|
1190 |
' "*** and invokes the #doOpen: method with the selected file."\' , |
|
1191 |
' "*** Please change as required and accept in the browser."\\' , |
|
1192 |
' |file|\\' , |
|
1193 |
' file :=\' , |
|
1194 |
' (FileSelectionBrowser\' , |
|
1195 |
' request: ''Open''\' , |
|
1196 |
' fileName: ''''\' , |
|
1197 |
' "/ inDirectory: lastOpenDirectory\' , |
|
1198 |
' withFileFilters: #(''*'')).\\' , |
|
1199 |
' file notNil ifTrue:[\' , |
|
1200 |
' "/ lastOpenDirectory := file asFilename directory.\' , |
|
1201 |
' self doOpen:file\' , |
|
1202 |
' ]\' , |
|
1203 |
'!! !!\'. |
|
1204 |
^ code withCRs |
|
965
4f786b46a569
added menu-action code generation
Claus Gittinger <cg@exept.de>
parents:
925
diff
changeset
|
1205 |
]. |
4f786b46a569
added menu-action code generation
Claus Gittinger <cg@exept.de>
parents:
925
diff
changeset
|
1206 |
|
4f786b46a569
added menu-action code generation
Claus Gittinger <cg@exept.de>
parents:
925
diff
changeset
|
1207 |
numArgs := selector numArgs. |
4f786b46a569
added menu-action code generation
Claus Gittinger <cg@exept.de>
parents:
925
diff
changeset
|
1208 |
method := selector. |
4f786b46a569
added menu-action code generation
Claus Gittinger <cg@exept.de>
parents:
925
diff
changeset
|
1209 |
|
4f786b46a569
added menu-action code generation
Claus Gittinger <cg@exept.de>
parents:
925
diff
changeset
|
1210 |
numArgs == 1 ifTrue:[ |
1834 | 1211 |
args := 'anArgument'. |
1212 |
showIt := ''' , anArgument printString , '' ...''.\'. |
|
1213 |
] ifFalse:[ |
|
1214 |
args := ''. |
|
1215 |
showIt := ' ...''.\'. |
|
1216 |
||
1217 |
numArgs ~~ 0 ifTrue:[ |
|
1218 |
method := ''. |
|
1219 |
||
1220 |
selector keywords keysAndValuesDo:[:i :key| |
|
1221 |
method := method, key, 'arg', i printString, ' ' |
|
1222 |
] |
|
1223 |
] |
|
965
4f786b46a569
added menu-action code generation
Claus Gittinger <cg@exept.de>
parents:
925
diff
changeset
|
1224 |
]. |
4f786b46a569
added menu-action code generation
Claus Gittinger <cg@exept.de>
parents:
925
diff
changeset
|
1225 |
|
4f786b46a569
added menu-action code generation
Claus Gittinger <cg@exept.de>
parents:
925
diff
changeset
|
1226 |
code := code , |
1834 | 1227 |
method , args , '\' , |
1228 |
' "automatically generated by UIPainter ..."\\' , |
|
1229 |
' "*** the code below performs no action"\' , |
|
1230 |
' "*** (except for some feedback on the Transcript)"\' , |
|
1231 |
' "*** Please change as required and accept in the browser."\' , |
|
1232 |
'\' . |
|
965
4f786b46a569
added menu-action code generation
Claus Gittinger <cg@exept.de>
parents:
925
diff
changeset
|
1233 |
|
4f786b46a569
added menu-action code generation
Claus Gittinger <cg@exept.de>
parents:
925
diff
changeset
|
1234 |
alreadyInSuperclass ifTrue:[ |
1834 | 1235 |
code := code , |
1236 |
' "action for ' , selector , ' is already provided in a superclass."\' , |
|
1237 |
' "It may be redefined here ..."\\'. |
|
965
4f786b46a569
added menu-action code generation
Claus Gittinger <cg@exept.de>
parents:
925
diff
changeset
|
1238 |
] ifFalse:[ |
1834 | 1239 |
code := code , |
1240 |
' "action to be added ..."\\'. |
|
965
4f786b46a569
added menu-action code generation
Claus Gittinger <cg@exept.de>
parents:
925
diff
changeset
|
1241 |
]. |
4f786b46a569
added menu-action code generation
Claus Gittinger <cg@exept.de>
parents:
925
diff
changeset
|
1242 |
|
4f786b46a569
added menu-action code generation
Claus Gittinger <cg@exept.de>
parents:
925
diff
changeset
|
1243 |
code := code , |
1834 | 1244 |
' Transcript showCR:self class name, '': '. |
965
4f786b46a569
added menu-action code generation
Claus Gittinger <cg@exept.de>
parents:
925
diff
changeset
|
1245 |
alreadyInSuperclass ifTrue:[ |
1834 | 1246 |
code := code , 'inherited '. |
965
4f786b46a569
added menu-action code generation
Claus Gittinger <cg@exept.de>
parents:
925
diff
changeset
|
1247 |
]. |
4f786b46a569
added menu-action code generation
Claus Gittinger <cg@exept.de>
parents:
925
diff
changeset
|
1248 |
code := code , 'menu action for ' , selector , showIt. |
4f786b46a569
added menu-action code generation
Claus Gittinger <cg@exept.de>
parents:
925
diff
changeset
|
1249 |
|
4f786b46a569
added menu-action code generation
Claus Gittinger <cg@exept.de>
parents:
925
diff
changeset
|
1250 |
alreadyInSuperclass ifTrue:[ |
1834 | 1251 |
code := code , |
1252 |
' super ' , selector , args , '.\'. |
|
965
4f786b46a569
added menu-action code generation
Claus Gittinger <cg@exept.de>
parents:
925
diff
changeset
|
1253 |
]. |
4f786b46a569
added menu-action code generation
Claus Gittinger <cg@exept.de>
parents:
925
diff
changeset
|
1254 |
|
4f786b46a569
added menu-action code generation
Claus Gittinger <cg@exept.de>
parents:
925
diff
changeset
|
1255 |
code := code , |
1834 | 1256 |
'!! !!\\'. |
965
4f786b46a569
added menu-action code generation
Claus Gittinger <cg@exept.de>
parents:
925
diff
changeset
|
1257 |
^ code withCRs |
4f786b46a569
added menu-action code generation
Claus Gittinger <cg@exept.de>
parents:
925
diff
changeset
|
1258 |
|
4f786b46a569
added menu-action code generation
Claus Gittinger <cg@exept.de>
parents:
925
diff
changeset
|
1259 |
"Created: / 23.8.1998 / 16:46:51 / cg" |
4f786b46a569
added menu-action code generation
Claus Gittinger <cg@exept.de>
parents:
925
diff
changeset
|
1260 |
"Modified: / 23.8.1998 / 18:13:05 / cg" |
4f786b46a569
added menu-action code generation
Claus Gittinger <cg@exept.de>
parents:
925
diff
changeset
|
1261 |
! |
4f786b46a569
added menu-action code generation
Claus Gittinger <cg@exept.de>
parents:
925
diff
changeset
|
1262 |
|
4f786b46a569
added menu-action code generation
Claus Gittinger <cg@exept.de>
parents:
925
diff
changeset
|
1263 |
generateMenuMethods |
4f786b46a569
added menu-action code generation
Claus Gittinger <cg@exept.de>
parents:
925
diff
changeset
|
1264 |
"generate menu methods |
4f786b46a569
added menu-action code generation
Claus Gittinger <cg@exept.de>
parents:
925
diff
changeset
|
1265 |
- but do not overwrite existing ones. |
4f786b46a569
added menu-action code generation
Claus Gittinger <cg@exept.de>
parents:
925
diff
changeset
|
1266 |
Return a string ready to compile into the application class." |
4f786b46a569
added menu-action code generation
Claus Gittinger <cg@exept.de>
parents:
925
diff
changeset
|
1267 |
|
1069 | 1268 |
|cls code menuSelector thisCode |
1269 |
definedMethodSelectors |
|
965
4f786b46a569
added menu-action code generation
Claus Gittinger <cg@exept.de>
parents:
925
diff
changeset
|
1270 |
specArray fullSpec winSpec menuSpec |
4f786b46a569
added menu-action code generation
Claus Gittinger <cg@exept.de>
parents:
925
diff
changeset
|
1271 |
| |
4f786b46a569
added menu-action code generation
Claus Gittinger <cg@exept.de>
parents:
925
diff
changeset
|
1272 |
|
1683
f95658463570
added selective aspect method generation.
Claus Gittinger <cg@exept.de>
parents:
1671
diff
changeset
|
1273 |
cls := self targetClass. |
f95658463570
added selective aspect method generation.
Claus Gittinger <cg@exept.de>
parents:
1671
diff
changeset
|
1274 |
cls isNil ifTrue:[ |
1834 | 1275 |
^ nil |
965
4f786b46a569
added menu-action code generation
Claus Gittinger <cg@exept.de>
parents:
925
diff
changeset
|
1276 |
]. |
4f786b46a569
added menu-action code generation
Claus Gittinger <cg@exept.de>
parents:
925
diff
changeset
|
1277 |
|
1058 | 1278 |
specArray := treeView generateFullSpecForComponents:#() named:nil. |
965
4f786b46a569
added menu-action code generation
Claus Gittinger <cg@exept.de>
parents:
925
diff
changeset
|
1279 |
fullSpec := specArray decodeAsLiteralArray. |
4f786b46a569
added menu-action code generation
Claus Gittinger <cg@exept.de>
parents:
925
diff
changeset
|
1280 |
winSpec := fullSpec window. |
4f786b46a569
added menu-action code generation
Claus Gittinger <cg@exept.de>
parents:
925
diff
changeset
|
1281 |
menuSelector := winSpec menu. |
4f786b46a569
added menu-action code generation
Claus Gittinger <cg@exept.de>
parents:
925
diff
changeset
|
1282 |
|
1834 | 1283 |
(menuSelector notNil |
1069 | 1284 |
and:[ (cls respondsTo:menuSelector) ]) ifFalse:[ |
1834 | 1285 |
self warn:'No menu defined (yet)'. |
1286 |
^ nil. |
|
965
4f786b46a569
added menu-action code generation
Claus Gittinger <cg@exept.de>
parents:
925
diff
changeset
|
1287 |
]. |
4f786b46a569
added menu-action code generation
Claus Gittinger <cg@exept.de>
parents:
925
diff
changeset
|
1288 |
menuSpec := cls perform:menuSelector. |
4f786b46a569
added menu-action code generation
Claus Gittinger <cg@exept.de>
parents:
925
diff
changeset
|
1289 |
menuSpec := menuSpec decodeAsLiteralArray. |
4f786b46a569
added menu-action code generation
Claus Gittinger <cg@exept.de>
parents:
925
diff
changeset
|
1290 |
|
4f786b46a569
added menu-action code generation
Claus Gittinger <cg@exept.de>
parents:
925
diff
changeset
|
1291 |
definedMethodSelectors := IdentitySet new. |
4f786b46a569
added menu-action code generation
Claus Gittinger <cg@exept.de>
parents:
925
diff
changeset
|
1292 |
code := ''. |
4f786b46a569
added menu-action code generation
Claus Gittinger <cg@exept.de>
parents:
925
diff
changeset
|
1293 |
|
4f786b46a569
added menu-action code generation
Claus Gittinger <cg@exept.de>
parents:
925
diff
changeset
|
1294 |
menuSpec allItemsDo:[:item | |
1834 | 1295 |
|sel| |
1296 |
||
1297 |
(sel := item value) notNil ifTrue:[ |
|
1298 |
(definedMethodSelectors includes:sel) ifFalse:[ |
|
1299 |
self generateCodeFrom:(Array with:sel) in:cls do:[:aSel| |
|
1300 |
thisCode := (self generateMenuMethodFor:aSel inClass:cls). |
|
1301 |
code := code, thisCode. |
|
1302 |
]. |
|
1303 |
definedMethodSelectors add:sel. |
|
1304 |
]. |
|
1305 |
] |
|
965
4f786b46a569
added menu-action code generation
Claus Gittinger <cg@exept.de>
parents:
925
diff
changeset
|
1306 |
]. |
4f786b46a569
added menu-action code generation
Claus Gittinger <cg@exept.de>
parents:
925
diff
changeset
|
1307 |
|