diff options
| author | Jack Jansen <jack.jansen@cwi.nl> | 2003-03-28 23:38:00 (GMT) |
|---|---|---|
| committer | Jack Jansen <jack.jansen@cwi.nl> | 2003-03-28 23:38:00 (GMT) |
| commit | d4885f87fa203587b4f5cfd5961f7acbbe36c3c0 (patch) | |
| tree | 71f457810871e028e1ddee19f92ac17a1a62c3ef /Lib/plat-mac/lib-scriptpackages/CodeWarrior/Standard_Suite.py | |
| parent | 00c348328bacfa137441f9a28413e7782534e1c6 (diff) | |
| download | cpython-d4885f87fa203587b4f5cfd5961f7acbbe36c3c0.zip cpython-d4885f87fa203587b4f5cfd5961f7acbbe36c3c0.tar.gz cpython-d4885f87fa203587b4f5cfd5961f7acbbe36c3c0.tar.bz2 | |
Sigh: didn't catch all lists that needed to be sorted. Regenerated again.
Diffstat (limited to 'Lib/plat-mac/lib-scriptpackages/CodeWarrior/Standard_Suite.py')
| -rw-r--r-- | Lib/plat-mac/lib-scriptpackages/CodeWarrior/Standard_Suite.py | 74 |
1 files changed, 37 insertions, 37 deletions
diff --git a/Lib/plat-mac/lib-scriptpackages/CodeWarrior/Standard_Suite.py b/Lib/plat-mac/lib-scriptpackages/CodeWarrior/Standard_Suite.py index c1b132d..676b7e1 100644 --- a/Lib/plat-mac/lib-scriptpackages/CodeWarrior/Standard_Suite.py +++ b/Lib/plat-mac/lib-scriptpackages/CodeWarrior/Standard_Suite.py @@ -179,44 +179,44 @@ class user_interaction(aetools.NProperty): """user interaction - user interaction level """ which = 'inte' want = 'Inte' -# element 'docu' as ['indx', 'name', 'rang'] # element 'cwin' as ['indx', 'name', 'rang'] +# element 'docu' as ['indx', 'name', 'rang'] class character(aetools.ComponentItem): """character - a character """ want = 'cha ' -class offset(aetools.NProperty): - """offset - offset of a text object from the beginning of the document (first char has offset 1) """ - which = 'pOff' - want = 'long' class length(aetools.NProperty): """length - length in characters of this object """ which = 'pLen' want = 'long' +class offset(aetools.NProperty): + """offset - offset of a text object from the beginning of the document (first char has offset 1) """ + which = 'pOff' + want = 'long' class document(aetools.ComponentItem): """document - a document """ want = 'docu' -class name(aetools.NProperty): - """name - the title of the document """ - which = 'pnam' - want = 'itxt' -class kind(aetools.NProperty): - """kind - the kind of document """ - which = 'DKND' - want = 'DKND' +class file_permissions(aetools.NProperty): + """file permissions - the file permissions for the document """ + which = 'PERM' + want = 'PERM' class index(aetools.NProperty): """index - the number of the document """ which = 'pidx' want = 'long' +class kind(aetools.NProperty): + """kind - the kind of document """ + which = 'DKND' + want = 'DKND' class location(aetools.NProperty): """location - the file of the document """ which = 'FILE' want = 'fss ' -class file_permissions(aetools.NProperty): - """file permissions - the file permissions for the document """ - which = 'PERM' - want = 'PERM' +class name(aetools.NProperty): + """name - the title of the document """ + which = 'pnam' + want = 'itxt' class window(aetools.NProperty): """window - the window of the document. """ which = 'cwin' @@ -295,18 +295,18 @@ application._privelemdict = { } character._superclassnames = [] character._privpropdict = { - 'offset' : offset, 'length' : length, + 'offset' : offset, } character._privelemdict = { } document._superclassnames = [] document._privpropdict = { - 'name' : name, - 'kind' : kind, + 'file_permissions' : file_permissions, 'index' : index, + 'kind' : kind, 'location' : location, - 'file_permissions' : file_permissions, + 'name' : name, 'window' : window, } document._privelemdict = { @@ -326,8 +326,8 @@ insertion_point._privelemdict = { line._superclassnames = [] line._privpropdict = { 'index' : index, - 'offset' : offset, 'length' : length, + 'offset' : offset, } line._privelemdict = { 'character' : character, @@ -356,10 +356,10 @@ text._privelemdict = { } window._superclassnames = [] window._privpropdict = { - 'name' : name, - 'index' : index, 'bounds' : bounds, 'document' : document, + 'index' : index, + 'name' : name, 'position' : position, 'visible' : visible, 'zoomed' : zoomed, @@ -371,33 +371,33 @@ window._privelemdict = { # Indices of types declared in this module # _classdeclarations = { + 'capp' : application, 'cha ' : character, - 'ctxt' : text, - 'cwin' : window, - 'file' : file, + 'cins' : insertion_point, 'clin' : line, 'csel' : selection_2d_object, - 'capp' : application, - 'cins' : insertion_point, + 'ctxt' : text, + 'cwin' : window, 'docu' : document, + 'file' : file, } _propdeclarations = { - 'inte' : user_interaction, - 'pvis' : visible, 'DKND' : kind, - 'pbnd' : bounds, + 'FILE' : location, 'PERM' : file_permissions, + 'cwin' : window, 'docu' : document, - 'pidx' : index, + 'inte' : user_interaction, + 'pLen' : length, 'pOff' : offset, - 'cwin' : window, - 'FILE' : location, + 'pbnd' : bounds, + 'pcnt' : contents, + 'pidx' : index, 'pnam' : name, - 'pLen' : length, 'ppos' : position, + 'pvis' : visible, 'pzum' : zoomed, - 'pcnt' : contents, } _compdeclarations = { |
