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