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