1 """Suite QuickDraw Graphics Supplemental Suite: Defines transformations of graphic objects
4 Generated from Macintosh HD:Systeemmap:Extensies:AppleScript
5 AETE/AEUT resource version 1/0, language 0, script 0
13 class QuickDraw_Graphics_Suppleme_Events
:
18 class drawing_area(aetools
.ComponentItem
):
19 """drawing area - Container for graphics and supporting information """
21 class rotation(aetools
.NProperty
):
22 """rotation - the default rotation for objects in the drawing area """
25 class scale(aetools
.NProperty
):
26 """scale - the default scaling for objects in the drawing area """
29 class translation(aetools
.NProperty
):
30 """translation - the default repositioning for objects in the drawing area """
34 drawing_areas
= drawing_area
36 class graphic_group(aetools
.ComponentItem
):
37 """graphic group - Group of graphics """
40 graphic_groups
= graphic_group
41 drawing_area
._propdict
= {
42 'rotation' : rotation
,
44 'translation' : translation
,
46 drawing_area
._elemdict
= {
48 graphic_group
._propdict
= {
50 graphic_group
._elemdict
= {
54 # Indices of types declared in this module
56 _classdeclarations
= {
57 'cpic' : graphic_group
,
58 'cdrw' : drawing_area
,