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