-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHotDraw Slides.pst
616 lines (507 loc) · 20.9 KB
/
HotDraw Slides.pst
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
<?xml version="1.0"?>
<st-source>
<!--
Name: HotDraw Slides
Notice: Copyright 2004 - 2013 Eliot Miranda
This addition to the HotDraw suite of example tools is made available to use under the MIT license, as detailed below.
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Comment: First stab at a slide presentation tool. Lots of things missing.
What's present:
The editor (Launcher->Tools->HotDraw->Slide Presentation Editor)
Left-hand pane displays slides wich look like RectangleFigures.
Right-and pane displays selected slide or per-presentation default slide if no slide selected.
Editor starts up with a copy of the MasterSlide, a system-wide initial slide.
Can set any slide as default (affects just the specific presentation) or master (affects subsequent new presentations)
What's missing:
Slides have a fixed 4 to 3 aspect ratio (e.g. 1024x768,640x480). The intent is for the slide contents to scale to watever the size of the window is so that a slide's appearance doesn't change depending on screen resolution. But there is no scaling yet. Note that Martin Kobetic has done font scaling work for his presentation framework. HotDraw doesn't do scalong. So one either adds scaled subclasses or add optional scaling to all figures. Note that ScreenGraphicsContext doesn't do scaling so one has to write scaling one's self.
This framework should merge with Martin Kobetic's Presenter framework as HotDraw has wysiwyg editing and a rich set of graphics figures. As yet there are no
- importers for Presenter slides to auto-convert presenter presentations
- workspace figures to allow execution of code within a presentation (the killer app that gives Martin's fwk its edge)
There is no presentation view which just shows a presentation
The text editor is not as rich as VisualWorks' one and not nearly rich enough for a presentation editor.
- Emphasis changes bold, italic, underline and stroke-out must be applicable independently (so one can have bold + italic).
- Point size must be specifiable independently from text style
- text style (i.e. font family) must be specifiable independently from point size
- cursor + home/page keys should work, not throw an exception
Must be able to load and save slides. BOSS is less than ideal . Would prefer textual (XML?, specific per-figure storeString). If binary, parcel format would be better than BOSS.
Martin's fwk has extras such as elapsed time display. Need o find out full set of desirable features in the fwk and add them to this wish list.
DbIdentifier: psql_public_cst_2007
DbTrace: 87409
DbUsername: niallr
DbVersion: 1.3
DevelopmentPrerequisites: #(#(#any 'HotDraw Framework' ''))
PackageName: HotDraw Slides
Parcel: #('HotDraw Slides')
ParcelName: HotDraw Slides
PrerequisiteDescriptions: #(#(#name 'HotDraw Framework' #componentType #package))
PrerequisiteParcels: #(#('HotDraw Framework' ''))
PrintStringCache: (1.3,niallr)
Version: 1.3
Post-Load Block:
[:package | Refactory.HotDraw.Tool initializeSlideCreationTool]
Date: 3:03:21 PM April 5, 2013
-->
<time-stamp>From VisualWorks®, Pre-Release 7.10 (mar13.4) of 22 March 2013 on 5 April 2013 at 15:03:21</time-stamp>
<do-it>(Dialog confirm: 'You are filing-in a Parcel source file!\\While this is possible it will not have\the same effect as loading the parcel.\None of the Parcel''s prerequisites will\be loaded and none of its load actions\will be performed.\\Are you sure you want to file-in?' withCRs) ifFalse: [self error: 'Parcel file-in abandoned. Choose terminate or close.']</do-it>
<class>
<name>Slide</name>
<environment>Refactory.HotDraw</environment>
<super>Refactory.HotDraw.Drawing</super>
<private>false</private>
<indexed-type>none</indexed-type>
<inst-vars></inst-vars>
<class-inst-vars></class-inst-vars>
<imports></imports>
<category>HotDraw Framework</category>
<attributes>
<package>HotDraw Slides</package>
</attributes>
</class>
<class>
<name>SetOfSlides</name>
<environment>Refactory.HotDraw</environment>
<super>Refactory.HotDraw.Drawing</super>
<private>false</private>
<indexed-type>none</indexed-type>
<inst-vars></inst-vars>
<class-inst-vars></class-inst-vars>
<imports></imports>
<category>HotDraw Framework</category>
<attributes>
<package>HotDraw Slides</package>
</attributes>
</class>
<class>
<name>SlidePresentationEditor</name>
<environment>Refactory.HotDraw</environment>
<super>Refactory.HotDraw.DrawingEditor</super>
<private>false</private>
<indexed-type>none</indexed-type>
<inst-vars>slidesButtons slides slide defaultSlide </inst-vars>
<class-inst-vars></class-inst-vars>
<imports></imports>
<category>HotDraw Framework</category>
<attributes>
<package>HotDraw Slides</package>
</attributes>
</class>
<class>
<name>SlideFigure</name>
<environment>Refactory.HotDraw</environment>
<super>Refactory.HotDraw.CachedFigure</super>
<private>false</private>
<indexed-type>none</indexed-type>
<inst-vars>drawing </inst-vars>
<class-inst-vars></class-inst-vars>
<imports></imports>
<category>HotDraw-Drawing Inspector</category>
<attributes>
<package>HotDraw Slides</package>
</attributes>
</class>
<shared-variable>
<name>DefaultMasterSlide</name>
<environment>Refactory.HotDraw.SlidePresentationEditor</environment>
<private>false</private>
<constant>false</constant>
<category>master slide</category>
<initializer></initializer>
<attributes>
<package>HotDraw Slides</package>
</attributes>
</shared-variable>
<methods>
<class-id>Refactory.HotDraw.Slide</class-id> <category>testing</category>
<body package="HotDraw Slides">notEmpty
^components notEmpty</body>
</methods>
<methods>
<class-id>Refactory.HotDraw.Slide</class-id> <category>visual properties-overriding</category>
<body package="HotDraw Slides">primarySymbolicBackground
^SymbolicPaint background</body>
</methods>
<methods>
<class-id>Refactory.HotDraw.Slide</class-id> <category>displaying</category>
<body package="HotDraw Slides">backgroundColor
^self fillColor isNil
ifTrue: [super backgroundColor]
ifFalse: [self fillColor]</body>
<body package="HotDraw Slides">backgroundColor: aColorOrNil
self fillColor: aColorOrNil.
self invalidate</body>
</methods>
<methods>
<class-id>Refactory.HotDraw.Slide</class-id> <category>accessing</category>
<body package="HotDraw Slides">adoptDrawing: aDrawing
components := OrderedCollection withAll: aDrawing components.
components do: [:each | each container: self].
attributes := aDrawing attributes copy.
bounds := nil.
self invalidate</body>
</methods>
<methods>
<class-id>Refactory.HotDraw.Slide</class-id> <category>converting</category>
<body package="HotDraw Slides">asSlide
^self</body>
</methods>
<methods>
<class-id>Refactory.HotDraw.SetOfSlides</class-id> <category>accessing</category>
<body package="HotDraw Slides">menuAt: aPoint
| mb |
mb := MenuBuilder new.
mb
addCopyCutPaste;
line;
add: 'save...' -> #saveDrawing;
add: 'load...' -> #loadDrawing;
line;
add: 'print' -> #print;
add: 'save as postscript...' -> #savePostscript;
line;
add: 'inspect...' -> #inspect;
line;
add: 'Set as Master Slide' -> #setAsMaster.
self addModelMenuTo: mb at: aPoint.
^mb menu</body>
</methods>
<methods>
<class-id>Refactory.HotDraw.SlidePresentationEditor</class-id> <category>actions</category>
<body package="HotDraw Slides">addSlideAt: aPoint
| newSlide |
newSlide := self newSlideAt: aPoint.
slides
add: newSlide;
selectFigure: newSlide</body>
<body package="HotDraw Slides">saveDrawing
self halt</body>
<body package="HotDraw Slides">setAsDefault: aSlideOrSlideFigure
defaultSlide adoptDrawing: aSlideOrSlideFigure asSlide copy</body>
<body package="HotDraw Slides">setAsMaster
self setAsMaster: self defaultSlide</body>
<body package="HotDraw Slides">setAsMaster: aSlideOrSlideFigure
DefaultMasterSlide := aSlideOrSlideFigure asSlide copy</body>
<body package="HotDraw Slides">slide: aSlideFigureOrNil
(slide isNil ifTrue: [self defaultSlide] ifFalse: [slide]) adoptDrawing: drawing.
slide := aSlideFigureOrNil.
drawing
adoptDrawing: (aSlideFigureOrNil isNil
ifTrue: [self defaultSlide]
ifFalse: [aSlideFigureOrNil]) slide;
invalidateNow</body>
</methods>
<methods>
<class-id>Refactory.HotDraw.SlidePresentationEditor</class-id> <category>initialize-release</category>
<body package="HotDraw Slides">initializeSlidesController
slides controller tool: (BlockValue
block: [:selection | selection value]
arguments: (Array with: self slidesToolbarButtons selectionHolder))</body>
</methods>
<methods>
<class-id>Refactory.HotDraw.SlidePresentationEditor</class-id> <category>drawing description</category>
<body package="HotDraw Slides">drawingClass
"What type of drawing should we create?"
^Slide</body>
<body package="HotDraw Slides">slideClass
^Slide</body>
<body package="HotDraw Slides">slidesClass
^SetOfSlides</body>
</methods>
<methods>
<class-id>Refactory.HotDraw.SlidePresentationEditor</class-id> <category>private</category>
<body package="HotDraw Slides">buildDrawing
^self defaultSlide drawing</body>
<body package="HotDraw Slides">buildSlides
slides := self slidesClass new.
slides model: self.
slides add: (self newSlideAt: 2@2).
^slides</body>
<body package="HotDraw Slides">defaultSlide
defaultSlide isNil ifTrue: [defaultSlide := self masterSlide].
^SlideFigure new
adoptDrawing: defaultSlide copy;
yourself</body>
<body package="HotDraw Slides">masterSlide
^DefaultMasterSlide isNil
ifTrue: [self slideClass new]
ifFalse: [DefaultMasterSlide]</body>
<body package="HotDraw Slides">newSlideAt: aPoint
^self defaultSlide
model: self;
origin: aPoint;
yourself</body>
<body package="HotDraw Slides">slideToolNames
"Return the list of names for the slides view tools."
^#('Selection Tool' 'Hand Tool' 'Delete Tool' 'Slide Tool' )</body>
<body package="HotDraw Slides">slidesToolbarButtons
"MAKE THIS LIKE toolbarButtons! (Assign to slidesButtons)"
slidesButtons isNil ifTrue:
[| list |
list := List new.
self slideToolNames
with: (self slideToolNames collect:
[:name|
self iconNames at: (self toolNames indexOf: name ifAbsent:
[self toolNames indexOf: 'Rectangle Tool'])])
do:
[:tool :icon |
list add: (tool isNil
ifTrue: [ButtonDescription spacer]
ifFalse: [self buildButtonDescriptionForTool: tool andIcon: icon])].
(slidesButtons := SelectionInList new)
list: list;
selection: list first].
^slidesButtons</body>
</methods>
<methods>
<class-id>Refactory.HotDraw.SlidePresentationEditor</class-id> <category>testing</category>
<body package="HotDraw Slides">isSelected: aSlide
^aSlide == slide</body>
</methods>
<methods>
<class-id>Refactory.HotDraw.SlidePresentationEditor</class-id> <category>accessing</category>
<body package="HotDraw Slides">drawingExtent
^(builder componentAt: #slideView) bounds extent</body>
<body package="HotDraw Slides">slide
^slide</body>
<body package="HotDraw Slides">slides
slides isNil ifTrue:
[slides := self buildSlides.
self initializeSlidesController].
^slides</body>
<body package="HotDraw Slides">slidesToolbar
^ToolbarView model: self slidesToolbarButtons</body>
</methods>
<methods>
<class-id>Refactory.HotDraw.SlideFigure</class-id> <category>displaying</category>
<body package="HotDraw Slides">displayFigureOn: aGraphicsContext
"Display a Rectangle on aGraphicsContext. Then display the drawing."
aGraphicsContext lineWidth: 2.
aGraphicsContext paint: ColorValue black.
self bounds displayStrokedOn: aGraphicsContext.
self drawing notEmpty ifTrue:
[aGraphicsContext
clippingRectangle: (self bounds insetBy: 2);
paint: ColorValue darkGray.
self drawing components do:
[:figure|
aGraphicsContext
displayRectangle: (figure bounds scaledBy: self extent / self model drawingExtent)
at: self bounds origin]]</body>
<body package="HotDraw Slides">invalidate
super invalidate.
self propagateAttributes.
self isSelectedSlide ifTrue:
[drawing invalidate]</body>
</methods>
<methods>
<class-id>Refactory.HotDraw.SlideFigure</class-id> <category>converting</category>
<body package="HotDraw Slides">asSlide
^self slide</body>
</methods>
<methods>
<class-id>Refactory.HotDraw.SlideFigure</class-id> <category>private</category>
<body package="HotDraw Slides">fillCache
| pixmap |
pixmap := Pixmap extent: self bounds extent.
self drawing displayFigureOn: pixmap graphicsContext.
^pixmap</body>
<body package="HotDraw Slides">isSelectedSlide
^model notNil and: [model isSelected: self]</body>
<body package="HotDraw Slides">propagateAttributes
attributes notNil ifTrue:
[drawing notNil ifTrue:
[drawing backgroundColor: attributes fillColor].
self isSelectedSlide ifTrue:
[model drawing backgroundColor: attributes fillColor]]</body>
</methods>
<methods>
<class-id>Refactory.HotDraw.SlideFigure</class-id> <category>copying</category>
<body package="HotDraw Slides">postCopy
super postCopy.
drawing := drawing copy</body>
</methods>
<methods>
<class-id>Refactory.HotDraw.SlideFigure</class-id> <category>accessing</category>
<body package="HotDraw Slides">adoptDrawing: aDrawing
drawing adoptDrawing: aDrawing</body>
<body package="HotDraw Slides">drawing
drawing isNil ifTrue:
[drawing := Slide new].
^drawing</body>
<body package="HotDraw Slides">menuAt: aPoint
| mb |
mb := MenuBuilder new.
self addFillColorMenuTo: mb.
mb
add: 'Set as Master Slide' -> #setAsMaster;
add: 'Set as Default Slide' -> #setAsDefault;
line;
add: 'inspect...' -> #inspect.
^mb menu</body>
<body package="HotDraw Slides">slide
^self drawing</body>
</methods>
<methods>
<class-id>Refactory.HotDraw.SlideFigure</class-id> <category>initialize-release</category>
<body package="HotDraw Slides">initialize
super initialize.
drawing := Slide new</body>
</methods>
<methods>
<class-id>Refactory.HotDraw.SlideFigure</class-id> <category>actions</category>
<body package="HotDraw Slides">setAsDefault
model setAsDefault: self</body>
<body package="HotDraw Slides">setAsMaster
model setAsMaster: self</body>
</methods>
<methods>
<class-id>Refactory.HotDraw.SlideFigure</class-id> <category>attribute accessing</category>
<body package="HotDraw Slides">deselect
super deselect.
self isSelectedSlide ifTrue:
[model slide: nil]</body>
<body package="HotDraw Slides">select
super select.
model slide: self</body>
</methods>
<methods>
<class-id>Refactory.HotDraw.SlideFigure</class-id> <category>bounds accessing</category>
<body package="HotDraw Slides">computePreferredBounds
"Compute the preferredBounds of the figure. For some figures, the preferredBounds
is always set so this method is never called. For the other figures, this should
return a rectangle of the bounds."
^0@0 corner: 4@3 * 14</body>
</methods>
<methods>
<class-id>Refactory.HotDraw.Tool class</class-id> <category>tool states</category>
<body package="HotDraw Slides">initializeSlideCreationTool
"This method was automatically generated by the HotDraw ToolStateMachineEditor.
To edit this method, evaluate the comment below"
"| states transitions stateTable |
states := ((Core.OrderedCollection new) add: (Refactory.HotDraw.ToolStateModel basicNew instVarAt: 1 put: nil; instVarAt: 2 put: 'Slide Tool'; instVarAt: 3 put: '[:tool :event | ]'; instVarAt: 4 put: (Core.Point x: 176 y: 53); instVarAt: 5 put: false; instVarAt: 6 put: false; yourself); add: (Refactory.HotDraw.ToolStateModel basicNew instVarAt: 1 put: nil; instVarAt: 2 put: 'Create Slide Figure'; instVarAt: 3 put: '[:tool :event |
tool drawing addSlideAt: (tool cursorPointFor: event)]'; instVarAt: 4 put: (Core.Point x: 206 y: 158); instVarAt: 5 put: true; instVarAt: 6 put: false; yourself); yourself).
stateTable := Dictionary new.
states do: [:each | stateTable at: each name put: each].
transitions := OrderedCollection new.
transitions add: (ToolStateTransitionModel new from: (stateTable at: 'Slide Tool'); to: (stateTable at: 'Create Slide Figure'); type: (Refactory.HotDraw.TransitionType basicNew instVarAt: 1 put: #redButtonPress; yourself); points: ((Core.OrderedCollection new) add: (Core.Point x: 216.438 y: 79.9453); add: (Core.Point x: 257.791 y: 157.484); yourself); yourself).
ToolStateMachineEditor openWithStates: states connections: transitions"
Tool states at: 'Slide Tool' put: (ToolState name: 'Slide Tool' command: [:tool :event | ]).
Tool states at: 'Create Slide Figure' put: (EndToolState name: 'Create Slide Figure' command: [:tool :event |
tool controller model addSlideAt: (tool cursorPointFor: event)]).
(Tool stateFor: 'Slide Tool') redButtonPress: ((SimpleTransitionTable new) goto: (Tool stateFor: 'Create Slide Figure'); yourself).</body>
</methods>
<methods>
<class-id>Refactory.HotDraw.SlidePresentationEditor class</class-id> <category>interface specs</category>
<body package="HotDraw Slides">windowSpec
"Tools.UIPainter new openOnClass: self andSelector: #windowSpec"
<resource: #canvas>
^#(#{UI.FullSpec}
#window:
#(#{UI.WindowSpec}
#label: 'Slide Presentation Editor'
#min: #(#{Core.Point} 800 480 )
#max: #(#{Core.Point} 0 0 )
#bounds: #(#{Graphics.Rectangle} 622 270 1422 750 )
#isEventDriven: true )
#component:
#(#{UI.SpecCollection}
#collection: #(
#(#{UI.ArbitraryComponentSpec}
#layout: #(#{Graphics.LayoutFrame} -640 1 28 0 0 1 480 0 )
#name: #slideView
#colors:
#(#{UI.LookPreferences}
#setBackgroundColor: #(#{Graphics.ColorValue} #white ) )
#component: #drawing )
#(#{UI.ArbitraryComponentSpec}
#layout: #(#{Graphics.LayoutFrame} 0 0.25 0 0 0 1 28 0 )
#flags: 0
#component: #toolbar )
#(#{UI.ArbitraryComponentSpec}
#layout: #(#{Graphics.LayoutFrame} 0 0 28 0 -640 1 480 0 )
#flags: 9
#colors:
#(#{UI.LookPreferences}
#setBackgroundColor: #(#{Graphics.ColorValue} #white ) )
#component: #slides )
#(#{UI.ArbitraryComponentSpec}
#layout: #(#{Graphics.LayoutFrame} 0 0 0 0 -10 0.25 28 0 )
#flags: 0
#component: #slidesToolbar ) ) ) )</body>
</methods>
<methods>
<class-id>Tools.VisualLauncher</class-id> <category>actions</category>
<body package="HotDraw Slides">toolsHotDrawSlidePresentationEditor
<menuItem: 'Slide Presentation Editor'
nameKey: nil
menu: #(#menuBar #tools #HotDraw)
position: 10.02>
<menuItem: 'Slide Presentation Editor'
icon: #newCanvasIcon
nameKey: nil
menu: #(#launcherToolBar)
position: 41.1
helpText: #(#EditSlidePresentation #HotDraw 'Edit a Slide Presentation')>
(#{Refactory.HotDraw.SlidePresentationEditor} valueOrDo: [^self]) open</body>
</methods>
<do-it>"Imported Classes:"</do-it>
<do-it>self error: 'Attempting to file-in parcel imports. Choose terminate or close'</do-it>
<class>
<name>CachedFigure</name>
<environment>Refactory.HotDraw</environment>
<super>Refactory.HotDraw.Figure</super>
<private>false</private>
<indexed-type>none</indexed-type>
<inst-vars>cache </inst-vars>
<class-inst-vars></class-inst-vars>
<imports></imports>
<category>HotDraw-Figures</category>
<attributes>
<package>HotDraw Framework</package>
</attributes>
</class>
<class>
<name>Drawing</name>
<environment>Refactory.HotDraw</environment>
<super>Refactory.HotDraw.CompositeFigure</super>
<private>false</private>
<indexed-type>none</indexed-type>
<inst-vars>selections handles controller </inst-vars>
<class-inst-vars></class-inst-vars>
<imports></imports>
<category>HotDraw-Framework</category>
<attributes>
<package>HotDraw Framework</package>
</attributes>
</class>
<class>
<name>VisualLauncher</name>
<environment>Tools</environment>
<super>UI.ApplicationModel</super>
<private>false</private>
<indexed-type>none</indexed-type>
<inst-vars>menuBar toolBar textCollector toolDock </inst-vars>
<class-inst-vars></class-inst-vars>
<imports></imports>
<category>Tools-Misc</category>
<attributes>
<package>Tools-Misc</package>
</attributes>
</class>
<class>
<name>DrawingEditor</name>
<environment>Refactory.HotDraw</environment>
<super>UI.ApplicationModel</super>
<private>false</private>
<indexed-type>none</indexed-type>
<inst-vars>buttons drawing </inst-vars>
<class-inst-vars></class-inst-vars>
<imports></imports>
<category>HotDraw-Framework</category>
<attributes>
<package>HotDraw Framework</package>
</attributes>
</class>
</st-source>