Kaydet (Commit) d4885f87 authored tarafından Jack Jansen's avatar Jack Jansen

Sigh: didn't catch all lists that needed to be sorted. Regenerated again.

üst 00c34832
...@@ -328,14 +328,14 @@ single_class_hierarchy = single_class_hierarchies ...@@ -328,14 +328,14 @@ single_class_hierarchy = single_class_hierarchies
class subtarget(aetools.ComponentItem): class subtarget(aetools.ComponentItem):
"""subtarget - a target that is prerequisite for another target """ """subtarget - a target that is prerequisite for another target """
want = 'SBTG' want = 'SBTG'
class target(aetools.NProperty):
"""target - the target that is dependent on this subtarget """
which = 'TrgT'
want = 'TRGT'
class link_against_output(aetools.NProperty): class link_against_output(aetools.NProperty):
"""link against output - is the output of this subtarget linked into its dependent target? """ """link against output - is the output of this subtarget linked into its dependent target? """
which = 'LNKO' which = 'LNKO'
want = 'bool' want = 'bool'
class target(aetools.NProperty):
"""target - the target that is dependent on this subtarget """
which = 'TrgT'
want = 'TRGT'
subtargets = subtarget subtargets = subtarget
...@@ -356,48 +356,20 @@ class project_document(aetools.NProperty): ...@@ -356,48 +356,20 @@ class project_document(aetools.NProperty):
"""project document - the project document that contains this target """ """project document - the project document that contains this target """
which = 'PrjD' which = 'PrjD'
want = 'PRJD' want = 'PRJD'
# element 'SRCF' as ['indx', 'test', 'rang']
# element 'SBTG' as ['indx', 'test', 'rang'] # element 'SBTG' as ['indx', 'test', 'rang']
# element 'SRCF' as ['indx', 'test', 'rang']
class target_file(aetools.ComponentItem): class target_file(aetools.ComponentItem):
"""target file - a source or header file in a target """ """target file - a source or header file in a target """
want = 'SRCF' want = 'SRCF'
class id(aetools.NProperty): class code_size(aetools.NProperty):
"""id - the unique ID number of the target file """ """code size - the size of the code (in bytes) produced by compiling this source file """
which = 'ID ' which = 'CSZE'
want = 'long'
class type(aetools.NProperty):
"""type - the type of source file """
which = 'FTYP'
want = 'FTYP'
class location(aetools.NProperty):
"""location - the location of the target file on disk """
which = 'FILE'
want = 'fss '
class path(aetools.NProperty):
"""path - the path of the source file on disk """
which = 'Path'
want = 'itxt'
class linked(aetools.NProperty):
"""linked - is the source file in the link order of its target? """
which = 'LINK'
want = 'bool'
class link_index(aetools.NProperty):
"""link index - the index of the source file in its target\xd5s link order (-1 if source file is not in link order) """
which = 'LIDX'
want = 'long' want = 'long'
class modified_date(aetools.NProperty):
"""modified date - the date and time this source file was last modified """
which = 'MODD'
want = 'ldt '
class compiled_date(aetools.NProperty): class compiled_date(aetools.NProperty):
"""compiled date - the date and this source file was last compiled """ """compiled date - the date and this source file was last compiled """
which = 'CMPD' which = 'CMPD'
want = 'ldt ' want = 'ldt '
class code_size(aetools.NProperty):
"""code size - the size of the code (in bytes) produced by compiling this source file """
which = 'CSZE'
want = 'long'
class data_size(aetools.NProperty): class data_size(aetools.NProperty):
"""data size - the size of the date (in bytes) produced by compiling this source file """ """data size - the size of the date (in bytes) produced by compiling this source file """
which = 'DSZE' which = 'DSZE'
...@@ -406,26 +378,54 @@ class debug(aetools.NProperty): ...@@ -406,26 +378,54 @@ class debug(aetools.NProperty):
"""debug - is debugging information generated for this source file? """ """debug - is debugging information generated for this source file? """
which = 'DBUG' which = 'DBUG'
want = 'bool' want = 'bool'
class weak_link(aetools.NProperty): class dependents(aetools.NProperty):
"""weak link - is this shared library linked weakly? """ """dependents - the source files that need this source file in order to build """
which = 'WEAK' which = 'DPND'
want = 'bool' want = 'list'
class id(aetools.NProperty):
"""id - the unique ID number of the target file """
which = 'ID '
want = 'long'
class init_before(aetools.NProperty): class init_before(aetools.NProperty):
"""init before - is the \xd4initialize before\xd5 flag set for this shared library? """ """init before - is the \xd4initialize before\xd5 flag set for this shared library? """
which = 'INIT' which = 'INIT'
want = 'bool' want = 'bool'
class link_index(aetools.NProperty):
"""link index - the index of the source file in its target\xd5s link order (-1 if source file is not in link order) """
which = 'LIDX'
want = 'long'
class linked(aetools.NProperty):
"""linked - is the source file in the link order of its target? """
which = 'LINK'
want = 'bool'
class location(aetools.NProperty):
"""location - the location of the target file on disk """
which = 'FILE'
want = 'fss '
class merge_output(aetools.NProperty): class merge_output(aetools.NProperty):
"""merge output - is this shared library merged into another code fragment? """ """merge output - is this shared library merged into another code fragment? """
which = 'MRGE' which = 'MRGE'
want = 'bool' want = 'bool'
class modified_date(aetools.NProperty):
"""modified date - the date and time this source file was last modified """
which = 'MODD'
want = 'ldt '
class path(aetools.NProperty):
"""path - the path of the source file on disk """
which = 'Path'
want = 'itxt'
class prerequisites(aetools.NProperty): class prerequisites(aetools.NProperty):
"""prerequisites - the source files needed to build this source file """ """prerequisites - the source files needed to build this source file """
which = 'PRER' which = 'PRER'
want = 'list' want = 'list'
class dependents(aetools.NProperty): class type(aetools.NProperty):
"""dependents - the source files that need this source file in order to build """ """type - the type of source file """
which = 'DPND' which = 'FTYP'
want = 'list' want = 'FTYP'
class weak_link(aetools.NProperty):
"""weak link - is this shared library linked weakly? """
which = 'WEAK'
want = 'bool'
target_files = target_file target_files = target_file
...@@ -498,8 +498,8 @@ message_document._privelemdict = { ...@@ -498,8 +498,8 @@ message_document._privelemdict = {
} }
project_document._superclassnames = ['document'] project_document._superclassnames = ['document']
project_document._privpropdict = { project_document._privpropdict = {
'inherits' : inherits,
'current_target' : current_target, 'current_target' : current_target,
'inherits' : inherits,
} }
project_document._privelemdict = { project_document._privelemdict = {
'target' : target, 'target' : target,
...@@ -524,8 +524,8 @@ single_class_hierarchies._privelemdict = { ...@@ -524,8 +524,8 @@ single_class_hierarchies._privelemdict = {
subtarget._superclassnames = ['target'] subtarget._superclassnames = ['target']
subtarget._privpropdict = { subtarget._privpropdict = {
'inherits' : inherits, 'inherits' : inherits,
'target' : target,
'link_against_output' : link_against_output, 'link_against_output' : link_against_output,
'target' : target,
} }
subtarget._privelemdict = { subtarget._privelemdict = {
} }
...@@ -541,27 +541,27 @@ target._privpropdict = { ...@@ -541,27 +541,27 @@ target._privpropdict = {
'project_document' : project_document, 'project_document' : project_document,
} }
target._privelemdict = { target._privelemdict = {
'target_file' : target_file,
'subtarget' : subtarget, 'subtarget' : subtarget,
'target_file' : target_file,
} }
target_file._superclassnames = [] target_file._superclassnames = []
target_file._privpropdict = { target_file._privpropdict = {
'id' : id,
'type' : type,
'location' : location,
'path' : path,
'linked' : linked,
'link_index' : link_index,
'modified_date' : modified_date,
'compiled_date' : compiled_date,
'code_size' : code_size, 'code_size' : code_size,
'compiled_date' : compiled_date,
'data_size' : data_size, 'data_size' : data_size,
'debug' : debug, 'debug' : debug,
'weak_link' : weak_link, 'dependents' : dependents,
'id' : id,
'init_before' : init_before, 'init_before' : init_before,
'link_index' : link_index,
'linked' : linked,
'location' : location,
'merge_output' : merge_output, 'merge_output' : merge_output,
'modified_date' : modified_date,
'path' : path,
'prerequisites' : prerequisites, 'prerequisites' : prerequisites,
'dependents' : dependents, 'type' : type,
'weak_link' : weak_link,
} }
target_file._privelemdict = { target_file._privelemdict = {
} }
...@@ -624,57 +624,57 @@ _Enum_PERM = { ...@@ -624,57 +624,57 @@ _Enum_PERM = {
# #
_classdeclarations = { _classdeclarations = {
'1BRW' : single_class_browser, '1BRW' : single_class_browser,
'PRJD' : project_document, '1HIR' : single_class_hierarchies,
'SYMB' : symbol_browser, 'BROW' : class_browser,
'EDIT' : editor_document,
'COMP' : file_compare_document, 'COMP' : file_compare_document,
'TOOL' : ToolServer_worksheet,
'SBTG' : subtarget,
'MSSG' : message_document,
'INSP' : project_inspector,
'TXTD' : text_document,
'CTLG' : catalog_document, 'CTLG' : catalog_document,
'EDIT' : editor_document,
'HIER' : class_hierarchies, 'HIER' : class_hierarchies,
'TRGT' : target, 'INSP' : project_inspector,
'MSSG' : message_document,
'PRGS' : build_progress_document, 'PRGS' : build_progress_document,
'PRJD' : project_document,
'SBTG' : subtarget,
'SRCF' : target_file, 'SRCF' : target_file,
'BROW' : class_browser, 'SYMB' : symbol_browser,
'1HIR' : single_class_hierarchies, 'TOOL' : ToolServer_worksheet,
'TRGT' : target,
'TXTD' : text_document,
} }
_propdeclarations = { _propdeclarations = {
'CMPD' : compiled_date,
'CSZE' : code_size,
'CURT' : current_target, 'CURT' : current_target,
'PrjD' : project_document, 'DBUG' : debug,
'MRGE' : merge_output,
'WEAK' : weak_link,
'DPND' : dependents, 'DPND' : dependents,
'c@#^' : inherits, 'DSZE' : data_size,
'FILE' : location,
'FTYP' : type,
'ID ' : id, 'ID ' : id,
'CMPD' : compiled_date, 'INIT' : init_before,
'LIDX' : link_index, 'LIDX' : link_index,
'FILE' : location, 'LINK' : linked,
'Path' : path,
'LNKO' : link_against_output, 'LNKO' : link_against_output,
'imod' : modified,
'sele' : selection,
'DSZE' : data_size,
'INIT' : init_before,
'MODD' : modified_date, 'MODD' : modified_date,
'FTYP' : type, 'MRGE' : merge_output,
'PRER' : prerequisites,
'Path' : path,
'PrjD' : project_document,
'TrgT' : target, 'TrgT' : target,
'WEAK' : weak_link,
'c@#^' : inherits,
'imod' : modified,
'pnam' : name, 'pnam' : name,
'LINK' : linked, 'sele' : selection,
'CSZE' : code_size,
'DBUG' : debug,
'PRER' : prerequisites,
} }
_compdeclarations = { _compdeclarations = {
} }
_enumdeclarations = { _enumdeclarations = {
'Inte' : _Enum_Inte,
'DKND' : _Enum_DKND, 'DKND' : _Enum_DKND,
'FTYP' : _Enum_FTYP, 'FTYP' : _Enum_FTYP,
'Inte' : _Enum_Inte,
'PERM' : _Enum_PERM, 'PERM' : _Enum_PERM,
} }
...@@ -179,44 +179,44 @@ class user_interaction(aetools.NProperty): ...@@ -179,44 +179,44 @@ class user_interaction(aetools.NProperty):
"""user interaction - user interaction level """ """user interaction - user interaction level """
which = 'inte' which = 'inte'
want = 'Inte' want = 'Inte'
# element 'docu' as ['indx', 'name', 'rang']
# element 'cwin' as ['indx', 'name', 'rang'] # element 'cwin' as ['indx', 'name', 'rang']
# element 'docu' as ['indx', 'name', 'rang']
class character(aetools.ComponentItem): class character(aetools.ComponentItem):
"""character - a character """ """character - a character """
want = 'cha ' 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): class length(aetools.NProperty):
"""length - length in characters of this object """ """length - length in characters of this object """
which = 'pLen' which = 'pLen'
want = 'long' 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): class document(aetools.ComponentItem):
"""document - a document """ """document - a document """
want = 'docu' want = 'docu'
class name(aetools.NProperty): class file_permissions(aetools.NProperty):
"""name - the title of the document """ """file permissions - the file permissions for the document """
which = 'pnam' which = 'PERM'
want = 'itxt' want = 'PERM'
class kind(aetools.NProperty):
"""kind - the kind of document """
which = 'DKND'
want = 'DKND'
class index(aetools.NProperty): class index(aetools.NProperty):
"""index - the number of the document """ """index - the number of the document """
which = 'pidx' which = 'pidx'
want = 'long' want = 'long'
class kind(aetools.NProperty):
"""kind - the kind of document """
which = 'DKND'
want = 'DKND'
class location(aetools.NProperty): class location(aetools.NProperty):
"""location - the file of the document """ """location - the file of the document """
which = 'FILE' which = 'FILE'
want = 'fss ' want = 'fss '
class file_permissions(aetools.NProperty): class name(aetools.NProperty):
"""file permissions - the file permissions for the document """ """name - the title of the document """
which = 'PERM' which = 'pnam'
want = 'PERM' want = 'itxt'
class window(aetools.NProperty): class window(aetools.NProperty):
"""window - the window of the document. """ """window - the window of the document. """
which = 'cwin' which = 'cwin'
...@@ -295,18 +295,18 @@ application._privelemdict = { ...@@ -295,18 +295,18 @@ application._privelemdict = {
} }
character._superclassnames = [] character._superclassnames = []
character._privpropdict = { character._privpropdict = {
'offset' : offset,
'length' : length, 'length' : length,
'offset' : offset,
} }
character._privelemdict = { character._privelemdict = {
} }
document._superclassnames = [] document._superclassnames = []
document._privpropdict = { document._privpropdict = {
'name' : name, 'file_permissions' : file_permissions,
'kind' : kind,
'index' : index, 'index' : index,
'kind' : kind,
'location' : location, 'location' : location,
'file_permissions' : file_permissions, 'name' : name,
'window' : window, 'window' : window,
} }
document._privelemdict = { document._privelemdict = {
...@@ -326,8 +326,8 @@ insertion_point._privelemdict = { ...@@ -326,8 +326,8 @@ insertion_point._privelemdict = {
line._superclassnames = [] line._superclassnames = []
line._privpropdict = { line._privpropdict = {
'index' : index, 'index' : index,
'offset' : offset,
'length' : length, 'length' : length,
'offset' : offset,
} }
line._privelemdict = { line._privelemdict = {
'character' : character, 'character' : character,
...@@ -356,10 +356,10 @@ text._privelemdict = { ...@@ -356,10 +356,10 @@ text._privelemdict = {
} }
window._superclassnames = [] window._superclassnames = []
window._privpropdict = { window._privpropdict = {
'name' : name,
'index' : index,
'bounds' : bounds, 'bounds' : bounds,
'document' : document, 'document' : document,
'index' : index,
'name' : name,
'position' : position, 'position' : position,
'visible' : visible, 'visible' : visible,
'zoomed' : zoomed, 'zoomed' : zoomed,
...@@ -371,33 +371,33 @@ window._privelemdict = { ...@@ -371,33 +371,33 @@ window._privelemdict = {
# Indices of types declared in this module # Indices of types declared in this module
# #
_classdeclarations = { _classdeclarations = {
'capp' : application,
'cha ' : character, 'cha ' : character,
'ctxt' : text, 'cins' : insertion_point,
'cwin' : window,
'file' : file,
'clin' : line, 'clin' : line,
'csel' : selection_2d_object, 'csel' : selection_2d_object,
'capp' : application, 'ctxt' : text,
'cins' : insertion_point, 'cwin' : window,
'docu' : document, 'docu' : document,
'file' : file,
} }
_propdeclarations = { _propdeclarations = {
'inte' : user_interaction,
'pvis' : visible,
'DKND' : kind, 'DKND' : kind,
'pbnd' : bounds, 'FILE' : location,
'PERM' : file_permissions, 'PERM' : file_permissions,
'cwin' : window,
'docu' : document, 'docu' : document,
'pidx' : index, 'inte' : user_interaction,
'pLen' : length,
'pOff' : offset, 'pOff' : offset,
'cwin' : window, 'pbnd' : bounds,
'FILE' : location, 'pcnt' : contents,
'pidx' : index,
'pnam' : name, 'pnam' : name,
'pLen' : length,
'ppos' : position, 'ppos' : position,
'pvis' : visible,
'pzum' : zoomed, 'pzum' : zoomed,
'pcnt' : contents,
} }
_compdeclarations = { _compdeclarations = {
......
...@@ -48,6 +48,32 @@ import StdSuites ...@@ -48,6 +48,32 @@ import StdSuites
# #
# Set property and element dictionaries now that all classes have been defined # Set property and element dictionaries now that all classes have been defined
# #
getbaseclasses(character)
getbaseclasses(text)
getbaseclasses(window)
getbaseclasses(file)
getbaseclasses(line)
getbaseclasses(selection_2d_object)
getbaseclasses(application)
getbaseclasses(insertion_point)
getbaseclasses(document)
getbaseclasses(single_class_browser)
getbaseclasses(project_document)
getbaseclasses(symbol_browser)
getbaseclasses(editor_document)
getbaseclasses(file_compare_document)
getbaseclasses(class_browser)
getbaseclasses(subtarget)
getbaseclasses(message_document)
getbaseclasses(project_inspector)
getbaseclasses(text_document)
getbaseclasses(catalog_document)
getbaseclasses(class_hierarchy)
getbaseclasses(target)
getbaseclasses(build_progress_document)
getbaseclasses(target_file)
getbaseclasses(ToolServer_worksheet)
getbaseclasses(single_class_hierarchy)
getbaseclasses(File_Mapping) getbaseclasses(File_Mapping)
getbaseclasses(browser_catalog) getbaseclasses(browser_catalog)
getbaseclasses(Build_Settings) getbaseclasses(Build_Settings)
...@@ -84,37 +110,37 @@ getbaseclasses(Font) ...@@ -84,37 +110,37 @@ getbaseclasses(Font)
getbaseclasses(Target_Source_Trees) getbaseclasses(Target_Source_Trees)
getbaseclasses(Debugger_Display) getbaseclasses(Debugger_Display)
getbaseclasses(class_) getbaseclasses(class_)
getbaseclasses(character)
getbaseclasses(text)
getbaseclasses(window)
getbaseclasses(file)
getbaseclasses(line)
getbaseclasses(selection_2d_object)
getbaseclasses(application)
getbaseclasses(insertion_point)
getbaseclasses(document)
getbaseclasses(single_class_browser)
getbaseclasses(project_document)
getbaseclasses(symbol_browser)
getbaseclasses(editor_document)
getbaseclasses(file_compare_document)
getbaseclasses(class_browser)
getbaseclasses(subtarget)
getbaseclasses(message_document)
getbaseclasses(project_inspector)
getbaseclasses(text_document)
getbaseclasses(catalog_document)
getbaseclasses(class_hierarchy)
getbaseclasses(target)
getbaseclasses(build_progress_document)
getbaseclasses(target_file)
getbaseclasses(ToolServer_worksheet)
getbaseclasses(single_class_hierarchy)
# #
# Indices of types declared in this module # Indices of types declared in this module
# #
_classdeclarations = { _classdeclarations = {
'cha ' : character,
'ctxt' : text,
'cwin' : window,
'file' : file,
'clin' : line,
'csel' : selection_2d_object,
'capp' : application,
'cins' : insertion_point,
'docu' : document,
'1BRW' : single_class_browser,
'PRJD' : project_document,
'SYMB' : symbol_browser,
'EDIT' : editor_document,
'COMP' : file_compare_document,
'BROW' : class_browser,
'SBTG' : subtarget,
'MSSG' : message_document,
'INSP' : project_inspector,
'TXTD' : text_document,
'CTLG' : catalog_document,
'HIER' : class_hierarchy,
'TRGT' : target,
'PRGS' : build_progress_document,
'SRCF' : target_file,
'TOOL' : ToolServer_worksheet,
'1HIR' : single_class_hierarchy,
'FMap' : File_Mapping, 'FMap' : File_Mapping,
'Cata' : browser_catalog, 'Cata' : browser_catalog,
'BSTG' : Build_Settings, 'BSTG' : Build_Settings,
...@@ -151,32 +177,6 @@ _classdeclarations = { ...@@ -151,32 +177,6 @@ _classdeclarations = {
'TSTs' : Target_Source_Trees, 'TSTs' : Target_Source_Trees,
'DbDS' : Debugger_Display, 'DbDS' : Debugger_Display,
'Clas' : class_, 'Clas' : class_,
'cha ' : character,
'ctxt' : text,
'cwin' : window,
'file' : file,
'clin' : line,
'csel' : selection_2d_object,
'capp' : application,
'cins' : insertion_point,
'docu' : document,
'1BRW' : single_class_browser,
'PRJD' : project_document,
'SYMB' : symbol_browser,
'EDIT' : editor_document,
'COMP' : file_compare_document,
'BROW' : class_browser,
'SBTG' : subtarget,
'MSSG' : message_document,
'INSP' : project_inspector,
'TXTD' : text_document,
'CTLG' : catalog_document,
'HIER' : class_hierarchy,
'TRGT' : target,
'PRGS' : build_progress_document,
'SRCF' : target_file,
'TOOL' : ToolServer_worksheet,
'1HIR' : single_class_hierarchy,
} }
......
...@@ -106,12 +106,12 @@ _compdeclarations = { ...@@ -106,12 +106,12 @@ _compdeclarations = {
} }
_enumdeclarations = { _enumdeclarations = {
'earr' : _Enum_earr,
'ese0' : _Enum_ese0,
'gsen' : _Enum_gsen,
'ipnl' : _Enum_ipnl, 'ipnl' : _Enum_ipnl,
'sodr' : _Enum_sodr, 'isiz' : _Enum_isiz,
'pple' : _Enum_pple, 'pple' : _Enum_pple,
'ese0' : _Enum_ese0, 'sodr' : _Enum_sodr,
'vwby' : _Enum_vwby, 'vwby' : _Enum_vwby,
'isiz' : _Enum_isiz,
'earr' : _Enum_earr,
'gsen' : _Enum_gsen,
} }
...@@ -32,18 +32,6 @@ alias_files = alias_file ...@@ -32,18 +32,6 @@ alias_files = alias_file
class application_file(aetools.ComponentItem): class application_file(aetools.ComponentItem):
"""application file - An application's file on disk """ """application file - An application's file on disk """
want = 'appf' want = 'appf'
class suggested_size(aetools.NProperty):
"""suggested size - the memory size with which the developer recommends the application be launched """
which = 'sprt'
want = 'long'
class minimum_size(aetools.NProperty):
"""minimum size - the smallest memory size with which the application can be launched """
which = 'mprt'
want = 'long'
class preferred_size(aetools.NProperty):
"""preferred size - the memory size with which the application will be launched """
which = 'appt'
want = 'long'
class accepts_high_level_events(aetools.NProperty): class accepts_high_level_events(aetools.NProperty):
"""accepts high level events - Is the application high-level event aware? """ """accepts high level events - Is the application high-level event aware? """
which = 'isab' which = 'isab'
...@@ -52,6 +40,18 @@ class has_scripting_terminology(aetools.NProperty): ...@@ -52,6 +40,18 @@ class has_scripting_terminology(aetools.NProperty):
"""has scripting terminology - Does the process have a scripting terminology, i.e., can it be scripted? """ """has scripting terminology - Does the process have a scripting terminology, i.e., can it be scripted? """
which = 'hscr' which = 'hscr'
want = 'bool' want = 'bool'
class minimum_size(aetools.NProperty):
"""minimum size - the smallest memory size with which the application can be launched """
which = 'mprt'
want = 'long'
class preferred_size(aetools.NProperty):
"""preferred size - the memory size with which the application will be launched """
which = 'appt'
want = 'long'
class suggested_size(aetools.NProperty):
"""suggested size - the memory size with which the developer recommends the application be launched """
which = 'sprt'
want = 'long'
application_files = application_file application_files = application_file
...@@ -83,26 +83,26 @@ document_files = document_file ...@@ -83,26 +83,26 @@ document_files = document_file
class file(aetools.ComponentItem): class file(aetools.ComponentItem):
"""file - A file """ """file - A file """
want = 'file' want = 'file'
class file_type(aetools.NProperty):
"""file type - the OSType identifying the type of data contained in the item """
which = 'asty'
want = 'type'
class creator_type(aetools.NProperty): class creator_type(aetools.NProperty):
"""creator type - the OSType identifying the application that created the item """ """creator type - the OSType identifying the application that created the item """
which = 'fcrt' which = 'fcrt'
want = 'type' want = 'type'
class file_type(aetools.NProperty):
"""file type - the OSType identifying the type of data contained in the item """
which = 'asty'
want = 'type'
class locked(aetools.NProperty): class locked(aetools.NProperty):
"""locked - Is the file locked? """ """locked - Is the file locked? """
which = 'aslk' which = 'aslk'
want = 'bool' want = 'bool'
class stationery(aetools.NProperty):
"""stationery - Is the file a stationery pad? """
which = 'pspd'
want = 'bool'
class product_version(aetools.NProperty): class product_version(aetools.NProperty):
"""product version - the version of the product (visible at the top of the \xd2Get Info\xd3 window) """ """product version - the version of the product (visible at the top of the \xd2Get Info\xd3 window) """
which = 'ver2' which = 'ver2'
want = 'itxt' want = 'itxt'
class stationery(aetools.NProperty):
"""stationery - Is the file a stationery pad? """
which = 'pspd'
want = 'bool'
class version(aetools.NProperty): class version(aetools.NProperty):
"""version - the version of the file (visible at the bottom of the \xd2Get Info\xd3 window) """ """version - the version of the file (visible at the bottom of the \xd2Get Info\xd3 window) """
which = 'vers' which = 'vers'
...@@ -165,11 +165,11 @@ alias_file._privelemdict = { ...@@ -165,11 +165,11 @@ alias_file._privelemdict = {
application_file._superclassnames = ['file'] application_file._superclassnames = ['file']
application_file._privpropdict = { application_file._privpropdict = {
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_, '_3c_Inheritance_3e_' : _3c_Inheritance_3e_,
'suggested_size' : suggested_size,
'minimum_size' : minimum_size,
'preferred_size' : preferred_size,
'accepts_high_level_events' : accepts_high_level_events, 'accepts_high_level_events' : accepts_high_level_events,
'has_scripting_terminology' : has_scripting_terminology, 'has_scripting_terminology' : has_scripting_terminology,
'minimum_size' : minimum_size,
'preferred_size' : preferred_size,
'suggested_size' : suggested_size,
} }
application_file._privelemdict = { application_file._privelemdict = {
} }
...@@ -202,11 +202,11 @@ document_file._privelemdict = { ...@@ -202,11 +202,11 @@ document_file._privelemdict = {
file._superclassnames = ['item'] file._superclassnames = ['item']
file._privpropdict = { file._privpropdict = {
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_, '_3c_Inheritance_3e_' : _3c_Inheritance_3e_,
'file_type' : file_type,
'creator_type' : creator_type, 'creator_type' : creator_type,
'file_type' : file_type,
'locked' : locked, 'locked' : locked,
'stationery' : stationery,
'product_version' : product_version, 'product_version' : product_version,
'stationery' : stationery,
'version' : version, 'version' : version,
} }
file._privelemdict = { file._privelemdict = {
...@@ -256,37 +256,37 @@ suitcase._privelemdict = { ...@@ -256,37 +256,37 @@ suitcase._privelemdict = {
# Indices of types declared in this module # Indices of types declared in this module
# #
_classdeclarations = { _classdeclarations = {
'sndf' : sound_file,
'fntf' : font_file,
'stcs' : suitcase,
'clpf' : clipping,
'dsut' : desk_accessory_suitcase,
'alia' : alias_file, 'alia' : alias_file,
'appf' : application_file,
'clpf' : clipping,
'dafi' : desk_accessory_file, 'dafi' : desk_accessory_file,
'fsut' : font_suitcase, 'docf' : document_file,
'dsut' : desk_accessory_suitcase,
'file' : file, 'file' : file,
'appf' : application_file, 'fntf' : font_file,
'fsut' : font_suitcase,
'inlf' : internet_location_file, 'inlf' : internet_location_file,
'docf' : document_file,
'pack' : package, 'pack' : package,
'sndf' : sound_file,
'stcs' : suitcase,
} }
_propdeclarations = { _propdeclarations = {
'ver2' : product_version,
'vers' : version,
'appt' : preferred_size, 'appt' : preferred_size,
'snd ' : sound, 'aslk' : locked,
'pspd' : stationery,
'sprt' : suggested_size,
'isab' : accepts_high_level_events,
'hscr' : has_scripting_terminology,
'asty' : file_type, 'asty' : file_type,
'c@#^' : _3c_Inheritance_3e_, 'c@#^' : _3c_Inheritance_3e_,
'fcrt' : creator_type, 'fcrt' : creator_type,
'mprt' : minimum_size, 'hscr' : has_scripting_terminology,
'iloc' : location, 'iloc' : location,
'aslk' : locked, 'isab' : accepts_high_level_events,
'mprt' : minimum_size,
'orig' : original_item, 'orig' : original_item,
'pspd' : stationery,
'snd ' : sound,
'sprt' : suggested_size,
'ver2' : product_version,
'vers' : version,
} }
_compdeclarations = { _compdeclarations = {
......
...@@ -188,22 +188,30 @@ class Finder_items_Events: ...@@ -188,22 +188,30 @@ class Finder_items_Events:
class item(aetools.ComponentItem): class item(aetools.ComponentItem):
"""item - An item """ """item - An item """
want = 'cobj' want = 'cobj'
class name(aetools.NProperty): class bounds(aetools.NProperty):
"""name - the name of the item """ """bounds - the bounding rectangle of the item (can only be set for an item in a window viewed as icons or buttons) """
which = 'pnam' which = 'pbnd'
want = 'qdrt'
class comment(aetools.NProperty):
"""comment - the comment of the item, displayed in the \xd2Get Info\xd3 window """
which = 'comt'
want = 'itxt' want = 'itxt'
class index(aetools.NProperty):
"""index - the index in the front-to-back ordering within its container """
which = 'pidx'
want = 'long'
class id(aetools.NProperty):
"""id - an id that identifies the item """
which = 'ID '
want = 'long'
class container(aetools.NProperty): class container(aetools.NProperty):
"""container - the container of the item """ """container - the container of the item """
which = 'ctnr' which = 'ctnr'
want = 'obj ' want = 'obj '
class content_space(aetools.NProperty):
"""content space - the window that would open if the item was opened """
which = 'dwnd'
want = 'obj '
class creation_date(aetools.NProperty):
"""creation date - the date on which the item was created """
which = 'ascd'
want = 'ldt '
class description(aetools.NProperty):
"""description - a description of the item """
which = 'dscr'
want = 'itxt'
class disk(aetools.NProperty): class disk(aetools.NProperty):
"""disk - the disk on which the item is stored """ """disk - the disk on which the item is stored """
which = 'cdis' which = 'cdis'
...@@ -212,91 +220,83 @@ class folder(aetools.NProperty): ...@@ -212,91 +220,83 @@ class folder(aetools.NProperty):
"""folder - the folder in which the item is stored """ """folder - the folder in which the item is stored """
which = 'asdr' which = 'asdr'
want = 'obj ' want = 'obj '
class position(aetools.NProperty): class icon(aetools.NProperty):
"""position - the position of the item within its parent window (can only be set for an item in a window viewed as icons or buttons) """ """icon - the icon bitmap of the item """
which = 'posn' which = 'iimg'
want = 'QDpt' want = 'ifam'
class bounds(aetools.NProperty): class id(aetools.NProperty):
"""bounds - the bounding rectangle of the item (can only be set for an item in a window viewed as icons or buttons) """ """id - an id that identifies the item """
which = 'pbnd' which = 'ID '
want = 'qdrt'
class label_index(aetools.NProperty):
"""label index - the label of the item """
which = 'labi'
want = 'long' want = 'long'
class index(aetools.NProperty):
"""index - the index in the front-to-back ordering within its container """
which = 'pidx'
want = 'long'
class information_window(aetools.NProperty):
"""information window - the information window for the item """
which = 'iwnd'
want = 'obj '
class kind(aetools.NProperty): class kind(aetools.NProperty):
"""kind - the kind of the item """ """kind - the kind of the item """
which = 'kind' which = 'kind'
want = 'itxt' want = 'itxt'
class description(aetools.NProperty): class label_index(aetools.NProperty):
"""description - a description of the item """ """label index - the label of the item """
which = 'dscr' which = 'labi'
want = 'itxt'
class comment(aetools.NProperty):
"""comment - the comment of the item, displayed in the \xd2Get Info\xd3 window """
which = 'comt'
want = 'itxt'
class size(aetools.NProperty):
"""size - the logical size of the item """
which = 'ptsz'
want = 'long'
class physical_size(aetools.NProperty):
"""physical size - the actual space used by the item on disk """
which = 'phys'
want = 'long' want = 'long'
class creation_date(aetools.NProperty):
"""creation date - the date on which the item was created """
which = 'ascd'
want = 'ldt '
class modification_date(aetools.NProperty): class modification_date(aetools.NProperty):
"""modification date - the date on which the item was last modified """ """modification date - the date on which the item was last modified """
which = 'asmo' which = 'asmo'
want = 'ldt ' want = 'ldt '
class icon(aetools.NProperty): class name(aetools.NProperty):
"""icon - the icon bitmap of the item """ """name - the name of the item """
which = 'iimg' which = 'pnam'
want = 'ifam' want = 'itxt'
class physical_size(aetools.NProperty):
"""physical size - the actual space used by the item on disk """
which = 'phys'
want = 'long'
class position(aetools.NProperty):
"""position - the position of the item within its parent window (can only be set for an item in a window viewed as icons or buttons) """
which = 'posn'
want = 'QDpt'
class selected(aetools.NProperty): class selected(aetools.NProperty):
"""selected - Is the item selected? """ """selected - Is the item selected? """
which = 'issl' which = 'issl'
want = 'bool' want = 'bool'
class content_space(aetools.NProperty): class size(aetools.NProperty):
"""content space - the window that would open if the item was opened """ """size - the logical size of the item """
which = 'dwnd' which = 'ptsz'
want = 'obj ' want = 'long'
class window(aetools.NProperty): class window(aetools.NProperty):
"""window - the window that would open if the item was opened """ """window - the window that would open if the item was opened """
which = 'cwin' which = 'cwin'
want = 'obj ' want = 'obj '
class information_window(aetools.NProperty):
"""information window - the information window for the item """
which = 'iwnd'
want = 'obj '
items = item items = item
item._superclassnames = [] item._superclassnames = []
item._privpropdict = { item._privpropdict = {
'name' : name, 'bounds' : bounds,
'index' : index, 'comment' : comment,
'id' : id,
'container' : container, 'container' : container,
'content_space' : content_space,
'creation_date' : creation_date,
'description' : description,
'disk' : disk, 'disk' : disk,
'folder' : folder, 'folder' : folder,
'position' : position, 'icon' : icon,
'bounds' : bounds, 'id' : id,
'label_index' : label_index, 'index' : index,
'information_window' : information_window,
'kind' : kind, 'kind' : kind,
'description' : description, 'label_index' : label_index,
'comment' : comment,
'size' : size,
'physical_size' : physical_size,
'creation_date' : creation_date,
'modification_date' : modification_date, 'modification_date' : modification_date,
'icon' : icon, 'name' : name,
'physical_size' : physical_size,
'position' : position,
'selected' : selected, 'selected' : selected,
'content_space' : content_space, 'size' : size,
'window' : window, 'window' : window,
'information_window' : information_window,
} }
item._privelemdict = { item._privelemdict = {
} }
...@@ -310,27 +310,27 @@ _classdeclarations = { ...@@ -310,27 +310,27 @@ _classdeclarations = {
} }
_propdeclarations = { _propdeclarations = {
'posn' : position, 'ID ' : id,
'kind' : kind, 'ascd' : creation_date,
'ptsz' : size, 'asdr' : folder,
'phys' : physical_size, 'asmo' : modification_date,
'cdis' : disk,
'comt' : comment,
'ctnr' : container,
'cwin' : window,
'dscr' : description,
'dwnd' : content_space, 'dwnd' : content_space,
'pbnd' : bounds, 'iimg' : icon,
'issl' : selected, 'issl' : selected,
'iwnd' : information_window,
'kind' : kind,
'labi' : label_index, 'labi' : label_index,
'dscr' : description, 'pbnd' : bounds,
'comt' : comment, 'phys' : physical_size,
'ctnr' : container,
'pidx' : index, 'pidx' : index,
'iimg' : icon,
'ID ' : id,
'cwin' : window,
'pnam' : name, 'pnam' : name,
'ascd' : creation_date, 'posn' : position,
'cdis' : disk, 'ptsz' : size,
'asmo' : modification_date,
'asdr' : folder,
'iwnd' : information_window,
} }
_compdeclarations = { _compdeclarations = {
......
...@@ -89,17 +89,17 @@ class sharing_window(aetools.NProperty): ...@@ -89,17 +89,17 @@ class sharing_window(aetools.NProperty):
class sharing_window(aetools.ComponentItem): class sharing_window(aetools.ComponentItem):
"""sharing window - A sharing window (opened by \xd2Sharing\xc9\xd3) """ """sharing window - A sharing window (opened by \xd2Sharing\xc9\xd3) """
want = 'swnd' want = 'swnd'
class sharable_container(aetools.NProperty): class container(aetools.NProperty):
"""sharable container - the sharable container from which the window was opened """ """container - the container from which this window was opened """
which = 'sctr' which = 'ctnr'
want = 'obj ' want = 'obj '
class item(aetools.NProperty): class item(aetools.NProperty):
"""item - the item from which this window was opened """ """item - the item from which this window was opened """
which = 'cobj' which = 'cobj'
want = 'obj ' want = 'obj '
class container(aetools.NProperty): class sharable_container(aetools.NProperty):
"""container - the container from which this window was opened """ """sharable container - the sharable container from which the window was opened """
which = 'ctnr' which = 'sctr'
want = 'obj ' want = 'obj '
sharing_windows = sharing_window sharing_windows = sharing_window
...@@ -169,10 +169,10 @@ sharable_container._privelemdict = { ...@@ -169,10 +169,10 @@ sharable_container._privelemdict = {
} }
sharing_window._superclassnames = [] sharing_window._superclassnames = []
sharing_window._privpropdict = { sharing_window._privpropdict = {
'sharable_container' : sharable_container,
'item' : item,
'container' : container, 'container' : container,
'folder_obsolete' : folder_obsolete, 'folder_obsolete' : folder_obsolete,
'item' : item,
'sharable_container' : sharable_container,
} }
sharing_window._privelemdict = { sharing_window._privelemdict = {
} }
...@@ -186,31 +186,31 @@ status_window._privelemdict = { ...@@ -186,31 +186,31 @@ status_window._privelemdict = {
# Indices of types declared in this module # Indices of types declared in this module
# #
_classdeclarations = { _classdeclarations = {
'qwnd' : status_window,
'capp' : application, 'capp' : application,
'swnd' : sharing_window,
'ccdv' : control_panel, 'ccdv' : control_panel,
'prcs' : process,
'cobj' : item, 'cobj' : item,
'file' : file,
'sctr' : sharable_container,
'cwnd' : container_window,
'ctnr' : container, 'ctnr' : container,
'cwnd' : container_window,
'file' : file,
'iwnd' : information_window, 'iwnd' : information_window,
'prcs' : process,
'qwnd' : status_window,
'sctr' : sharable_container,
'swnd' : sharing_window,
} }
_propdeclarations = { _propdeclarations = {
'fitp' : file_type_obsolete,
'swnd' : sharing_window,
'cfol' : folder_obsolete, 'cfol' : folder_obsolete,
'cobj' : item,
'crtd' : creation_date_obsolete, 'crtd' : creation_date_obsolete,
'ctnr' : container,
'cwnd' : container_window,
'fitp' : file_type_obsolete,
'islk' : locked_obsolete, 'islk' : locked_obsolete,
'modd' : modification_date_obsolete, 'modd' : modification_date_obsolete,
'sctr' : sharable_container,
'pvwp' : view_preferences, 'pvwp' : view_preferences,
'cwnd' : container_window, 'sctr' : sharable_container,
'ctnr' : container, 'swnd' : sharing_window,
'cobj' : item,
} }
_compdeclarations = { _compdeclarations = {
......
...@@ -42,18 +42,18 @@ desk_accessory_processes = desk_accessory_process ...@@ -42,18 +42,18 @@ desk_accessory_processes = desk_accessory_process
class process(aetools.ComponentItem): class process(aetools.ComponentItem):
"""process - A process running on this computer """ """process - A process running on this computer """
want = 'prcs' want = 'prcs'
class name(aetools.NProperty): class accepts_high_level_events(aetools.NProperty):
"""name - the name of the process """ """accepts high level events - Is the process high-level event aware (accepts open application, open document, print document, and quit)? """
which = 'pnam' which = 'isab'
want = 'itxt'
class visible(aetools.NProperty):
"""visible - Is the process' layer visible? """
which = 'pvis'
want = 'bool' want = 'bool'
class frontmost(aetools.NProperty): class accepts_remote_events(aetools.NProperty):
"""frontmost - Is the process the frontmost process? """ """accepts remote events - Does the process accept remote events? """
which = 'pisf' which = 'revt'
want = 'bool' want = 'bool'
class creator_type(aetools.NProperty):
"""creator type - the OSType of the creator of the process (the signature) """
which = 'fcrt'
want = 'type'
class file(aetools.NProperty): class file(aetools.NProperty):
"""file - the file from which the process was launched """ """file - the file from which the process was launched """
which = 'file' which = 'file'
...@@ -62,30 +62,30 @@ class file_type(aetools.NProperty): ...@@ -62,30 +62,30 @@ class file_type(aetools.NProperty):
"""file type - the OSType of the file type of the process """ """file type - the OSType of the file type of the process """
which = 'asty' which = 'asty'
want = 'type' want = 'type'
class creator_type(aetools.NProperty): class frontmost(aetools.NProperty):
"""creator type - the OSType of the creator of the process (the signature) """ """frontmost - Is the process the frontmost process? """
which = 'fcrt' which = 'pisf'
want = 'type'
class accepts_high_level_events(aetools.NProperty):
"""accepts high level events - Is the process high-level event aware (accepts open application, open document, print document, and quit)? """
which = 'isab'
want = 'bool'
class accepts_remote_events(aetools.NProperty):
"""accepts remote events - Does the process accept remote events? """
which = 'revt'
want = 'bool' want = 'bool'
class has_scripting_terminology(aetools.NProperty): class has_scripting_terminology(aetools.NProperty):
"""has scripting terminology - Does the process have a scripting terminology, i.e., can it be scripted? """ """has scripting terminology - Does the process have a scripting terminology, i.e., can it be scripted? """
which = 'hscr' which = 'hscr'
want = 'bool' want = 'bool'
class total_partition_size(aetools.NProperty): class name(aetools.NProperty):
"""total partition size - the size of the partition with which the process was launched """ """name - the name of the process """
which = 'appt' which = 'pnam'
want = 'long' want = 'itxt'
class partition_space_used(aetools.NProperty): class partition_space_used(aetools.NProperty):
"""partition space used - the number of bytes currently used in the process' partition """ """partition space used - the number of bytes currently used in the process' partition """
which = 'pusd' which = 'pusd'
want = 'long' want = 'long'
class total_partition_size(aetools.NProperty):
"""total partition size - the size of the partition with which the process was launched """
which = 'appt'
want = 'long'
class visible(aetools.NProperty):
"""visible - Is the process' layer visible? """
which = 'pvis'
want = 'bool'
processes = process processes = process
application_process._superclassnames = ['process'] application_process._superclassnames = ['process']
...@@ -104,17 +104,17 @@ desk_accessory_process._privelemdict = { ...@@ -104,17 +104,17 @@ desk_accessory_process._privelemdict = {
} }
process._superclassnames = [] process._superclassnames = []
process._privpropdict = { process._privpropdict = {
'name' : name,
'visible' : visible,
'frontmost' : frontmost,
'file' : file,
'file_type' : file_type,
'creator_type' : creator_type,
'accepts_high_level_events' : accepts_high_level_events, 'accepts_high_level_events' : accepts_high_level_events,
'accepts_remote_events' : accepts_remote_events, 'accepts_remote_events' : accepts_remote_events,
'creator_type' : creator_type,
'file' : file,
'file_type' : file_type,
'frontmost' : frontmost,
'has_scripting_terminology' : has_scripting_terminology, 'has_scripting_terminology' : has_scripting_terminology,
'total_partition_size' : total_partition_size, 'name' : name,
'partition_space_used' : partition_space_used, 'partition_space_used' : partition_space_used,
'total_partition_size' : total_partition_size,
'visible' : visible,
} }
process._privelemdict = { process._privelemdict = {
} }
...@@ -123,25 +123,25 @@ process._privelemdict = { ...@@ -123,25 +123,25 @@ process._privelemdict = {
# Indices of types declared in this module # Indices of types declared in this module
# #
_classdeclarations = { _classdeclarations = {
'prcs' : process,
'pcda' : desk_accessory_process,
'pcap' : application_process, 'pcap' : application_process,
'pcda' : desk_accessory_process,
'prcs' : process,
} }
_propdeclarations = { _propdeclarations = {
'pvis' : visible, 'appf' : application_file,
'pisf' : frontmost,
'appt' : total_partition_size, 'appt' : total_partition_size,
'isab' : accepts_high_level_events,
'dafi' : desk_accessory_file,
'hscr' : has_scripting_terminology,
'asty' : file_type, 'asty' : file_type,
'c@#^' : _3c_Inheritance_3e_, 'c@#^' : _3c_Inheritance_3e_,
'dafi' : desk_accessory_file,
'fcrt' : creator_type, 'fcrt' : creator_type,
'pusd' : partition_space_used,
'file' : file, 'file' : file,
'hscr' : has_scripting_terminology,
'isab' : accepts_high_level_events,
'pisf' : frontmost,
'pnam' : name, 'pnam' : name,
'appf' : application_file, 'pusd' : partition_space_used,
'pvis' : visible,
'revt' : accepts_remote_events, 'revt' : accepts_remote_events,
} }
......
...@@ -264,6 +264,6 @@ _compdeclarations = { ...@@ -264,6 +264,6 @@ _compdeclarations = {
_enumdeclarations = { _enumdeclarations = {
'comp' : _Enum_comp, 'comp' : _Enum_comp,
'ncmd' : _Enum_ncmd,
'dire' : _Enum_dire, 'dire' : _Enum_dire,
'ncmd' : _Enum_ncmd,
} }
...@@ -56,14 +56,14 @@ graphic_group._privelemdict = { ...@@ -56,14 +56,14 @@ graphic_group._privelemdict = {
# Indices of types declared in this module # Indices of types declared in this module
# #
_classdeclarations = { _classdeclarations = {
'cpic' : graphic_group,
'cdrw' : drawing_area, 'cdrw' : drawing_area,
'cpic' : graphic_group,
} }
_propdeclarations = { _propdeclarations = {
'prot' : rotation, 'prot' : rotation,
'ptrs' : translation,
'pscl' : scale, 'pscl' : scale,
'ptrs' : translation,
} }
_compdeclarations = { _compdeclarations = {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment