tzh
2024-08-22 c7d0944258c7d0943aa7b2211498fd612971ce27
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
"""Suite QuickDraw Graphics Supplemental Suite: Defines transformations of graphic objects
Level 1, version 1
 
Generated from /Volumes/Sap/System Folder/Extensions/AppleScript
AETE/AEUT resource version 1/0, language 0, script 0
"""
 
import aetools
import MacOS
 
_code = 'qdsp'
 
class QuickDraw_Graphics_Suppleme_Events:
 
    pass
 
 
class drawing_area(aetools.ComponentItem):
    """drawing area - Container for graphics and supporting information """
    want = 'cdrw'
class _Prop_rotation(aetools.NProperty):
    """rotation - the default rotation for objects in the drawing area """
    which = 'prot'
    want = 'trot'
class _Prop_scale(aetools.NProperty):
    """scale - the default scaling for objects in the drawing area """
    which = 'pscl'
    want = 'fixd'
class _Prop_translation(aetools.NProperty):
    """translation - the default repositioning for objects in the drawing area """
    which = 'ptrs'
    want = 'QDpt'
 
drawing_areas = drawing_area
 
class graphic_groups(aetools.ComponentItem):
    """graphic groups -  """
    want = 'cpic'
 
graphic_group = graphic_groups
drawing_area._superclassnames = []
drawing_area._privpropdict = {
    'rotation' : _Prop_rotation,
    'scale' : _Prop_scale,
    'translation' : _Prop_translation,
}
drawing_area._privelemdict = {
}
graphic_groups._superclassnames = []
graphic_groups._privpropdict = {
}
graphic_groups._privelemdict = {
}
 
#
# Indices of types declared in this module
#
_classdeclarations = {
    'cdrw' : drawing_area,
    'cpic' : graphic_groups,
}
 
_propdeclarations = {
    'prot' : _Prop_rotation,
    'pscl' : _Prop_scale,
    'ptrs' : _Prop_translation,
}
 
_compdeclarations = {
}
 
_enumdeclarations = {
}