ยปCore Development>Code coverage>Lib/plat-mac/lib-scriptpackages/StdSuites/QuickDraw_Graphics_Suppleme.py

Python code coverage for Lib/plat-mac/lib-scriptpackages/StdSuites/QuickDraw_Graphics_Suppleme.py

#countcontent
1n/a"""Suite QuickDraw Graphics Supplemental Suite: Defines transformations of graphic objects
2n/aLevel 1, version 1
3n/a
4n/aGenerated from /Volumes/Sap/System Folder/Extensions/AppleScript
5n/aAETE/AEUT resource version 1/0, language 0, script 0
6n/a"""
7n/a
8n/aimport aetools
9n/aimport MacOS
10n/a
11n/a_code = 'qdsp'
12n/a
13n/aclass QuickDraw_Graphics_Suppleme_Events:
14n/a
15n/a pass
16n/a
17n/a
18n/aclass drawing_area(aetools.ComponentItem):
19n/a """drawing area - Container for graphics and supporting information """
20n/a want = 'cdrw'
21n/aclass _Prop_rotation(aetools.NProperty):
22n/a """rotation - the default rotation for objects in the drawing area """
23n/a which = 'prot'
24n/a want = 'trot'
25n/aclass _Prop_scale(aetools.NProperty):
26n/a """scale - the default scaling for objects in the drawing area """
27n/a which = 'pscl'
28n/a want = 'fixd'
29n/aclass _Prop_translation(aetools.NProperty):
30n/a """translation - the default repositioning for objects in the drawing area """
31n/a which = 'ptrs'
32n/a want = 'QDpt'
33n/a
34n/adrawing_areas = drawing_area
35n/a
36n/aclass graphic_groups(aetools.ComponentItem):
37n/a """graphic groups - """
38n/a want = 'cpic'
39n/a
40n/agraphic_group = graphic_groups
41n/adrawing_area._superclassnames = []
42n/adrawing_area._privpropdict = {
43n/a 'rotation' : _Prop_rotation,
44n/a 'scale' : _Prop_scale,
45n/a 'translation' : _Prop_translation,
46n/a}
47n/adrawing_area._privelemdict = {
48n/a}
49n/agraphic_groups._superclassnames = []
50n/agraphic_groups._privpropdict = {
51n/a}
52n/agraphic_groups._privelemdict = {
53n/a}
54n/a
55n/a#
56n/a# Indices of types declared in this module
57n/a#
58n/a_classdeclarations = {
59n/a 'cdrw' : drawing_area,
60n/a 'cpic' : graphic_groups,
61n/a}
62n/a
63n/a_propdeclarations = {
64n/a 'prot' : _Prop_rotation,
65n/a 'pscl' : _Prop_scale,
66n/a 'ptrs' : _Prop_translation,
67n/a}
68n/a
69n/a_compdeclarations = {
70n/a}
71n/a
72n/a_enumdeclarations = {
73n/a}