mirror of
https://github.com/python/cpython.git
synced 2025-09-26 18:29:57 +00:00
Sigh: didn't catch all lists that needed to be sorted. Regenerated again.
This commit is contained in:
parent
00c348328b
commit
d4885f87fa
29 changed files with 2729 additions and 2729 deletions
|
@ -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):
|
||||||
"""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):
|
|
||||||
"""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'
|
|
||||||
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):
|
class code_size(aetools.NProperty):
|
||||||
"""code size - the size of the code (in bytes) produced by compiling this source file """
|
"""code size - the size of the code (in bytes) produced by compiling this source file """
|
||||||
which = 'CSZE'
|
which = 'CSZE'
|
||||||
want = 'long'
|
want = 'long'
|
||||||
|
class compiled_date(aetools.NProperty):
|
||||||
|
"""compiled date - the date and this source file was last compiled """
|
||||||
|
which = 'CMPD'
|
||||||
|
want = 'ldt '
|
||||||
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):
|
||||||
"""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):
|
|
||||||
"""weak link - is this shared library linked weakly? """
|
|
||||||
which = 'WEAK'
|
|
||||||
want = 'bool'
|
|
||||||
class init_before(aetools.NProperty):
|
|
||||||
"""init before - is the \xd4initialize before\xd5 flag set for this shared library? """
|
|
||||||
which = 'INIT'
|
|
||||||
want = 'bool'
|
|
||||||
class merge_output(aetools.NProperty):
|
|
||||||
"""merge output - is this shared library merged into another code fragment? """
|
|
||||||
which = 'MRGE'
|
|
||||||
want = 'bool'
|
|
||||||
class prerequisites(aetools.NProperty):
|
|
||||||
"""prerequisites - the source files needed to build this source file """
|
|
||||||
which = 'PRER'
|
|
||||||
want = 'list'
|
|
||||||
class dependents(aetools.NProperty):
|
class dependents(aetools.NProperty):
|
||||||
"""dependents - the source files that need this source file in order to build """
|
"""dependents - the source files that need this source file in order to build """
|
||||||
which = 'DPND'
|
which = 'DPND'
|
||||||
want = 'list'
|
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 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
|
target_files = target_file
|
||||||
|
|
||||||
|
@ -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 = {
|
||||||
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 = {
|
||||||
'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,
|
|
||||||
'init_before' : init_before,
|
|
||||||
'merge_output' : merge_output,
|
|
||||||
'prerequisites' : prerequisites,
|
|
||||||
'dependents' : dependents,
|
'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,
|
||||||
|
'type' : type,
|
||||||
|
'weak_link' : weak_link,
|
||||||
}
|
}
|
||||||
target_file._privelemdict = {
|
target_file._privelemdict = {
|
||||||
}
|
}
|
||||||
|
@ -624,57 +624,57 @@ _Enum_PERM = {
|
||||||
#
|
#
|
||||||
_classdeclarations = {
|
_classdeclarations = {
|
||||||
'1BRW' : single_class_browser,
|
'1BRW' : single_class_browser,
|
||||||
'PRJD' : project_document,
|
|
||||||
'SYMB' : symbol_browser,
|
|
||||||
'EDIT' : editor_document,
|
|
||||||
'COMP' : file_compare_document,
|
|
||||||
'TOOL' : ToolServer_worksheet,
|
|
||||||
'SBTG' : subtarget,
|
|
||||||
'MSSG' : message_document,
|
|
||||||
'INSP' : project_inspector,
|
|
||||||
'TXTD' : text_document,
|
|
||||||
'CTLG' : catalog_document,
|
|
||||||
'HIER' : class_hierarchies,
|
|
||||||
'TRGT' : target,
|
|
||||||
'PRGS' : build_progress_document,
|
|
||||||
'SRCF' : target_file,
|
|
||||||
'BROW' : class_browser,
|
|
||||||
'1HIR' : single_class_hierarchies,
|
'1HIR' : single_class_hierarchies,
|
||||||
|
'BROW' : class_browser,
|
||||||
|
'COMP' : file_compare_document,
|
||||||
|
'CTLG' : catalog_document,
|
||||||
|
'EDIT' : editor_document,
|
||||||
|
'HIER' : class_hierarchies,
|
||||||
|
'INSP' : project_inspector,
|
||||||
|
'MSSG' : message_document,
|
||||||
|
'PRGS' : build_progress_document,
|
||||||
|
'PRJD' : project_document,
|
||||||
|
'SBTG' : subtarget,
|
||||||
|
'SRCF' : target_file,
|
||||||
|
'SYMB' : symbol_browser,
|
||||||
|
'TOOL' : ToolServer_worksheet,
|
||||||
|
'TRGT' : target,
|
||||||
|
'TXTD' : text_document,
|
||||||
}
|
}
|
||||||
|
|
||||||
_propdeclarations = {
|
_propdeclarations = {
|
||||||
'CURT' : current_target,
|
|
||||||
'PrjD' : project_document,
|
|
||||||
'MRGE' : merge_output,
|
|
||||||
'WEAK' : weak_link,
|
|
||||||
'DPND' : dependents,
|
|
||||||
'c@#^' : inherits,
|
|
||||||
'ID ' : id,
|
|
||||||
'CMPD' : compiled_date,
|
'CMPD' : compiled_date,
|
||||||
'LIDX' : link_index,
|
|
||||||
'FILE' : location,
|
|
||||||
'Path' : path,
|
|
||||||
'LNKO' : link_against_output,
|
|
||||||
'imod' : modified,
|
|
||||||
'sele' : selection,
|
|
||||||
'DSZE' : data_size,
|
|
||||||
'INIT' : init_before,
|
|
||||||
'MODD' : modified_date,
|
|
||||||
'FTYP' : type,
|
|
||||||
'TrgT' : target,
|
|
||||||
'pnam' : name,
|
|
||||||
'LINK' : linked,
|
|
||||||
'CSZE' : code_size,
|
'CSZE' : code_size,
|
||||||
|
'CURT' : current_target,
|
||||||
'DBUG' : debug,
|
'DBUG' : debug,
|
||||||
|
'DPND' : dependents,
|
||||||
|
'DSZE' : data_size,
|
||||||
|
'FILE' : location,
|
||||||
|
'FTYP' : type,
|
||||||
|
'ID ' : id,
|
||||||
|
'INIT' : init_before,
|
||||||
|
'LIDX' : link_index,
|
||||||
|
'LINK' : linked,
|
||||||
|
'LNKO' : link_against_output,
|
||||||
|
'MODD' : modified_date,
|
||||||
|
'MRGE' : merge_output,
|
||||||
'PRER' : prerequisites,
|
'PRER' : prerequisites,
|
||||||
|
'Path' : path,
|
||||||
|
'PrjD' : project_document,
|
||||||
|
'TrgT' : target,
|
||||||
|
'WEAK' : weak_link,
|
||||||
|
'c@#^' : inherits,
|
||||||
|
'imod' : modified,
|
||||||
|
'pnam' : name,
|
||||||
|
'sele' : selection,
|
||||||
}
|
}
|
||||||
|
|
||||||
_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,
|
||||||
}
|
}
|
||||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -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):
|
|
||||||
"""name - the title of the document """
|
|
||||||
which = 'pnam'
|
|
||||||
want = 'itxt'
|
|
||||||
class kind(aetools.NProperty):
|
|
||||||
"""kind - the kind of document """
|
|
||||||
which = 'DKND'
|
|
||||||
want = 'DKND'
|
|
||||||
class index(aetools.NProperty):
|
|
||||||
"""index - the number of the document """
|
|
||||||
which = 'pidx'
|
|
||||||
want = 'long'
|
|
||||||
class location(aetools.NProperty):
|
|
||||||
"""location - the file of the document """
|
|
||||||
which = 'FILE'
|
|
||||||
want = 'fss '
|
|
||||||
class file_permissions(aetools.NProperty):
|
class file_permissions(aetools.NProperty):
|
||||||
"""file permissions - the file permissions for the document """
|
"""file permissions - the file permissions for the document """
|
||||||
which = 'PERM'
|
which = 'PERM'
|
||||||
want = '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 name(aetools.NProperty):
|
||||||
|
"""name - the title of the document """
|
||||||
|
which = 'pnam'
|
||||||
|
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 = {
|
||||||
}
|
}
|
||||||
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,
|
|
||||||
'kind' : kind,
|
|
||||||
'index' : index,
|
|
||||||
'location' : location,
|
|
||||||
'file_permissions' : file_permissions,
|
'file_permissions' : file_permissions,
|
||||||
|
'index' : index,
|
||||||
|
'kind' : kind,
|
||||||
|
'location' : location,
|
||||||
|
'name' : name,
|
||||||
'window' : window,
|
'window' : window,
|
||||||
}
|
}
|
||||||
document._privelemdict = {
|
document._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 = {
|
||||||
}
|
}
|
||||||
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 = {
|
||||||
# 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,
|
|
||||||
'PERM' : file_permissions,
|
|
||||||
'docu' : document,
|
|
||||||
'pidx' : index,
|
|
||||||
'pOff' : offset,
|
|
||||||
'cwin' : window,
|
|
||||||
'FILE' : location,
|
'FILE' : location,
|
||||||
'pnam' : name,
|
'PERM' : file_permissions,
|
||||||
|
'cwin' : window,
|
||||||
|
'docu' : document,
|
||||||
|
'inte' : user_interaction,
|
||||||
'pLen' : length,
|
'pLen' : length,
|
||||||
'ppos' : position,
|
'pOff' : offset,
|
||||||
'pzum' : zoomed,
|
'pbnd' : bounds,
|
||||||
'pcnt' : contents,
|
'pcnt' : contents,
|
||||||
|
'pidx' : index,
|
||||||
|
'pnam' : name,
|
||||||
|
'ppos' : position,
|
||||||
|
'pvis' : visible,
|
||||||
|
'pzum' : zoomed,
|
||||||
}
|
}
|
||||||
|
|
||||||
_compdeclarations = {
|
_compdeclarations = {
|
||||||
|
|
|
@ -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)
|
||||||
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 = {
|
||||||
'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,
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -22,10 +22,10 @@ class _3c_Inheritance_3e_(aetools.NProperty):
|
||||||
"""<Inheritance> - inherits some of its properties from the item class """
|
"""<Inheritance> - inherits some of its properties from the item class """
|
||||||
which = 'c@#^'
|
which = 'c@#^'
|
||||||
want = 'cobj'
|
want = 'cobj'
|
||||||
class selection(aetools.NProperty):
|
class completely_expanded(aetools.NProperty):
|
||||||
"""selection - the selection visible to the user """
|
"""completely expanded - Are the container and all of its children opened as outlines? (can only be set for containers viewed as lists) """
|
||||||
which = 'sele'
|
which = 'pexc'
|
||||||
want = 'obj '
|
want = 'bool'
|
||||||
class entire_contents(aetools.NProperty):
|
class entire_contents(aetools.NProperty):
|
||||||
"""entire contents - the entire contents of the container, including the contents of its children """
|
"""entire contents - the entire contents of the container, including the contents of its children """
|
||||||
which = 'ects'
|
which = 'ects'
|
||||||
|
@ -38,35 +38,35 @@ class expanded(aetools.NProperty):
|
||||||
"""expanded - Is the container opened as an outline? (can only be set for containers viewed as lists) """
|
"""expanded - Is the container opened as an outline? (can only be set for containers viewed as lists) """
|
||||||
which = 'pexp'
|
which = 'pexp'
|
||||||
want = 'bool'
|
want = 'bool'
|
||||||
class completely_expanded(aetools.NProperty):
|
|
||||||
"""completely expanded - Are the container and all of its children opened as outlines? (can only be set for containers viewed as lists) """
|
|
||||||
which = 'pexc'
|
|
||||||
want = 'bool'
|
|
||||||
class icon_size(aetools.NProperty):
|
class icon_size(aetools.NProperty):
|
||||||
"""icon size - the size of icons displayed in the window. Can be specified as a number, or ... """
|
"""icon size - ... alternatively, you can specify the icons size as a constant """
|
||||||
which = 'lvis'
|
which = 'lvis'
|
||||||
want = 'long'
|
want = 'isiz'
|
||||||
|
class selection(aetools.NProperty):
|
||||||
|
"""selection - the selection visible to the user """
|
||||||
|
which = 'sele'
|
||||||
|
want = 'obj '
|
||||||
class view_options_window(aetools.NProperty):
|
class view_options_window(aetools.NProperty):
|
||||||
"""view options window - the view options window for the container (can only be opened when the container window is open) """
|
"""view options window - the view options window for the container (can only be opened when the container window is open) """
|
||||||
which = 'vwnd'
|
which = 'vwnd'
|
||||||
want = 'vwnd'
|
want = 'vwnd'
|
||||||
# element 'cobj' as ['indx', 'name']
|
|
||||||
# element 'ctnr' as ['indx', 'name']
|
|
||||||
# element 'sctr' as ['indx', 'name']
|
|
||||||
# element 'cfol' as ['indx', 'name', 'ID ']
|
|
||||||
# element 'file' as ['indx', 'name']
|
|
||||||
# element 'alia' as ['indx', 'name']
|
# element 'alia' as ['indx', 'name']
|
||||||
# element 'appf' as ['indx', 'name', 'ID ']
|
# element 'appf' as ['indx', 'name', 'ID ']
|
||||||
# element 'docf' as ['indx', 'name']
|
# element 'cfol' as ['indx', 'name', 'ID ']
|
||||||
# element 'fntf' as ['indx', 'name']
|
|
||||||
# element 'dafi' as ['indx', 'name']
|
|
||||||
# element 'inlf' as ['indx', 'name']
|
|
||||||
# element 'sndf' as ['indx', 'name']
|
|
||||||
# element 'clpf' as ['indx', 'name']
|
# element 'clpf' as ['indx', 'name']
|
||||||
# element 'pack' as ['indx', 'name']
|
# element 'cobj' as ['indx', 'name']
|
||||||
# element 'stcs' as ['indx', 'name']
|
# element 'ctnr' as ['indx', 'name']
|
||||||
# element 'fsut' as ['indx', 'name']
|
# element 'dafi' as ['indx', 'name']
|
||||||
|
# element 'docf' as ['indx', 'name']
|
||||||
# element 'dsut' as ['indx', 'name']
|
# element 'dsut' as ['indx', 'name']
|
||||||
|
# element 'file' as ['indx', 'name']
|
||||||
|
# element 'fntf' as ['indx', 'name']
|
||||||
|
# element 'fsut' as ['indx', 'name']
|
||||||
|
# element 'inlf' as ['indx', 'name']
|
||||||
|
# element 'pack' as ['indx', 'name']
|
||||||
|
# element 'sctr' as ['indx', 'name']
|
||||||
|
# element 'sndf' as ['indx', 'name']
|
||||||
|
# element 'stcs' as ['indx', 'name']
|
||||||
|
|
||||||
containers = container
|
containers = container
|
||||||
|
|
||||||
|
@ -81,24 +81,24 @@ class trash(aetools.NProperty):
|
||||||
"""trash - the trash """
|
"""trash - the trash """
|
||||||
which = 'trsh'
|
which = 'trsh'
|
||||||
want = 'ctrs'
|
want = 'ctrs'
|
||||||
# element 'cobj' as ['indx', 'name']
|
|
||||||
# element 'ctnr' as ['indx', 'name']
|
|
||||||
# element 'sctr' as ['indx', 'name']
|
|
||||||
# element 'cdis' as ['indx', 'name']
|
|
||||||
# element 'cfol' as ['indx', 'name', 'ID ']
|
|
||||||
# element 'file' as ['indx', 'name']
|
|
||||||
# element 'alia' as ['indx', 'name']
|
# element 'alia' as ['indx', 'name']
|
||||||
# element 'appf' as ['indx', 'name', 'ID ']
|
# element 'appf' as ['indx', 'name', 'ID ']
|
||||||
# element 'docf' as ['indx', 'name']
|
# element 'cdis' as ['indx', 'name']
|
||||||
# element 'fntf' as ['indx', 'name']
|
# element 'cfol' as ['indx', 'name', 'ID ']
|
||||||
# element 'dafi' as ['indx', 'name']
|
|
||||||
# element 'inlf' as ['indx', 'name']
|
|
||||||
# element 'sndf' as ['indx', 'name']
|
|
||||||
# element 'clpf' as ['indx', 'name']
|
# element 'clpf' as ['indx', 'name']
|
||||||
# element 'pack' as ['indx', 'name']
|
# element 'cobj' as ['indx', 'name']
|
||||||
# element 'stcs' as ['indx', 'name']
|
# element 'ctnr' as ['indx', 'name']
|
||||||
# element 'fsut' as ['indx', 'name']
|
# element 'dafi' as ['indx', 'name']
|
||||||
|
# element 'docf' as ['indx', 'name']
|
||||||
# element 'dsut' as ['indx', 'name']
|
# element 'dsut' as ['indx', 'name']
|
||||||
|
# element 'file' as ['indx', 'name']
|
||||||
|
# element 'fntf' as ['indx', 'name']
|
||||||
|
# element 'fsut' as ['indx', 'name']
|
||||||
|
# element 'inlf' as ['indx', 'name']
|
||||||
|
# element 'pack' as ['indx', 'name']
|
||||||
|
# element 'sctr' as ['indx', 'name']
|
||||||
|
# element 'sndf' as ['indx', 'name']
|
||||||
|
# element 'stcs' as ['indx', 'name']
|
||||||
|
|
||||||
class disk(aetools.ComponentItem):
|
class disk(aetools.ComponentItem):
|
||||||
"""disk - A disk """
|
"""disk - A disk """
|
||||||
|
@ -107,14 +107,14 @@ class capacity(aetools.NProperty):
|
||||||
"""capacity - the total number of bytes (free or used) on the disk """
|
"""capacity - the total number of bytes (free or used) on the disk """
|
||||||
which = 'capa'
|
which = 'capa'
|
||||||
want = 'long'
|
want = 'long'
|
||||||
class free_space(aetools.NProperty):
|
|
||||||
"""free space - the number of free bytes left on the disk """
|
|
||||||
which = 'frsp'
|
|
||||||
want = 'long'
|
|
||||||
class ejectable(aetools.NProperty):
|
class ejectable(aetools.NProperty):
|
||||||
"""ejectable - Can the media be ejected (floppies, CD's, and so on)? """
|
"""ejectable - Can the media be ejected (floppies, CD's, and so on)? """
|
||||||
which = 'isej'
|
which = 'isej'
|
||||||
want = 'bool'
|
want = 'bool'
|
||||||
|
class free_space(aetools.NProperty):
|
||||||
|
"""free space - the number of free bytes left on the disk """
|
||||||
|
which = 'frsp'
|
||||||
|
want = 'long'
|
||||||
class local_volume(aetools.NProperty):
|
class local_volume(aetools.NProperty):
|
||||||
"""local volume - Is the media a local volume (as opposed to a file server)? """
|
"""local volume - Is the media a local volume (as opposed to a file server)? """
|
||||||
which = 'isrv'
|
which = 'isrv'
|
||||||
|
@ -123,64 +123,60 @@ class startup(aetools.NProperty):
|
||||||
"""startup - Is this disk the boot disk? """
|
"""startup - Is this disk the boot disk? """
|
||||||
which = 'istd'
|
which = 'istd'
|
||||||
want = 'bool'
|
want = 'bool'
|
||||||
# element 'cobj' as ['indx', 'name']
|
|
||||||
# element 'ctnr' as ['indx', 'name']
|
|
||||||
# element 'sctr' as ['indx', 'name']
|
|
||||||
# element 'cfol' as ['indx', 'name', 'ID ']
|
|
||||||
# element 'file' as ['indx', 'name']
|
|
||||||
# element 'alia' as ['indx', 'name']
|
# element 'alia' as ['indx', 'name']
|
||||||
# element 'appf' as ['indx', 'name', 'ID ']
|
# element 'appf' as ['indx', 'name', 'ID ']
|
||||||
# element 'docf' as ['indx', 'name']
|
# element 'cfol' as ['indx', 'name', 'ID ']
|
||||||
# element 'fntf' as ['indx', 'name']
|
|
||||||
# element 'dafi' as ['indx', 'name']
|
|
||||||
# element 'inlf' as ['indx', 'name']
|
|
||||||
# element 'sndf' as ['indx', 'name']
|
|
||||||
# element 'clpf' as ['indx', 'name']
|
# element 'clpf' as ['indx', 'name']
|
||||||
# element 'pack' as ['indx', 'name']
|
# element 'cobj' as ['indx', 'name']
|
||||||
# element 'stcs' as ['indx', 'name']
|
# element 'ctnr' as ['indx', 'name']
|
||||||
# element 'fsut' as ['indx', 'name']
|
# element 'dafi' as ['indx', 'name']
|
||||||
|
# element 'docf' as ['indx', 'name']
|
||||||
# element 'dsut' as ['indx', 'name']
|
# element 'dsut' as ['indx', 'name']
|
||||||
|
# element 'file' as ['indx', 'name']
|
||||||
|
# element 'fntf' as ['indx', 'name']
|
||||||
|
# element 'fsut' as ['indx', 'name']
|
||||||
|
# element 'inlf' as ['indx', 'name']
|
||||||
|
# element 'pack' as ['indx', 'name']
|
||||||
|
# element 'sctr' as ['indx', 'name']
|
||||||
|
# element 'sndf' as ['indx', 'name']
|
||||||
|
# element 'stcs' as ['indx', 'name']
|
||||||
|
|
||||||
disks = disk
|
disks = disk
|
||||||
|
|
||||||
class folder(aetools.ComponentItem):
|
class folder(aetools.ComponentItem):
|
||||||
"""folder - A folder """
|
"""folder - A folder """
|
||||||
want = 'cfol'
|
want = 'cfol'
|
||||||
# element 'cobj' as ['indx', 'name']
|
|
||||||
# element 'ctnr' as ['indx', 'name']
|
|
||||||
# element 'sctr' as ['indx', 'name']
|
|
||||||
# element 'cfol' as ['indx', 'name', 'ID ']
|
|
||||||
# element 'file' as ['indx', 'name']
|
|
||||||
# element 'alia' as ['indx', 'name']
|
# element 'alia' as ['indx', 'name']
|
||||||
# element 'appf' as ['indx', 'name', 'ID ']
|
# element 'appf' as ['indx', 'name', 'ID ']
|
||||||
# element 'docf' as ['indx', 'name']
|
# element 'cfol' as ['indx', 'name', 'ID ']
|
||||||
# element 'fntf' as ['indx', 'name']
|
|
||||||
# element 'dafi' as ['indx', 'name']
|
|
||||||
# element 'inlf' as ['indx', 'name']
|
|
||||||
# element 'sndf' as ['indx', 'name']
|
|
||||||
# element 'clpf' as ['indx', 'name']
|
# element 'clpf' as ['indx', 'name']
|
||||||
# element 'pack' as ['indx', 'name']
|
# element 'cobj' as ['indx', 'name']
|
||||||
# element 'stcs' as ['indx', 'name']
|
# element 'ctnr' as ['indx', 'name']
|
||||||
# element 'fsut' as ['indx', 'name']
|
# element 'dafi' as ['indx', 'name']
|
||||||
|
# element 'docf' as ['indx', 'name']
|
||||||
# element 'dsut' as ['indx', 'name']
|
# element 'dsut' as ['indx', 'name']
|
||||||
|
# element 'file' as ['indx', 'name']
|
||||||
|
# element 'fntf' as ['indx', 'name']
|
||||||
|
# element 'fsut' as ['indx', 'name']
|
||||||
|
# element 'inlf' as ['indx', 'name']
|
||||||
|
# element 'pack' as ['indx', 'name']
|
||||||
|
# element 'sctr' as ['indx', 'name']
|
||||||
|
# element 'sndf' as ['indx', 'name']
|
||||||
|
# element 'stcs' as ['indx', 'name']
|
||||||
|
|
||||||
folders = folder
|
folders = folder
|
||||||
|
|
||||||
class sharable_container(aetools.ComponentItem):
|
class sharable_container(aetools.ComponentItem):
|
||||||
"""sharable container - A container that may be shared (disks and folders) """
|
"""sharable container - A container that may be shared (disks and folders) """
|
||||||
want = 'sctr'
|
want = 'sctr'
|
||||||
class owner(aetools.NProperty):
|
class exported(aetools.NProperty):
|
||||||
"""owner - the user that owns the container (file sharing must be on to use this property) """
|
"""exported - Is the container a share point or inside a share point, i.e., can the container be shared? (file sharing must be on to use this property) """
|
||||||
which = 'sown'
|
which = 'sexp'
|
||||||
want = 'itxt'
|
want = 'bool'
|
||||||
class group(aetools.NProperty):
|
class group(aetools.NProperty):
|
||||||
"""group - the user or group that has special access to the container (file sharing must be on to use this property) """
|
"""group - the user or group that has special access to the container (file sharing must be on to use this property) """
|
||||||
which = 'sgrp'
|
which = 'sgrp'
|
||||||
want = 'itxt'
|
want = 'itxt'
|
||||||
class owner_privileges(aetools.NProperty):
|
|
||||||
"""owner privileges - the see folders/see files/make changes privileges for the owner (file sharing must be on to use this property) """
|
|
||||||
which = 'ownr'
|
|
||||||
want = 'priv'
|
|
||||||
class group_privileges(aetools.NProperty):
|
class group_privileges(aetools.NProperty):
|
||||||
"""group privileges - the see folders/see files/make changes privileges for the group (file sharing must be on to use this property) """
|
"""group privileges - the see folders/see files/make changes privileges for the group (file sharing must be on to use this property) """
|
||||||
which = 'gppr'
|
which = 'gppr'
|
||||||
|
@ -189,60 +185,64 @@ class guest_privileges(aetools.NProperty):
|
||||||
"""guest privileges - the see folders/see files/make changes privileges for everyone (file sharing must be on to use this property) """
|
"""guest privileges - the see folders/see files/make changes privileges for everyone (file sharing must be on to use this property) """
|
||||||
which = 'gstp'
|
which = 'gstp'
|
||||||
want = 'priv'
|
want = 'priv'
|
||||||
class privileges_inherited(aetools.NProperty):
|
|
||||||
"""privileges inherited - Are the privileges of the container always the same as the container in which it is stored? (file sharing must be on to use this property) """
|
|
||||||
which = 'iprv'
|
|
||||||
want = 'bool'
|
|
||||||
class mounted(aetools.NProperty):
|
class mounted(aetools.NProperty):
|
||||||
"""mounted - Is the container mounted on another machine's desktop? (file sharing must be on to use this property) """
|
"""mounted - Is the container mounted on another machine's desktop? (file sharing must be on to use this property) """
|
||||||
which = 'smou'
|
which = 'smou'
|
||||||
want = 'bool'
|
want = 'bool'
|
||||||
class exported(aetools.NProperty):
|
class owner(aetools.NProperty):
|
||||||
"""exported - Is the container a share point or inside a share point, i.e., can the container be shared? (file sharing must be on to use this property) """
|
"""owner - the user that owns the container (file sharing must be on to use this property) """
|
||||||
which = 'sexp'
|
which = 'sown'
|
||||||
want = 'bool'
|
want = 'itxt'
|
||||||
class shared(aetools.NProperty):
|
class owner_privileges(aetools.NProperty):
|
||||||
"""shared - Is the container a share point, i.e., is the container currently being shared? (file sharing must be on to use this property) """
|
"""owner privileges - the see folders/see files/make changes privileges for the owner (file sharing must be on to use this property) """
|
||||||
which = 'shar'
|
which = 'ownr'
|
||||||
|
want = 'priv'
|
||||||
|
class privileges_inherited(aetools.NProperty):
|
||||||
|
"""privileges inherited - Are the privileges of the container always the same as the container in which it is stored? (file sharing must be on to use this property) """
|
||||||
|
which = 'iprv'
|
||||||
want = 'bool'
|
want = 'bool'
|
||||||
class protected(aetools.NProperty):
|
class protected(aetools.NProperty):
|
||||||
"""protected - Is the container protected from being moved, renamed and deleted? (file sharing must be on to use this property) """
|
"""protected - Is the container protected from being moved, renamed and deleted? (file sharing must be on to use this property) """
|
||||||
which = 'spro'
|
which = 'spro'
|
||||||
want = 'bool'
|
want = 'bool'
|
||||||
# element 'cobj' as ['indx', 'name']
|
class shared(aetools.NProperty):
|
||||||
# element 'ctnr' as ['indx', 'name']
|
"""shared - Is the container a share point, i.e., is the container currently being shared? (file sharing must be on to use this property) """
|
||||||
# element 'sctr' as ['indx', 'name']
|
which = 'shar'
|
||||||
# element 'cfol' as ['indx', 'name', 'ID ']
|
want = 'bool'
|
||||||
# element 'file' as ['indx', 'name']
|
|
||||||
# element 'alia' as ['indx', 'name']
|
# element 'alia' as ['indx', 'name']
|
||||||
# element 'appf' as ['indx', 'name', 'ID ']
|
# element 'appf' as ['indx', 'name', 'ID ']
|
||||||
# element 'docf' as ['indx', 'name']
|
# element 'cfol' as ['indx', 'name', 'ID ']
|
||||||
# element 'fntf' as ['indx', 'name']
|
|
||||||
# element 'dafi' as ['indx', 'name']
|
|
||||||
# element 'inlf' as ['indx', 'name']
|
|
||||||
# element 'sndf' as ['indx', 'name']
|
|
||||||
# element 'clpf' as ['indx', 'name']
|
# element 'clpf' as ['indx', 'name']
|
||||||
# element 'pack' as ['indx', 'name']
|
# element 'cobj' as ['indx', 'name']
|
||||||
# element 'stcs' as ['indx', 'name']
|
# element 'ctnr' as ['indx', 'name']
|
||||||
# element 'fsut' as ['indx', 'name']
|
# element 'dafi' as ['indx', 'name']
|
||||||
|
# element 'docf' as ['indx', 'name']
|
||||||
# element 'dsut' as ['indx', 'name']
|
# element 'dsut' as ['indx', 'name']
|
||||||
|
# element 'file' as ['indx', 'name']
|
||||||
|
# element 'fntf' as ['indx', 'name']
|
||||||
|
# element 'fsut' as ['indx', 'name']
|
||||||
|
# element 'inlf' as ['indx', 'name']
|
||||||
|
# element 'pack' as ['indx', 'name']
|
||||||
|
# element 'sctr' as ['indx', 'name']
|
||||||
|
# element 'sndf' as ['indx', 'name']
|
||||||
|
# element 'stcs' as ['indx', 'name']
|
||||||
|
|
||||||
sharable_containers = sharable_container
|
sharable_containers = sharable_container
|
||||||
|
|
||||||
class sharing_privileges(aetools.ComponentItem):
|
class sharing_privileges(aetools.ComponentItem):
|
||||||
"""sharing privileges - A set of sharing properties (used in sharable containers) """
|
"""sharing privileges - A set of sharing properties (used in sharable containers) """
|
||||||
want = 'priv'
|
want = 'priv'
|
||||||
class see_folders(aetools.NProperty):
|
class make_changes(aetools.NProperty):
|
||||||
"""see folders - Can folders be seen? """
|
"""make changes - Can changes be made? """
|
||||||
which = 'prvs'
|
which = 'prvw'
|
||||||
want = 'bool'
|
want = 'bool'
|
||||||
class see_files(aetools.NProperty):
|
class see_files(aetools.NProperty):
|
||||||
"""see files - Can files be seen? """
|
"""see files - Can files be seen? """
|
||||||
which = 'prvr'
|
which = 'prvr'
|
||||||
want = 'bool'
|
want = 'bool'
|
||||||
class make_changes(aetools.NProperty):
|
class see_folders(aetools.NProperty):
|
||||||
"""make changes - Can changes be made? """
|
"""see folders - Can folders be seen? """
|
||||||
which = 'prvw'
|
which = 'prvs'
|
||||||
want = 'bool'
|
want = 'bool'
|
||||||
|
|
||||||
class trash_2d_object(aetools.ComponentItem):
|
class trash_2d_object(aetools.ComponentItem):
|
||||||
|
@ -252,55 +252,55 @@ class warns_before_emptying(aetools.NProperty):
|
||||||
"""warns before emptying - Display a dialog when emptying the trash? """
|
"""warns before emptying - Display a dialog when emptying the trash? """
|
||||||
which = 'warn'
|
which = 'warn'
|
||||||
want = 'bool'
|
want = 'bool'
|
||||||
# element 'cobj' as ['indx', 'name']
|
|
||||||
# element 'ctnr' as ['indx', 'name']
|
|
||||||
# element 'sctr' as ['indx', 'name']
|
|
||||||
# element 'cfol' as ['indx', 'name', 'ID ']
|
|
||||||
# element 'file' as ['indx', 'name']
|
|
||||||
# element 'alia' as ['indx', 'name']
|
# element 'alia' as ['indx', 'name']
|
||||||
# element 'appf' as ['indx', 'name', 'ID ']
|
# element 'appf' as ['indx', 'name', 'ID ']
|
||||||
# element 'docf' as ['indx', 'name']
|
# element 'cfol' as ['indx', 'name', 'ID ']
|
||||||
# element 'fntf' as ['indx', 'name']
|
|
||||||
# element 'dafi' as ['indx', 'name']
|
|
||||||
# element 'inlf' as ['indx', 'name']
|
|
||||||
# element 'sndf' as ['indx', 'name']
|
|
||||||
# element 'clpf' as ['indx', 'name']
|
# element 'clpf' as ['indx', 'name']
|
||||||
# element 'pack' as ['indx', 'name']
|
# element 'cobj' as ['indx', 'name']
|
||||||
# element 'stcs' as ['indx', 'name']
|
# element 'ctnr' as ['indx', 'name']
|
||||||
# element 'fsut' as ['indx', 'name']
|
# element 'dafi' as ['indx', 'name']
|
||||||
|
# element 'docf' as ['indx', 'name']
|
||||||
# element 'dsut' as ['indx', 'name']
|
# element 'dsut' as ['indx', 'name']
|
||||||
|
# element 'file' as ['indx', 'name']
|
||||||
|
# element 'fntf' as ['indx', 'name']
|
||||||
|
# element 'fsut' as ['indx', 'name']
|
||||||
|
# element 'inlf' as ['indx', 'name']
|
||||||
|
# element 'pack' as ['indx', 'name']
|
||||||
|
# element 'sctr' as ['indx', 'name']
|
||||||
|
# element 'sndf' as ['indx', 'name']
|
||||||
|
# element 'stcs' as ['indx', 'name']
|
||||||
import Earlier_terms
|
import Earlier_terms
|
||||||
container._superclassnames = ['item']
|
container._superclassnames = ['item']
|
||||||
import Files_and_suitcases
|
import Files_and_suitcases
|
||||||
container._privpropdict = {
|
container._privpropdict = {
|
||||||
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_,
|
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_,
|
||||||
'selection' : selection,
|
'completely_expanded' : completely_expanded,
|
||||||
'entire_contents' : entire_contents,
|
'entire_contents' : entire_contents,
|
||||||
'expandable' : expandable,
|
'expandable' : expandable,
|
||||||
'expanded' : expanded,
|
'expanded' : expanded,
|
||||||
'completely_expanded' : completely_expanded,
|
|
||||||
'icon_size' : icon_size,
|
'icon_size' : icon_size,
|
||||||
'icon_size' : icon_size,
|
'icon_size' : icon_size,
|
||||||
|
'selection' : selection,
|
||||||
'view_options_window' : view_options_window,
|
'view_options_window' : view_options_window,
|
||||||
}
|
}
|
||||||
container._privelemdict = {
|
container._privelemdict = {
|
||||||
'item' : Earlier_terms.item,
|
'accessory_suitcase' : Earlier_terms.accessory_suitcase,
|
||||||
'container' : container,
|
|
||||||
'sharable_container' : sharable_container,
|
|
||||||
'folder' : folder,
|
|
||||||
'file' : Files_and_suitcases.file,
|
|
||||||
'alias_file' : Files_and_suitcases.alias_file,
|
'alias_file' : Files_and_suitcases.alias_file,
|
||||||
'application_file' : Earlier_terms.application_file,
|
'application_file' : Earlier_terms.application_file,
|
||||||
'document_file' : Files_and_suitcases.document_file,
|
|
||||||
'font_file' : Files_and_suitcases.font_file,
|
|
||||||
'desk_accessory_file' : Files_and_suitcases.desk_accessory_file,
|
|
||||||
'internet_location' : Earlier_terms.internet_location,
|
|
||||||
'sound_file' : Files_and_suitcases.sound_file,
|
|
||||||
'clipping' : Files_and_suitcases.clipping,
|
'clipping' : Files_and_suitcases.clipping,
|
||||||
'package' : Files_and_suitcases.package,
|
'container' : container,
|
||||||
'suitcase' : Files_and_suitcases.suitcase,
|
'desk_accessory_file' : Files_and_suitcases.desk_accessory_file,
|
||||||
|
'document_file' : Files_and_suitcases.document_file,
|
||||||
|
'file' : Files_and_suitcases.file,
|
||||||
|
'folder' : folder,
|
||||||
|
'font_file' : Files_and_suitcases.font_file,
|
||||||
'font_suitcase' : Files_and_suitcases.font_suitcase,
|
'font_suitcase' : Files_and_suitcases.font_suitcase,
|
||||||
'accessory_suitcase' : Earlier_terms.accessory_suitcase,
|
'internet_location' : Earlier_terms.internet_location,
|
||||||
|
'item' : Earlier_terms.item,
|
||||||
|
'package' : Files_and_suitcases.package,
|
||||||
|
'sharable_container' : sharable_container,
|
||||||
|
'sound_file' : Files_and_suitcases.sound_file,
|
||||||
|
'suitcase' : Files_and_suitcases.suitcase,
|
||||||
}
|
}
|
||||||
desktop_2d_object._superclassnames = ['container']
|
desktop_2d_object._superclassnames = ['container']
|
||||||
desktop_2d_object._privpropdict = {
|
desktop_2d_object._privpropdict = {
|
||||||
|
@ -309,114 +309,114 @@ desktop_2d_object._privpropdict = {
|
||||||
'trash' : trash,
|
'trash' : trash,
|
||||||
}
|
}
|
||||||
desktop_2d_object._privelemdict = {
|
desktop_2d_object._privelemdict = {
|
||||||
'item' : Earlier_terms.item,
|
'accessory_suitcase' : Earlier_terms.accessory_suitcase,
|
||||||
'container' : container,
|
|
||||||
'sharable_container' : sharable_container,
|
|
||||||
'disk' : disk,
|
|
||||||
'folder' : folder,
|
|
||||||
'file' : Files_and_suitcases.file,
|
|
||||||
'alias_file' : Files_and_suitcases.alias_file,
|
'alias_file' : Files_and_suitcases.alias_file,
|
||||||
'application_file' : Earlier_terms.application_file,
|
'application_file' : Earlier_terms.application_file,
|
||||||
'document_file' : Files_and_suitcases.document_file,
|
|
||||||
'font_file' : Files_and_suitcases.font_file,
|
|
||||||
'desk_accessory_file' : Files_and_suitcases.desk_accessory_file,
|
|
||||||
'internet_location' : Earlier_terms.internet_location,
|
|
||||||
'sound_file' : Files_and_suitcases.sound_file,
|
|
||||||
'clipping' : Files_and_suitcases.clipping,
|
'clipping' : Files_and_suitcases.clipping,
|
||||||
'package' : Files_and_suitcases.package,
|
'container' : container,
|
||||||
'suitcase' : Files_and_suitcases.suitcase,
|
'desk_accessory_file' : Files_and_suitcases.desk_accessory_file,
|
||||||
|
'disk' : disk,
|
||||||
|
'document_file' : Files_and_suitcases.document_file,
|
||||||
|
'file' : Files_and_suitcases.file,
|
||||||
|
'folder' : folder,
|
||||||
|
'font_file' : Files_and_suitcases.font_file,
|
||||||
'font_suitcase' : Files_and_suitcases.font_suitcase,
|
'font_suitcase' : Files_and_suitcases.font_suitcase,
|
||||||
'accessory_suitcase' : Earlier_terms.accessory_suitcase,
|
'internet_location' : Earlier_terms.internet_location,
|
||||||
|
'item' : Earlier_terms.item,
|
||||||
|
'package' : Files_and_suitcases.package,
|
||||||
|
'sharable_container' : sharable_container,
|
||||||
|
'sound_file' : Files_and_suitcases.sound_file,
|
||||||
|
'suitcase' : Files_and_suitcases.suitcase,
|
||||||
}
|
}
|
||||||
disk._superclassnames = ['sharable_container']
|
disk._superclassnames = ['sharable_container']
|
||||||
disk._privpropdict = {
|
disk._privpropdict = {
|
||||||
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_,
|
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_,
|
||||||
'capacity' : capacity,
|
'capacity' : capacity,
|
||||||
'free_space' : free_space,
|
|
||||||
'ejectable' : ejectable,
|
'ejectable' : ejectable,
|
||||||
|
'free_space' : free_space,
|
||||||
'local_volume' : local_volume,
|
'local_volume' : local_volume,
|
||||||
'startup' : startup,
|
'startup' : startup,
|
||||||
}
|
}
|
||||||
disk._privelemdict = {
|
disk._privelemdict = {
|
||||||
'item' : Earlier_terms.item,
|
'accessory_suitcase' : Earlier_terms.accessory_suitcase,
|
||||||
'container' : container,
|
|
||||||
'sharable_container' : sharable_container,
|
|
||||||
'folder' : folder,
|
|
||||||
'file' : Files_and_suitcases.file,
|
|
||||||
'alias_file' : Files_and_suitcases.alias_file,
|
'alias_file' : Files_and_suitcases.alias_file,
|
||||||
'application_file' : Earlier_terms.application_file,
|
'application_file' : Earlier_terms.application_file,
|
||||||
'document_file' : Files_and_suitcases.document_file,
|
|
||||||
'font_file' : Files_and_suitcases.font_file,
|
|
||||||
'desk_accessory_file' : Files_and_suitcases.desk_accessory_file,
|
|
||||||
'internet_location' : Earlier_terms.internet_location,
|
|
||||||
'sound_file' : Files_and_suitcases.sound_file,
|
|
||||||
'clipping' : Files_and_suitcases.clipping,
|
'clipping' : Files_and_suitcases.clipping,
|
||||||
'package' : Files_and_suitcases.package,
|
'container' : container,
|
||||||
'suitcase' : Files_and_suitcases.suitcase,
|
'desk_accessory_file' : Files_and_suitcases.desk_accessory_file,
|
||||||
|
'document_file' : Files_and_suitcases.document_file,
|
||||||
|
'file' : Files_and_suitcases.file,
|
||||||
|
'folder' : folder,
|
||||||
|
'font_file' : Files_and_suitcases.font_file,
|
||||||
'font_suitcase' : Files_and_suitcases.font_suitcase,
|
'font_suitcase' : Files_and_suitcases.font_suitcase,
|
||||||
'accessory_suitcase' : Earlier_terms.accessory_suitcase,
|
'internet_location' : Earlier_terms.internet_location,
|
||||||
|
'item' : Earlier_terms.item,
|
||||||
|
'package' : Files_and_suitcases.package,
|
||||||
|
'sharable_container' : sharable_container,
|
||||||
|
'sound_file' : Files_and_suitcases.sound_file,
|
||||||
|
'suitcase' : Files_and_suitcases.suitcase,
|
||||||
}
|
}
|
||||||
folder._superclassnames = ['sharable_container']
|
folder._superclassnames = ['sharable_container']
|
||||||
folder._privpropdict = {
|
folder._privpropdict = {
|
||||||
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_,
|
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_,
|
||||||
}
|
}
|
||||||
folder._privelemdict = {
|
folder._privelemdict = {
|
||||||
'item' : Earlier_terms.item,
|
'accessory_suitcase' : Earlier_terms.accessory_suitcase,
|
||||||
'container' : container,
|
|
||||||
'sharable_container' : sharable_container,
|
|
||||||
'folder' : folder,
|
|
||||||
'file' : Files_and_suitcases.file,
|
|
||||||
'alias_file' : Files_and_suitcases.alias_file,
|
'alias_file' : Files_and_suitcases.alias_file,
|
||||||
'application_file' : Earlier_terms.application_file,
|
'application_file' : Earlier_terms.application_file,
|
||||||
'document_file' : Files_and_suitcases.document_file,
|
|
||||||
'font_file' : Files_and_suitcases.font_file,
|
|
||||||
'desk_accessory_file' : Files_and_suitcases.desk_accessory_file,
|
|
||||||
'internet_location' : Earlier_terms.internet_location,
|
|
||||||
'sound_file' : Files_and_suitcases.sound_file,
|
|
||||||
'clipping' : Files_and_suitcases.clipping,
|
'clipping' : Files_and_suitcases.clipping,
|
||||||
'package' : Files_and_suitcases.package,
|
'container' : container,
|
||||||
'suitcase' : Files_and_suitcases.suitcase,
|
'desk_accessory_file' : Files_and_suitcases.desk_accessory_file,
|
||||||
|
'document_file' : Files_and_suitcases.document_file,
|
||||||
|
'file' : Files_and_suitcases.file,
|
||||||
|
'folder' : folder,
|
||||||
|
'font_file' : Files_and_suitcases.font_file,
|
||||||
'font_suitcase' : Files_and_suitcases.font_suitcase,
|
'font_suitcase' : Files_and_suitcases.font_suitcase,
|
||||||
'accessory_suitcase' : Earlier_terms.accessory_suitcase,
|
'internet_location' : Earlier_terms.internet_location,
|
||||||
|
'item' : Earlier_terms.item,
|
||||||
|
'package' : Files_and_suitcases.package,
|
||||||
|
'sharable_container' : sharable_container,
|
||||||
|
'sound_file' : Files_and_suitcases.sound_file,
|
||||||
|
'suitcase' : Files_and_suitcases.suitcase,
|
||||||
}
|
}
|
||||||
sharable_container._superclassnames = ['container']
|
sharable_container._superclassnames = ['container']
|
||||||
sharable_container._privpropdict = {
|
sharable_container._privpropdict = {
|
||||||
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_,
|
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_,
|
||||||
'owner' : owner,
|
'exported' : exported,
|
||||||
'group' : group,
|
'group' : group,
|
||||||
'owner_privileges' : owner_privileges,
|
|
||||||
'group_privileges' : group_privileges,
|
'group_privileges' : group_privileges,
|
||||||
'guest_privileges' : guest_privileges,
|
'guest_privileges' : guest_privileges,
|
||||||
'privileges_inherited' : privileges_inherited,
|
|
||||||
'mounted' : mounted,
|
'mounted' : mounted,
|
||||||
'exported' : exported,
|
'owner' : owner,
|
||||||
'shared' : shared,
|
'owner_privileges' : owner_privileges,
|
||||||
|
'privileges_inherited' : privileges_inherited,
|
||||||
'protected' : protected,
|
'protected' : protected,
|
||||||
|
'shared' : shared,
|
||||||
}
|
}
|
||||||
sharable_container._privelemdict = {
|
sharable_container._privelemdict = {
|
||||||
'item' : Earlier_terms.item,
|
'accessory_suitcase' : Earlier_terms.accessory_suitcase,
|
||||||
'container' : container,
|
|
||||||
'sharable_container' : sharable_container,
|
|
||||||
'folder' : folder,
|
|
||||||
'file' : Files_and_suitcases.file,
|
|
||||||
'alias_file' : Files_and_suitcases.alias_file,
|
'alias_file' : Files_and_suitcases.alias_file,
|
||||||
'application_file' : Earlier_terms.application_file,
|
'application_file' : Earlier_terms.application_file,
|
||||||
'document_file' : Files_and_suitcases.document_file,
|
|
||||||
'font_file' : Files_and_suitcases.font_file,
|
|
||||||
'desk_accessory_file' : Files_and_suitcases.desk_accessory_file,
|
|
||||||
'internet_location' : Earlier_terms.internet_location,
|
|
||||||
'sound_file' : Files_and_suitcases.sound_file,
|
|
||||||
'clipping' : Files_and_suitcases.clipping,
|
'clipping' : Files_and_suitcases.clipping,
|
||||||
'package' : Files_and_suitcases.package,
|
'container' : container,
|
||||||
'suitcase' : Files_and_suitcases.suitcase,
|
'desk_accessory_file' : Files_and_suitcases.desk_accessory_file,
|
||||||
|
'document_file' : Files_and_suitcases.document_file,
|
||||||
|
'file' : Files_and_suitcases.file,
|
||||||
|
'folder' : folder,
|
||||||
|
'font_file' : Files_and_suitcases.font_file,
|
||||||
'font_suitcase' : Files_and_suitcases.font_suitcase,
|
'font_suitcase' : Files_and_suitcases.font_suitcase,
|
||||||
'accessory_suitcase' : Earlier_terms.accessory_suitcase,
|
'internet_location' : Earlier_terms.internet_location,
|
||||||
|
'item' : Earlier_terms.item,
|
||||||
|
'package' : Files_and_suitcases.package,
|
||||||
|
'sharable_container' : sharable_container,
|
||||||
|
'sound_file' : Files_and_suitcases.sound_file,
|
||||||
|
'suitcase' : Files_and_suitcases.suitcase,
|
||||||
}
|
}
|
||||||
sharing_privileges._superclassnames = []
|
sharing_privileges._superclassnames = []
|
||||||
sharing_privileges._privpropdict = {
|
sharing_privileges._privpropdict = {
|
||||||
'see_folders' : see_folders,
|
|
||||||
'see_files' : see_files,
|
|
||||||
'make_changes' : make_changes,
|
'make_changes' : make_changes,
|
||||||
|
'see_files' : see_files,
|
||||||
|
'see_folders' : see_folders,
|
||||||
}
|
}
|
||||||
sharing_privileges._privelemdict = {
|
sharing_privileges._privelemdict = {
|
||||||
}
|
}
|
||||||
|
@ -426,68 +426,68 @@ trash_2d_object._privpropdict = {
|
||||||
'warns_before_emptying' : warns_before_emptying,
|
'warns_before_emptying' : warns_before_emptying,
|
||||||
}
|
}
|
||||||
trash_2d_object._privelemdict = {
|
trash_2d_object._privelemdict = {
|
||||||
'item' : Earlier_terms.item,
|
'accessory_suitcase' : Earlier_terms.accessory_suitcase,
|
||||||
'container' : container,
|
|
||||||
'sharable_container' : sharable_container,
|
|
||||||
'folder' : folder,
|
|
||||||
'file' : Files_and_suitcases.file,
|
|
||||||
'alias_file' : Files_and_suitcases.alias_file,
|
'alias_file' : Files_and_suitcases.alias_file,
|
||||||
'application_file' : Earlier_terms.application_file,
|
'application_file' : Earlier_terms.application_file,
|
||||||
'document_file' : Files_and_suitcases.document_file,
|
|
||||||
'font_file' : Files_and_suitcases.font_file,
|
|
||||||
'desk_accessory_file' : Files_and_suitcases.desk_accessory_file,
|
|
||||||
'internet_location' : Earlier_terms.internet_location,
|
|
||||||
'sound_file' : Files_and_suitcases.sound_file,
|
|
||||||
'clipping' : Files_and_suitcases.clipping,
|
'clipping' : Files_and_suitcases.clipping,
|
||||||
'package' : Files_and_suitcases.package,
|
'container' : container,
|
||||||
'suitcase' : Files_and_suitcases.suitcase,
|
'desk_accessory_file' : Files_and_suitcases.desk_accessory_file,
|
||||||
|
'document_file' : Files_and_suitcases.document_file,
|
||||||
|
'file' : Files_and_suitcases.file,
|
||||||
|
'folder' : folder,
|
||||||
|
'font_file' : Files_and_suitcases.font_file,
|
||||||
'font_suitcase' : Files_and_suitcases.font_suitcase,
|
'font_suitcase' : Files_and_suitcases.font_suitcase,
|
||||||
'accessory_suitcase' : Earlier_terms.accessory_suitcase,
|
'internet_location' : Earlier_terms.internet_location,
|
||||||
|
'item' : Earlier_terms.item,
|
||||||
|
'package' : Files_and_suitcases.package,
|
||||||
|
'sharable_container' : sharable_container,
|
||||||
|
'sound_file' : Files_and_suitcases.sound_file,
|
||||||
|
'suitcase' : Files_and_suitcases.suitcase,
|
||||||
}
|
}
|
||||||
|
|
||||||
#
|
#
|
||||||
# Indices of types declared in this module
|
# Indices of types declared in this module
|
||||||
#
|
#
|
||||||
_classdeclarations = {
|
_classdeclarations = {
|
||||||
'ctrs' : trash_2d_object,
|
|
||||||
'cdsk' : desktop_2d_object,
|
|
||||||
'sctr' : sharable_container,
|
|
||||||
'cdis' : disk,
|
'cdis' : disk,
|
||||||
'ctnr' : container,
|
'cdsk' : desktop_2d_object,
|
||||||
'cfol' : folder,
|
'cfol' : folder,
|
||||||
|
'ctnr' : container,
|
||||||
|
'ctrs' : trash_2d_object,
|
||||||
'priv' : sharing_privileges,
|
'priv' : sharing_privileges,
|
||||||
|
'sctr' : sharable_container,
|
||||||
}
|
}
|
||||||
|
|
||||||
_propdeclarations = {
|
_propdeclarations = {
|
||||||
'pexp' : expanded,
|
'c@#^' : _3c_Inheritance_3e_,
|
||||||
'iprv' : privileges_inherited,
|
'capa' : capacity,
|
||||||
'gstp' : guest_privileges,
|
|
||||||
'ects' : entire_contents,
|
'ects' : entire_contents,
|
||||||
'lvis' : icon_size,
|
'frsp' : free_space,
|
||||||
'gppr' : group_privileges,
|
'gppr' : group_privileges,
|
||||||
|
'gstp' : guest_privileges,
|
||||||
|
'iprv' : privileges_inherited,
|
||||||
|
'isej' : ejectable,
|
||||||
'isrv' : local_volume,
|
'isrv' : local_volume,
|
||||||
'prvs' : see_folders,
|
'istd' : startup,
|
||||||
|
'lvis' : icon_size,
|
||||||
|
'ownr' : owner_privileges,
|
||||||
'pexa' : expandable,
|
'pexa' : expandable,
|
||||||
'pexc' : completely_expanded,
|
'pexc' : completely_expanded,
|
||||||
|
'pexp' : expanded,
|
||||||
|
'prvr' : see_files,
|
||||||
|
'prvs' : see_folders,
|
||||||
|
'prvw' : make_changes,
|
||||||
|
'sdsk' : startup_disk,
|
||||||
|
'sele' : selection,
|
||||||
|
'sexp' : exported,
|
||||||
|
'sgrp' : group,
|
||||||
|
'shar' : shared,
|
||||||
|
'smou' : mounted,
|
||||||
|
'sown' : owner,
|
||||||
|
'spro' : protected,
|
||||||
|
'trsh' : trash,
|
||||||
'vwnd' : view_options_window,
|
'vwnd' : view_options_window,
|
||||||
'warn' : warns_before_emptying,
|
'warn' : warns_before_emptying,
|
||||||
'sown' : owner,
|
|
||||||
'prvw' : make_changes,
|
|
||||||
'isej' : ejectable,
|
|
||||||
'capa' : capacity,
|
|
||||||
'shar' : shared,
|
|
||||||
'sexp' : exported,
|
|
||||||
'sdsk' : startup_disk,
|
|
||||||
'istd' : startup,
|
|
||||||
'prvr' : see_files,
|
|
||||||
'c@#^' : _3c_Inheritance_3e_,
|
|
||||||
'smou' : mounted,
|
|
||||||
'sele' : selection,
|
|
||||||
'trsh' : trash,
|
|
||||||
'sgrp' : group,
|
|
||||||
'frsp' : free_space,
|
|
||||||
'spro' : protected,
|
|
||||||
'ownr' : owner_privileges,
|
|
||||||
}
|
}
|
||||||
|
|
||||||
_compdeclarations = {
|
_compdeclarations = {
|
||||||
|
|
|
@ -31,14 +31,34 @@ accessory_suitcases = accessory_suitcase
|
||||||
class application(aetools.ComponentItem):
|
class application(aetools.ComponentItem):
|
||||||
"""application - The Finder """
|
"""application - The Finder """
|
||||||
want = 'capp'
|
want = 'capp'
|
||||||
class properties(aetools.NProperty):
|
class Finder_preferences(aetools.NProperty):
|
||||||
"""properties - property that allows getting and setting of multiple properties """
|
"""Finder preferences - Various preferences that apply to the Finder as a whole """
|
||||||
which = 'qpro'
|
which = 'pfrp'
|
||||||
want = 'reco'
|
want = 'obj '
|
||||||
|
class about_this_computer(aetools.NProperty):
|
||||||
|
"""about this computer - the \xd2About this Computer\xd3 dialog and the list of running processes displayed in it """
|
||||||
|
which = 'abbx'
|
||||||
|
want = 'obj '
|
||||||
class clipboard(aetools.NProperty):
|
class clipboard(aetools.NProperty):
|
||||||
"""clipboard - the Finder\xd5s clipboard window """
|
"""clipboard - the Finder\xd5s clipboard window """
|
||||||
which = 'pcli'
|
which = 'pcli'
|
||||||
want = 'obj '
|
want = 'obj '
|
||||||
|
class desktop(aetools.NProperty):
|
||||||
|
"""desktop - the desktop """
|
||||||
|
which = 'desk'
|
||||||
|
want = 'cdsk'
|
||||||
|
class file_sharing(aetools.NProperty):
|
||||||
|
"""file sharing - Is file sharing on? """
|
||||||
|
which = 'fshr'
|
||||||
|
want = 'bool'
|
||||||
|
class frontmost(aetools.NProperty):
|
||||||
|
"""frontmost - Is the Finder the frontmost process? """
|
||||||
|
which = 'pisf'
|
||||||
|
want = 'bool'
|
||||||
|
class insertion_location(aetools.NProperty):
|
||||||
|
"""insertion location - the container in which a new folder would appear if \xd2New Folder\xd3 was selected """
|
||||||
|
which = 'pins'
|
||||||
|
want = 'obj '
|
||||||
class largest_free_block(aetools.NProperty):
|
class largest_free_block(aetools.NProperty):
|
||||||
"""largest free block - the largest free block of process memory available to launch an application """
|
"""largest free block - the largest free block of process memory available to launch an application """
|
||||||
which = 'mfre'
|
which = 'mfre'
|
||||||
|
@ -47,50 +67,30 @@ class name(aetools.NProperty):
|
||||||
"""name - the Finder\xd5s name """
|
"""name - the Finder\xd5s name """
|
||||||
which = 'pnam'
|
which = 'pnam'
|
||||||
want = 'itxt'
|
want = 'itxt'
|
||||||
class visible(aetools.NProperty):
|
|
||||||
"""visible - Is the Finder\xd5s layer visible? """
|
|
||||||
which = 'pvis'
|
|
||||||
want = 'bool'
|
|
||||||
class frontmost(aetools.NProperty):
|
|
||||||
"""frontmost - Is the Finder the frontmost process? """
|
|
||||||
which = 'pisf'
|
|
||||||
want = 'bool'
|
|
||||||
class selection(aetools.NProperty):
|
|
||||||
"""selection - the selection visible to the user """
|
|
||||||
which = 'sele'
|
|
||||||
want = 'obj '
|
|
||||||
class insertion_location(aetools.NProperty):
|
|
||||||
"""insertion location - the container in which a new folder would appear if \xd2New Folder\xd3 was selected """
|
|
||||||
which = 'pins'
|
|
||||||
want = 'obj '
|
|
||||||
class file_sharing(aetools.NProperty):
|
|
||||||
"""file sharing - Is file sharing on? """
|
|
||||||
which = 'fshr'
|
|
||||||
want = 'bool'
|
|
||||||
class sharing_starting_up(aetools.NProperty):
|
|
||||||
"""sharing starting up - Is file sharing in the process of starting up? """
|
|
||||||
which = 'fsup'
|
|
||||||
want = 'bool'
|
|
||||||
class product_version(aetools.NProperty):
|
class product_version(aetools.NProperty):
|
||||||
"""product version - the version of the System software running on this computer """
|
"""product version - the version of the System software running on this computer """
|
||||||
which = 'ver2'
|
which = 'ver2'
|
||||||
want = 'itxt'
|
want = 'itxt'
|
||||||
|
class properties(aetools.NProperty):
|
||||||
|
"""properties - property that allows getting and setting of multiple properties """
|
||||||
|
which = 'qpro'
|
||||||
|
want = 'reco'
|
||||||
|
class selection(aetools.NProperty):
|
||||||
|
"""selection - the selection visible to the user """
|
||||||
|
which = 'sele'
|
||||||
|
want = 'obj '
|
||||||
|
class sharing_starting_up(aetools.NProperty):
|
||||||
|
"""sharing starting up - Is file sharing in the process of starting up? """
|
||||||
|
which = 'fsup'
|
||||||
|
want = 'bool'
|
||||||
class version(aetools.NProperty):
|
class version(aetools.NProperty):
|
||||||
"""version - the version of the Finder """
|
"""version - the version of the Finder """
|
||||||
which = 'vers'
|
which = 'vers'
|
||||||
want = 'itxt'
|
want = 'itxt'
|
||||||
class about_this_computer(aetools.NProperty):
|
class visible(aetools.NProperty):
|
||||||
"""about this computer - the \xd2About this Computer\xd3 dialog and the list of running processes displayed in it """
|
"""visible - Is the Finder\xd5s layer visible? """
|
||||||
which = 'abbx'
|
which = 'pvis'
|
||||||
want = 'obj '
|
want = 'bool'
|
||||||
class desktop(aetools.NProperty):
|
|
||||||
"""desktop - the desktop """
|
|
||||||
which = 'desk'
|
|
||||||
want = 'cdsk'
|
|
||||||
class Finder_preferences(aetools.NProperty):
|
|
||||||
"""Finder preferences - Various preferences that apply to the Finder as a whole """
|
|
||||||
which = 'pfrp'
|
|
||||||
want = 'obj '
|
|
||||||
|
|
||||||
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 """
|
||||||
|
@ -107,54 +107,42 @@ class partition_size(aetools.NProperty):
|
||||||
"""partition size - the memory size with which the application will be launched """
|
"""partition size - the memory size with which the application will be launched """
|
||||||
which = 'appt'
|
which = 'appt'
|
||||||
want = 'long'
|
want = 'long'
|
||||||
class suggested_partition_size(aetools.NProperty):
|
|
||||||
"""suggested partition size - the memory size with which the developer recommends the application be launched """
|
|
||||||
which = 'sprt'
|
|
||||||
want = 'long'
|
|
||||||
class scriptable(aetools.NProperty):
|
class scriptable(aetools.NProperty):
|
||||||
"""scriptable - Is the application high-level event aware? """
|
"""scriptable - Is the application high-level event aware? """
|
||||||
which = 'isab'
|
which = 'isab'
|
||||||
want = 'bool'
|
want = 'bool'
|
||||||
|
class suggested_partition_size(aetools.NProperty):
|
||||||
|
"""suggested partition size - the memory size with which the developer recommends the application be launched """
|
||||||
|
which = 'sprt'
|
||||||
|
want = 'long'
|
||||||
|
|
||||||
class container_window(aetools.ComponentItem):
|
class container_window(aetools.ComponentItem):
|
||||||
"""container window - A window that contains items """
|
"""container window - A window that contains items """
|
||||||
want = 'cwnd'
|
want = 'cwnd'
|
||||||
|
class button_view_arrangement(aetools.NProperty):
|
||||||
|
"""button view arrangement - the property by which to keep icons arranged within a button view window """
|
||||||
|
which = 'barr'
|
||||||
|
want = 'earr'
|
||||||
|
class calculate_folder_sizes(aetools.NProperty):
|
||||||
|
"""calculate folder sizes - Are folder sizes calculated and displayed in the window? (does not apply to suitcase windows) """
|
||||||
|
which = 'sfsz'
|
||||||
|
want = 'bool'
|
||||||
class container(aetools.NProperty):
|
class container(aetools.NProperty):
|
||||||
"""container - the container from which the window was opened """
|
"""container - the container from which the window was opened """
|
||||||
which = 'ctnr'
|
which = 'ctnr'
|
||||||
want = 'obj '
|
want = 'obj '
|
||||||
class item(aetools.NProperty):
|
|
||||||
"""item - the item from which the window was opened (always returns something) """
|
|
||||||
which = 'cobj'
|
|
||||||
want = 'obj '
|
|
||||||
class has_custom_view_settings(aetools.NProperty):
|
class has_custom_view_settings(aetools.NProperty):
|
||||||
"""has custom view settings - Does the folder have custom view settings or is it using the default global settings? """
|
"""has custom view settings - Does the folder have custom view settings or is it using the default global settings? """
|
||||||
which = 'cuss'
|
which = 'cuss'
|
||||||
want = 'long'
|
want = 'long'
|
||||||
class view(aetools.NProperty):
|
class item(aetools.NProperty):
|
||||||
"""view - the current view for the window (icon, name, date, etc.) """
|
"""item - the item from which the window was opened (always returns something) """
|
||||||
which = 'pvew'
|
which = 'cobj'
|
||||||
want = 'long'
|
want = 'obj '
|
||||||
class previous_list_view(aetools.NProperty):
|
class previous_list_view(aetools.NProperty):
|
||||||
"""previous list view - the last non-icon view (by name, by date, etc.) selected for the container (forgotten as soon as the window is closed and only available when the window is open) """
|
"""previous list view - the last non-icon view (by name, by date, etc.) selected for the container (forgotten as soon as the window is closed and only available when the window is open) """
|
||||||
which = 'svew'
|
which = 'svew'
|
||||||
want = 'enum'
|
want = 'enum'
|
||||||
class button_view_arrangement(aetools.NProperty):
|
|
||||||
"""button view arrangement - the property by which to keep icons arranged within a button view window """
|
|
||||||
which = 'barr'
|
|
||||||
want = 'earr'
|
|
||||||
class spatial_view_arrangement(aetools.NProperty):
|
|
||||||
"""spatial view arrangement - the property by which to keep icons arranged within a spatial view window """
|
|
||||||
which = 'iarr'
|
|
||||||
want = 'earr'
|
|
||||||
class sort_direction(aetools.NProperty):
|
|
||||||
"""sort direction - The direction in which the window is sorted """
|
|
||||||
which = 'sord'
|
|
||||||
want = 'sodr'
|
|
||||||
class calculate_folder_sizes(aetools.NProperty):
|
|
||||||
"""calculate folder sizes - Are folder sizes calculated and displayed in the window? (does not apply to suitcase windows) """
|
|
||||||
which = 'sfsz'
|
|
||||||
want = 'bool'
|
|
||||||
class show_comments(aetools.NProperty):
|
class show_comments(aetools.NProperty):
|
||||||
"""show comments - Are comments displayed in the window? (does not apply to suitcases) """
|
"""show comments - Are comments displayed in the window? (does not apply to suitcases) """
|
||||||
which = 'scom'
|
which = 'scom'
|
||||||
|
@ -183,10 +171,22 @@ class show_version(aetools.NProperty):
|
||||||
"""show version - Are file versions displayed in the window? (does not apply to suitcase windows) """
|
"""show version - Are file versions displayed in the window? (does not apply to suitcase windows) """
|
||||||
which = 'svrs'
|
which = 'svrs'
|
||||||
want = 'bool'
|
want = 'bool'
|
||||||
|
class sort_direction(aetools.NProperty):
|
||||||
|
"""sort direction - The direction in which the window is sorted """
|
||||||
|
which = 'sord'
|
||||||
|
want = 'sodr'
|
||||||
|
class spatial_view_arrangement(aetools.NProperty):
|
||||||
|
"""spatial view arrangement - the property by which to keep icons arranged within a spatial view window """
|
||||||
|
which = 'iarr'
|
||||||
|
want = 'earr'
|
||||||
class use_relative_dates(aetools.NProperty):
|
class use_relative_dates(aetools.NProperty):
|
||||||
"""use relative dates - Are relative dates (e.g., today, yesterday) shown in the window? """
|
"""use relative dates - Are relative dates (e.g., today, yesterday) shown in the window? """
|
||||||
which = 'urdt'
|
which = 'urdt'
|
||||||
want = 'bool'
|
want = 'bool'
|
||||||
|
class view(aetools.NProperty):
|
||||||
|
"""view - the current view for the window (icon, name, date, etc.) """
|
||||||
|
which = 'pvew'
|
||||||
|
want = 'long'
|
||||||
|
|
||||||
class information_window(aetools.ComponentItem):
|
class information_window(aetools.ComponentItem):
|
||||||
"""information window - An information window (opened by \xd2Get Info\xd3) """
|
"""information window - An information window (opened by \xd2Get Info\xd3) """
|
||||||
|
@ -195,22 +195,10 @@ class comment(aetools.NProperty):
|
||||||
"""comment - the comment """
|
"""comment - the comment """
|
||||||
which = 'comt'
|
which = 'comt'
|
||||||
want = 'itxt'
|
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'
|
|
||||||
class creation_date(aetools.NProperty):
|
class creation_date(aetools.NProperty):
|
||||||
"""creation date - the date on which the item was created """
|
"""creation date - the date on which the item was created """
|
||||||
which = 'ascd'
|
which = 'ascd'
|
||||||
want = 'ldt '
|
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):
|
class icon(aetools.NProperty):
|
||||||
"""icon - the icon bitmap of the item """
|
"""icon - the icon bitmap of the item """
|
||||||
which = 'iimg'
|
which = 'iimg'
|
||||||
|
@ -219,6 +207,18 @@ class locked(aetools.NProperty):
|
||||||
"""locked - Is the item locked (applies only to file and application information windows)? """
|
"""locked - Is the item locked (applies only to file and application information windows)? """
|
||||||
which = 'aslk'
|
which = 'aslk'
|
||||||
want = 'bool'
|
want = 'bool'
|
||||||
|
class modification_date(aetools.NProperty):
|
||||||
|
"""modification date - the date on which the item was last modified """
|
||||||
|
which = 'asmo'
|
||||||
|
want = 'ldt '
|
||||||
|
class physical_size(aetools.NProperty):
|
||||||
|
"""physical size - the actual space used by the item on disk """
|
||||||
|
which = 'phys'
|
||||||
|
want = 'long'
|
||||||
|
class size(aetools.NProperty):
|
||||||
|
"""size - the logical size of the item """
|
||||||
|
which = 'ptsz'
|
||||||
|
want = 'long'
|
||||||
class stationery(aetools.NProperty):
|
class stationery(aetools.NProperty):
|
||||||
"""stationery - Is the item a stationery pad? """
|
"""stationery - Is the item a stationery pad? """
|
||||||
which = 'pspd'
|
which = 'pspd'
|
||||||
|
@ -237,14 +237,18 @@ internet_locations = internet_location
|
||||||
class item(aetools.ComponentItem):
|
class item(aetools.ComponentItem):
|
||||||
"""item - An item """
|
"""item - An item """
|
||||||
want = 'cobj'
|
want = 'cobj'
|
||||||
class index(aetools.NProperty):
|
class bounds(aetools.NProperty):
|
||||||
"""index - the index in the front-to-back ordering within its container """
|
"""bounds - the bounding rectangle of the item (can only be set for an item in a window viewed as icons or buttons) """
|
||||||
which = 'pidx'
|
which = 'pbnd'
|
||||||
want = 'long'
|
want = 'qdrt'
|
||||||
class id(aetools.NProperty):
|
class content_space(aetools.NProperty):
|
||||||
"""id - an id that identifies the item """
|
"""content space - the window that would open if the item was opened """
|
||||||
which = 'ID '
|
which = 'dwnd'
|
||||||
want = 'long'
|
want = 'obj '
|
||||||
|
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'
|
||||||
|
@ -253,42 +257,38 @@ 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 id(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) """
|
"""id - an id that identifies the item """
|
||||||
which = 'posn'
|
which = 'ID '
|
||||||
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'
|
|
||||||
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'
|
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):
|
|
||||||
"""content space - the window that would open if the item was opened """
|
|
||||||
which = 'dwnd'
|
|
||||||
want = 'obj '
|
|
||||||
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 '
|
|
||||||
|
|
||||||
class preferences(aetools.ComponentItem):
|
class preferences(aetools.ComponentItem):
|
||||||
"""preferences - The Finder Preferences """
|
"""preferences - The Finder Preferences """
|
||||||
|
@ -313,6 +313,10 @@ class use_wide_grid(aetools.NProperty):
|
||||||
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 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'
|
||||||
|
@ -321,34 +325,26 @@ 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):
|
|
||||||
"""creator type - the OSType of the creator of the process (the signature) """
|
|
||||||
which = 'fcrt'
|
|
||||||
want = 'type'
|
|
||||||
class remote_events(aetools.NProperty):
|
|
||||||
"""remote events - Does the process accept remote events? """
|
|
||||||
which = 'revt'
|
|
||||||
want = 'bool'
|
|
||||||
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 remote_events(aetools.NProperty):
|
||||||
|
"""remote events - Does the process accept remote events? """
|
||||||
|
which = 'revt'
|
||||||
|
want = 'bool'
|
||||||
|
|
||||||
class sharable_container(aetools.ComponentItem):
|
class sharable_container(aetools.ComponentItem):
|
||||||
"""sharable container - A container that may be shared (disks and folders) """
|
"""sharable container - A container that may be shared (disks and folders) """
|
||||||
want = 'sctr'
|
want = 'sctr'
|
||||||
class owner(aetools.NProperty):
|
class exported(aetools.NProperty):
|
||||||
"""owner - the user that owns the container (file sharing must be on to use this property) """
|
"""exported - Is the container a share point or inside a share point, i.e., can the container be shared? (file sharing must be on to use this property) """
|
||||||
which = 'sown'
|
which = 'sexp'
|
||||||
want = 'itxt'
|
want = 'bool'
|
||||||
class group(aetools.NProperty):
|
class group(aetools.NProperty):
|
||||||
"""group - the user or group that has special access to the container (file sharing must be on to use this property) """
|
"""group - the user or group that has special access to the container (file sharing must be on to use this property) """
|
||||||
which = 'sgrp'
|
which = 'sgrp'
|
||||||
want = 'itxt'
|
want = 'itxt'
|
||||||
class owner_privileges(aetools.NProperty):
|
|
||||||
"""owner privileges - the see folders/see files/make changes privileges for the owner (file sharing must be on to use this property) """
|
|
||||||
which = 'ownr'
|
|
||||||
want = 'priv'
|
|
||||||
class group_privileges(aetools.NProperty):
|
class group_privileges(aetools.NProperty):
|
||||||
"""group privileges - the see folders/see files/make changes privileges for the group (file sharing must be on to use this property) """
|
"""group privileges - the see folders/see files/make changes privileges for the group (file sharing must be on to use this property) """
|
||||||
which = 'gppr'
|
which = 'gppr'
|
||||||
|
@ -365,18 +361,22 @@ class mounted(aetools.NProperty):
|
||||||
"""mounted - Is the container mounted on another machine's desktop? (file sharing must be on to use this property) """
|
"""mounted - Is the container mounted on another machine's desktop? (file sharing must be on to use this property) """
|
||||||
which = 'smou'
|
which = 'smou'
|
||||||
want = 'bool'
|
want = 'bool'
|
||||||
class exported(aetools.NProperty):
|
class owner(aetools.NProperty):
|
||||||
"""exported - Is the container a share point or inside a share point, i.e., can the container be shared? (file sharing must be on to use this property) """
|
"""owner - the user that owns the container (file sharing must be on to use this property) """
|
||||||
which = 'sexp'
|
which = 'sown'
|
||||||
|
want = 'itxt'
|
||||||
|
class owner_privileges(aetools.NProperty):
|
||||||
|
"""owner privileges - the see folders/see files/make changes privileges for the owner (file sharing must be on to use this property) """
|
||||||
|
which = 'ownr'
|
||||||
|
want = 'priv'
|
||||||
|
class protected(aetools.NProperty):
|
||||||
|
"""protected - Is the container protected from being moved, renamed and deleted? (file sharing must be on to use this property) """
|
||||||
|
which = 'spro'
|
||||||
want = 'bool'
|
want = 'bool'
|
||||||
class shared(aetools.NProperty):
|
class shared(aetools.NProperty):
|
||||||
"""shared - Is the container a share point, i.e., is the container currently being shared? (file sharing must be on to use this property) """
|
"""shared - Is the container a share point, i.e., is the container currently being shared? (file sharing must be on to use this property) """
|
||||||
which = 'shar'
|
which = 'shar'
|
||||||
want = 'bool'
|
want = 'bool'
|
||||||
class protected(aetools.NProperty):
|
|
||||||
"""protected - Is the container protected from being moved, renamed and deleted? (file sharing must be on to use this property) """
|
|
||||||
which = 'spro'
|
|
||||||
want = 'bool'
|
|
||||||
|
|
||||||
class trash_2d_object(aetools.ComponentItem):
|
class trash_2d_object(aetools.ComponentItem):
|
||||||
"""trash-object - Trash-object is the class of the \xd2trash\xd3 object """
|
"""trash-object - Trash-object is the class of the \xd2trash\xd3 object """
|
||||||
|
@ -385,14 +385,14 @@ class trash_2d_object(aetools.ComponentItem):
|
||||||
class window(aetools.ComponentItem):
|
class window(aetools.ComponentItem):
|
||||||
"""window - A window """
|
"""window - A window """
|
||||||
want = 'cwin'
|
want = 'cwin'
|
||||||
class titled(aetools.NProperty):
|
|
||||||
"""titled - Does the window have a title bar? """
|
|
||||||
which = 'ptit'
|
|
||||||
want = 'bool'
|
|
||||||
class closeable(aetools.NProperty):
|
class closeable(aetools.NProperty):
|
||||||
"""closeable - Does the window have a close box? """
|
"""closeable - Does the window have a close box? """
|
||||||
which = 'hclb'
|
which = 'hclb'
|
||||||
want = 'bool'
|
want = 'bool'
|
||||||
|
class collapsed(aetools.NProperty):
|
||||||
|
"""collapsed - Is the window collapsed (only applies to open non-pop-up windows)? """
|
||||||
|
which = 'wshd'
|
||||||
|
want = 'bool'
|
||||||
class floating(aetools.NProperty):
|
class floating(aetools.NProperty):
|
||||||
"""floating - Does the window have a title bar? """
|
"""floating - Does the window have a title bar? """
|
||||||
which = 'isfl'
|
which = 'isfl'
|
||||||
|
@ -401,10 +401,22 @@ class modal(aetools.NProperty):
|
||||||
"""modal - Is the window modal? """
|
"""modal - Is the window modal? """
|
||||||
which = 'pmod'
|
which = 'pmod'
|
||||||
want = 'bool'
|
want = 'bool'
|
||||||
|
class popup(aetools.NProperty):
|
||||||
|
"""popup - Is the window is a pop-up window? (only applies to open container windows in the Finder and can only be set when the Finder is the front application) """
|
||||||
|
which = 'drwr'
|
||||||
|
want = 'bool'
|
||||||
|
class pulled_open(aetools.NProperty):
|
||||||
|
"""pulled open - Is the window pulled open (only applies to pop-up windows and can only be set when the Finder is the front application)? """
|
||||||
|
which = 'pull'
|
||||||
|
want = 'bool'
|
||||||
class resizable(aetools.NProperty):
|
class resizable(aetools.NProperty):
|
||||||
"""resizable - Is the window resizable? """
|
"""resizable - Is the window resizable? """
|
||||||
which = 'prsz'
|
which = 'prsz'
|
||||||
want = 'bool'
|
want = 'bool'
|
||||||
|
class titled(aetools.NProperty):
|
||||||
|
"""titled - Does the window have a title bar? """
|
||||||
|
which = 'ptit'
|
||||||
|
want = 'bool'
|
||||||
class zoomable(aetools.NProperty):
|
class zoomable(aetools.NProperty):
|
||||||
"""zoomable - Is the window zoomable? """
|
"""zoomable - Is the window zoomable? """
|
||||||
which = 'iszm'
|
which = 'iszm'
|
||||||
|
@ -417,18 +429,6 @@ class zoomed_full_size(aetools.NProperty):
|
||||||
"""zoomed full size - Is the window zoomed to the full size of the screen? (can only be set, not read, and only applies to open non-pop-up windows) """
|
"""zoomed full size - Is the window zoomed to the full size of the screen? (can only be set, not read, and only applies to open non-pop-up windows) """
|
||||||
which = 'zumf'
|
which = 'zumf'
|
||||||
want = 'bool'
|
want = 'bool'
|
||||||
class popup(aetools.NProperty):
|
|
||||||
"""popup - Is the window is a pop-up window? (only applies to open container windows in the Finder and can only be set when the Finder is the front application) """
|
|
||||||
which = 'drwr'
|
|
||||||
want = 'bool'
|
|
||||||
class pulled_open(aetools.NProperty):
|
|
||||||
"""pulled open - Is the window pulled open (only applies to pop-up windows and can only be set when the Finder is the front application)? """
|
|
||||||
which = 'pull'
|
|
||||||
want = 'bool'
|
|
||||||
class collapsed(aetools.NProperty):
|
|
||||||
"""collapsed - Is the window collapsed (only applies to open non-pop-up windows)? """
|
|
||||||
which = 'wshd'
|
|
||||||
want = 'bool'
|
|
||||||
accessory_process._superclassnames = []
|
accessory_process._superclassnames = []
|
||||||
accessory_process._privpropdict = {
|
accessory_process._privpropdict = {
|
||||||
}
|
}
|
||||||
|
@ -441,21 +441,21 @@ accessory_suitcase._privelemdict = {
|
||||||
}
|
}
|
||||||
application._superclassnames = []
|
application._superclassnames = []
|
||||||
application._privpropdict = {
|
application._privpropdict = {
|
||||||
'properties' : properties,
|
'Finder_preferences' : Finder_preferences,
|
||||||
|
'about_this_computer' : about_this_computer,
|
||||||
'clipboard' : clipboard,
|
'clipboard' : clipboard,
|
||||||
|
'desktop' : desktop,
|
||||||
|
'file_sharing' : file_sharing,
|
||||||
|
'frontmost' : frontmost,
|
||||||
|
'insertion_location' : insertion_location,
|
||||||
'largest_free_block' : largest_free_block,
|
'largest_free_block' : largest_free_block,
|
||||||
'name' : name,
|
'name' : name,
|
||||||
'visible' : visible,
|
|
||||||
'frontmost' : frontmost,
|
|
||||||
'selection' : selection,
|
|
||||||
'insertion_location' : insertion_location,
|
|
||||||
'file_sharing' : file_sharing,
|
|
||||||
'sharing_starting_up' : sharing_starting_up,
|
|
||||||
'product_version' : product_version,
|
'product_version' : product_version,
|
||||||
|
'properties' : properties,
|
||||||
|
'selection' : selection,
|
||||||
|
'sharing_starting_up' : sharing_starting_up,
|
||||||
'version' : version,
|
'version' : version,
|
||||||
'about_this_computer' : about_this_computer,
|
'visible' : visible,
|
||||||
'desktop' : desktop,
|
|
||||||
'Finder_preferences' : Finder_preferences,
|
|
||||||
}
|
}
|
||||||
application._privelemdict = {
|
application._privelemdict = {
|
||||||
}
|
}
|
||||||
|
@ -465,23 +465,20 @@ application_file._privpropdict = {
|
||||||
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_,
|
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_,
|
||||||
'minimum_partition_size' : minimum_partition_size,
|
'minimum_partition_size' : minimum_partition_size,
|
||||||
'partition_size' : partition_size,
|
'partition_size' : partition_size,
|
||||||
'suggested_partition_size' : suggested_partition_size,
|
|
||||||
'scriptable' : scriptable,
|
'scriptable' : scriptable,
|
||||||
|
'suggested_partition_size' : suggested_partition_size,
|
||||||
}
|
}
|
||||||
application_file._privelemdict = {
|
application_file._privelemdict = {
|
||||||
}
|
}
|
||||||
container_window._superclassnames = ['window']
|
container_window._superclassnames = ['window']
|
||||||
container_window._privpropdict = {
|
container_window._privpropdict = {
|
||||||
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_,
|
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_,
|
||||||
'container' : container,
|
|
||||||
'item' : item,
|
|
||||||
'has_custom_view_settings' : has_custom_view_settings,
|
|
||||||
'view' : view,
|
|
||||||
'previous_list_view' : previous_list_view,
|
|
||||||
'button_view_arrangement' : button_view_arrangement,
|
'button_view_arrangement' : button_view_arrangement,
|
||||||
'spatial_view_arrangement' : spatial_view_arrangement,
|
|
||||||
'sort_direction' : sort_direction,
|
|
||||||
'calculate_folder_sizes' : calculate_folder_sizes,
|
'calculate_folder_sizes' : calculate_folder_sizes,
|
||||||
|
'container' : container,
|
||||||
|
'has_custom_view_settings' : has_custom_view_settings,
|
||||||
|
'item' : item,
|
||||||
|
'previous_list_view' : previous_list_view,
|
||||||
'show_comments' : show_comments,
|
'show_comments' : show_comments,
|
||||||
'show_creation_date' : show_creation_date,
|
'show_creation_date' : show_creation_date,
|
||||||
'show_kind' : show_kind,
|
'show_kind' : show_kind,
|
||||||
|
@ -489,28 +486,31 @@ container_window._privpropdict = {
|
||||||
'show_modification_date' : show_modification_date,
|
'show_modification_date' : show_modification_date,
|
||||||
'show_size' : show_size,
|
'show_size' : show_size,
|
||||||
'show_version' : show_version,
|
'show_version' : show_version,
|
||||||
|
'sort_direction' : sort_direction,
|
||||||
|
'spatial_view_arrangement' : spatial_view_arrangement,
|
||||||
'use_relative_dates' : use_relative_dates,
|
'use_relative_dates' : use_relative_dates,
|
||||||
|
'view' : view,
|
||||||
}
|
}
|
||||||
container_window._privelemdict = {
|
container_window._privelemdict = {
|
||||||
}
|
}
|
||||||
information_window._superclassnames = ['window']
|
information_window._superclassnames = ['window']
|
||||||
information_window._privpropdict = {
|
information_window._privpropdict = {
|
||||||
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_,
|
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_,
|
||||||
'item' : item,
|
|
||||||
'comment' : comment,
|
'comment' : comment,
|
||||||
'size' : size,
|
|
||||||
'physical_size' : physical_size,
|
|
||||||
'creation_date' : creation_date,
|
'creation_date' : creation_date,
|
||||||
'modification_date' : modification_date,
|
|
||||||
'suggested_partition_size' : suggested_partition_size,
|
|
||||||
'minimum_partition_size' : minimum_partition_size,
|
|
||||||
'partition_size' : partition_size,
|
|
||||||
'icon' : icon,
|
'icon' : icon,
|
||||||
|
'item' : item,
|
||||||
'locked' : locked,
|
'locked' : locked,
|
||||||
'stationery' : stationery,
|
'minimum_partition_size' : minimum_partition_size,
|
||||||
'warn_before_emptying' : warn_before_emptying,
|
'modification_date' : modification_date,
|
||||||
|
'partition_size' : partition_size,
|
||||||
|
'physical_size' : physical_size,
|
||||||
'product_version' : product_version,
|
'product_version' : product_version,
|
||||||
|
'size' : size,
|
||||||
|
'stationery' : stationery,
|
||||||
|
'suggested_partition_size' : suggested_partition_size,
|
||||||
'version' : version,
|
'version' : version,
|
||||||
|
'warn_before_emptying' : warn_before_emptying,
|
||||||
}
|
}
|
||||||
information_window._privelemdict = {
|
information_window._privelemdict = {
|
||||||
}
|
}
|
||||||
|
@ -521,34 +521,33 @@ internet_location._privelemdict = {
|
||||||
}
|
}
|
||||||
item._superclassnames = []
|
item._superclassnames = []
|
||||||
item._privpropdict = {
|
item._privpropdict = {
|
||||||
'properties' : properties,
|
'bounds' : bounds,
|
||||||
'name' : name,
|
'comment' : comment,
|
||||||
'index' : index,
|
|
||||||
'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,
|
|
||||||
'bounds' : bounds,
|
|
||||||
'label_index' : label_index,
|
|
||||||
'kind' : kind,
|
|
||||||
'description' : description,
|
|
||||||
'comment' : comment,
|
|
||||||
'size' : size,
|
|
||||||
'physical_size' : physical_size,
|
|
||||||
'creation_date' : creation_date,
|
|
||||||
'modification_date' : modification_date,
|
|
||||||
'icon' : icon,
|
'icon' : icon,
|
||||||
'selected' : selected,
|
'id' : id,
|
||||||
'content_space' : content_space,
|
'index' : index,
|
||||||
'window' : window,
|
|
||||||
'information_window' : information_window,
|
'information_window' : information_window,
|
||||||
|
'kind' : kind,
|
||||||
|
'label_index' : label_index,
|
||||||
|
'modification_date' : modification_date,
|
||||||
|
'name' : name,
|
||||||
|
'physical_size' : physical_size,
|
||||||
|
'position' : position,
|
||||||
|
'properties' : properties,
|
||||||
|
'selected' : selected,
|
||||||
|
'size' : size,
|
||||||
|
'window' : window,
|
||||||
}
|
}
|
||||||
item._privelemdict = {
|
item._privelemdict = {
|
||||||
}
|
}
|
||||||
preferences._superclassnames = []
|
preferences._superclassnames = []
|
||||||
preferences._privpropdict = {
|
preferences._privpropdict = {
|
||||||
'window' : window,
|
|
||||||
'calculate_folder_sizes' : calculate_folder_sizes,
|
'calculate_folder_sizes' : calculate_folder_sizes,
|
||||||
'delay_before_springing' : delay_before_springing,
|
'delay_before_springing' : delay_before_springing,
|
||||||
'show_comments' : show_comments,
|
'show_comments' : show_comments,
|
||||||
|
@ -562,22 +561,23 @@ preferences._privpropdict = {
|
||||||
'use_relative_dates' : use_relative_dates,
|
'use_relative_dates' : use_relative_dates,
|
||||||
'use_simple_menus' : use_simple_menus,
|
'use_simple_menus' : use_simple_menus,
|
||||||
'use_wide_grid' : use_wide_grid,
|
'use_wide_grid' : use_wide_grid,
|
||||||
|
'window' : window,
|
||||||
}
|
}
|
||||||
preferences._privelemdict = {
|
preferences._privelemdict = {
|
||||||
}
|
}
|
||||||
process._superclassnames = []
|
process._superclassnames = []
|
||||||
process._privpropdict = {
|
process._privpropdict = {
|
||||||
'properties' : properties,
|
'creator_type' : creator_type,
|
||||||
'name' : name,
|
|
||||||
'visible' : visible,
|
|
||||||
'frontmost' : frontmost,
|
|
||||||
'file' : file,
|
'file' : file,
|
||||||
'file_type' : file_type,
|
'file_type' : file_type,
|
||||||
'creator_type' : creator_type,
|
'frontmost' : frontmost,
|
||||||
'scriptable' : scriptable,
|
'name' : name,
|
||||||
'remote_events' : remote_events,
|
|
||||||
'partition_size' : partition_size,
|
'partition_size' : partition_size,
|
||||||
'partition_space_used' : partition_space_used,
|
'partition_space_used' : partition_space_used,
|
||||||
|
'properties' : properties,
|
||||||
|
'remote_events' : remote_events,
|
||||||
|
'scriptable' : scriptable,
|
||||||
|
'visible' : visible,
|
||||||
}
|
}
|
||||||
process._privelemdict = {
|
process._privelemdict = {
|
||||||
}
|
}
|
||||||
|
@ -585,16 +585,16 @@ import Containers_and_folders
|
||||||
sharable_container._superclassnames = ['container']
|
sharable_container._superclassnames = ['container']
|
||||||
sharable_container._privpropdict = {
|
sharable_container._privpropdict = {
|
||||||
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_,
|
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_,
|
||||||
'owner' : owner,
|
'exported' : exported,
|
||||||
'group' : group,
|
'group' : group,
|
||||||
'owner_privileges' : owner_privileges,
|
|
||||||
'group_privileges' : group_privileges,
|
'group_privileges' : group_privileges,
|
||||||
'guest_privileges' : guest_privileges,
|
'guest_privileges' : guest_privileges,
|
||||||
'inherited_privileges' : inherited_privileges,
|
'inherited_privileges' : inherited_privileges,
|
||||||
'mounted' : mounted,
|
'mounted' : mounted,
|
||||||
'exported' : exported,
|
'owner' : owner,
|
||||||
'shared' : shared,
|
'owner_privileges' : owner_privileges,
|
||||||
'protected' : protected,
|
'protected' : protected,
|
||||||
|
'shared' : shared,
|
||||||
}
|
}
|
||||||
sharable_container._privelemdict = {
|
sharable_container._privelemdict = {
|
||||||
}
|
}
|
||||||
|
@ -607,23 +607,23 @@ trash_2d_object._privelemdict = {
|
||||||
}
|
}
|
||||||
window._superclassnames = []
|
window._superclassnames = []
|
||||||
window._privpropdict = {
|
window._privpropdict = {
|
||||||
'properties' : properties,
|
|
||||||
'position' : position,
|
|
||||||
'bounds' : bounds,
|
'bounds' : bounds,
|
||||||
'titled' : titled,
|
|
||||||
'name' : name,
|
|
||||||
'index' : index,
|
|
||||||
'closeable' : closeable,
|
'closeable' : closeable,
|
||||||
|
'collapsed' : collapsed,
|
||||||
'floating' : floating,
|
'floating' : floating,
|
||||||
|
'index' : index,
|
||||||
'modal' : modal,
|
'modal' : modal,
|
||||||
|
'name' : name,
|
||||||
|
'popup' : popup,
|
||||||
|
'position' : position,
|
||||||
|
'properties' : properties,
|
||||||
|
'pulled_open' : pulled_open,
|
||||||
'resizable' : resizable,
|
'resizable' : resizable,
|
||||||
|
'titled' : titled,
|
||||||
|
'visible' : visible,
|
||||||
'zoomable' : zoomable,
|
'zoomable' : zoomable,
|
||||||
'zoomed' : zoomed,
|
'zoomed' : zoomed,
|
||||||
'zoomed_full_size' : zoomed_full_size,
|
'zoomed_full_size' : zoomed_full_size,
|
||||||
'visible' : visible,
|
|
||||||
'popup' : popup,
|
|
||||||
'pulled_open' : pulled_open,
|
|
||||||
'collapsed' : collapsed,
|
|
||||||
}
|
}
|
||||||
window._privelemdict = {
|
window._privelemdict = {
|
||||||
}
|
}
|
||||||
|
@ -632,111 +632,111 @@ window._privelemdict = {
|
||||||
# Indices of types declared in this module
|
# Indices of types declared in this module
|
||||||
#
|
#
|
||||||
_classdeclarations = {
|
_classdeclarations = {
|
||||||
'ctrs' : trash_2d_object,
|
|
||||||
'dsut' : accessory_suitcase,
|
|
||||||
'cprf' : preferences,
|
|
||||||
'capp' : application,
|
|
||||||
'sctr' : sharable_container,
|
|
||||||
'pcda' : accessory_process,
|
|
||||||
'cwin' : window,
|
|
||||||
'iwnd' : information_window,
|
|
||||||
'prcs' : process,
|
|
||||||
'appf' : application_file,
|
'appf' : application_file,
|
||||||
'inlf' : internet_location,
|
'capp' : application,
|
||||||
'cwnd' : container_window,
|
|
||||||
'cobj' : item,
|
'cobj' : item,
|
||||||
|
'cprf' : preferences,
|
||||||
|
'ctrs' : trash_2d_object,
|
||||||
|
'cwin' : window,
|
||||||
|
'cwnd' : container_window,
|
||||||
|
'dsut' : accessory_suitcase,
|
||||||
|
'inlf' : internet_location,
|
||||||
|
'iwnd' : information_window,
|
||||||
|
'pcda' : accessory_process,
|
||||||
|
'prcs' : process,
|
||||||
|
'sctr' : sharable_container,
|
||||||
}
|
}
|
||||||
|
|
||||||
_propdeclarations = {
|
_propdeclarations = {
|
||||||
'ver2' : product_version,
|
|
||||||
'pbnd' : bounds,
|
|
||||||
'asdr' : folder,
|
|
||||||
'gppr' : group_privileges,
|
|
||||||
'pidx' : index,
|
|
||||||
'isfl' : floating,
|
|
||||||
'sown' : owner,
|
|
||||||
'fsup' : sharing_starting_up,
|
|
||||||
'urdt' : use_relative_dates,
|
|
||||||
'scom' : show_comments,
|
|
||||||
'appt' : partition_size,
|
|
||||||
'iimg' : icon,
|
|
||||||
'asty' : file_type,
|
|
||||||
'uswg' : use_wide_grid,
|
|
||||||
'ptit' : titled,
|
|
||||||
'dela' : delay_before_springing,
|
|
||||||
'cuss' : has_custom_view_settings,
|
|
||||||
'gstp' : guest_privileges,
|
|
||||||
'isab' : scriptable,
|
|
||||||
'iszm' : zoomable,
|
|
||||||
'sord' : sort_direction,
|
|
||||||
'pins' : insertion_location,
|
|
||||||
'pspd' : stationery,
|
|
||||||
'desk' : desktop,
|
|
||||||
'ascd' : creation_date,
|
|
||||||
'ctnr' : container,
|
|
||||||
'abbx' : about_this_computer,
|
|
||||||
'pull' : pulled_open,
|
|
||||||
'kind' : kind,
|
|
||||||
'ptsz' : size,
|
|
||||||
'hclb' : closeable,
|
|
||||||
'sgrp' : group,
|
|
||||||
'mfre' : largest_free_block,
|
|
||||||
'revt' : remote_events,
|
|
||||||
'drwr' : popup,
|
|
||||||
'iwnd' : information_window,
|
|
||||||
'ownr' : owner_privileges,
|
|
||||||
'pzum' : zoomed,
|
|
||||||
'prsz' : resizable,
|
|
||||||
'barr' : button_view_arrangement,
|
|
||||||
'pfrp' : Finder_preferences,
|
|
||||||
'zumf' : zoomed_full_size,
|
|
||||||
'iprv' : inherited_privileges,
|
|
||||||
'vers' : version,
|
|
||||||
'c@#^' : _3c_Inheritance_3e_,
|
|
||||||
'ID ' : id,
|
'ID ' : id,
|
||||||
'sfsz' : calculate_folder_sizes,
|
'abbx' : about_this_computer,
|
||||||
'file' : file,
|
'appt' : partition_size,
|
||||||
'dwnd' : content_space,
|
'ascd' : creation_date,
|
||||||
'shar' : shared,
|
'asdr' : folder,
|
||||||
'pmod' : modal,
|
'aslk' : locked,
|
||||||
'sele' : selection,
|
|
||||||
'pisf' : frontmost,
|
|
||||||
'sprt' : suggested_partition_size,
|
|
||||||
'spro' : protected,
|
|
||||||
'pcli' : clipboard,
|
|
||||||
'cwin' : window,
|
|
||||||
'mprt' : minimum_partition_size,
|
|
||||||
'sprg' : spring_open_folders,
|
|
||||||
'ssiz' : show_size,
|
|
||||||
'asmo' : modification_date,
|
'asmo' : modification_date,
|
||||||
'svrs' : show_version,
|
'asty' : file_type,
|
||||||
'cobj' : item,
|
'barr' : button_view_arrangement,
|
||||||
'posn' : position,
|
'c@#^' : _3c_Inheritance_3e_,
|
||||||
'iarr' : spatial_view_arrangement,
|
|
||||||
'phys' : physical_size,
|
|
||||||
'sknd' : show_kind,
|
|
||||||
'labi' : label_index,
|
|
||||||
'svew' : previous_list_view,
|
|
||||||
'dscr' : description,
|
|
||||||
'comt' : comment,
|
|
||||||
'sexp' : exported,
|
|
||||||
'usme' : use_simple_menus,
|
|
||||||
'cdis' : disk,
|
'cdis' : disk,
|
||||||
'wshd' : collapsed,
|
'cobj' : item,
|
||||||
'slbl' : show_label,
|
'comt' : comment,
|
||||||
'warn' : warn_before_emptying,
|
'ctnr' : container,
|
||||||
'scda' : show_creation_date,
|
'cuss' : has_custom_view_settings,
|
||||||
'pvis' : visible,
|
'cwin' : window,
|
||||||
'issl' : selected,
|
'dela' : delay_before_springing,
|
||||||
'smou' : mounted,
|
'desk' : desktop,
|
||||||
'sdat' : show_modification_date,
|
'drwr' : popup,
|
||||||
|
'dscr' : description,
|
||||||
|
'dwnd' : content_space,
|
||||||
'fcrt' : creator_type,
|
'fcrt' : creator_type,
|
||||||
|
'file' : file,
|
||||||
|
'fshr' : file_sharing,
|
||||||
|
'fsup' : sharing_starting_up,
|
||||||
|
'gppr' : group_privileges,
|
||||||
|
'gstp' : guest_privileges,
|
||||||
|
'hclb' : closeable,
|
||||||
|
'iarr' : spatial_view_arrangement,
|
||||||
|
'iimg' : icon,
|
||||||
|
'iprv' : inherited_privileges,
|
||||||
|
'isab' : scriptable,
|
||||||
|
'isfl' : floating,
|
||||||
|
'issl' : selected,
|
||||||
|
'iszm' : zoomable,
|
||||||
|
'iwnd' : information_window,
|
||||||
|
'kind' : kind,
|
||||||
|
'labi' : label_index,
|
||||||
|
'mfre' : largest_free_block,
|
||||||
|
'mprt' : minimum_partition_size,
|
||||||
|
'ownr' : owner_privileges,
|
||||||
|
'pbnd' : bounds,
|
||||||
|
'pcli' : clipboard,
|
||||||
|
'pfrp' : Finder_preferences,
|
||||||
|
'phys' : physical_size,
|
||||||
|
'pidx' : index,
|
||||||
|
'pins' : insertion_location,
|
||||||
|
'pisf' : frontmost,
|
||||||
|
'pmod' : modal,
|
||||||
|
'pnam' : name,
|
||||||
|
'posn' : position,
|
||||||
|
'prsz' : resizable,
|
||||||
|
'pspd' : stationery,
|
||||||
|
'ptit' : titled,
|
||||||
|
'ptsz' : size,
|
||||||
|
'pull' : pulled_open,
|
||||||
'pusd' : partition_space_used,
|
'pusd' : partition_space_used,
|
||||||
'pvew' : view,
|
'pvew' : view,
|
||||||
'fshr' : file_sharing,
|
'pvis' : visible,
|
||||||
|
'pzum' : zoomed,
|
||||||
'qpro' : properties,
|
'qpro' : properties,
|
||||||
'aslk' : locked,
|
'revt' : remote_events,
|
||||||
'pnam' : name,
|
'scda' : show_creation_date,
|
||||||
|
'scom' : show_comments,
|
||||||
|
'sdat' : show_modification_date,
|
||||||
|
'sele' : selection,
|
||||||
|
'sexp' : exported,
|
||||||
|
'sfsz' : calculate_folder_sizes,
|
||||||
|
'sgrp' : group,
|
||||||
|
'shar' : shared,
|
||||||
|
'sknd' : show_kind,
|
||||||
|
'slbl' : show_label,
|
||||||
|
'smou' : mounted,
|
||||||
|
'sord' : sort_direction,
|
||||||
|
'sown' : owner,
|
||||||
|
'sprg' : spring_open_folders,
|
||||||
|
'spro' : protected,
|
||||||
|
'sprt' : suggested_partition_size,
|
||||||
|
'ssiz' : show_size,
|
||||||
|
'svew' : previous_list_view,
|
||||||
|
'svrs' : show_version,
|
||||||
|
'urdt' : use_relative_dates,
|
||||||
|
'usme' : use_simple_menus,
|
||||||
|
'uswg' : use_wide_grid,
|
||||||
|
'ver2' : product_version,
|
||||||
|
'vers' : version,
|
||||||
|
'warn' : warn_before_emptying,
|
||||||
|
'wshd' : collapsed,
|
||||||
|
'zumf' : zoomed_full_size,
|
||||||
}
|
}
|
||||||
|
|
||||||
_compdeclarations = {
|
_compdeclarations = {
|
||||||
|
|
|
@ -106,12 +106,12 @@ _compdeclarations = {
|
||||||
}
|
}
|
||||||
|
|
||||||
_enumdeclarations = {
|
_enumdeclarations = {
|
||||||
'ipnl' : _Enum_ipnl,
|
|
||||||
'sodr' : _Enum_sodr,
|
|
||||||
'pple' : _Enum_pple,
|
|
||||||
'ese0' : _Enum_ese0,
|
|
||||||
'vwby' : _Enum_vwby,
|
|
||||||
'isiz' : _Enum_isiz,
|
|
||||||
'earr' : _Enum_earr,
|
'earr' : _Enum_earr,
|
||||||
|
'ese0' : _Enum_ese0,
|
||||||
'gsen' : _Enum_gsen,
|
'gsen' : _Enum_gsen,
|
||||||
|
'ipnl' : _Enum_ipnl,
|
||||||
|
'isiz' : _Enum_isiz,
|
||||||
|
'pple' : _Enum_pple,
|
||||||
|
'sodr' : _Enum_sodr,
|
||||||
|
'vwby' : _Enum_vwby,
|
||||||
}
|
}
|
||||||
|
|
|
@ -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):
|
||||||
"""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
|
||||||
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 = {
|
||||||
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 = {
|
||||||
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 = {
|
||||||
# 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,
|
||||||
'dafi' : desk_accessory_file,
|
|
||||||
'fsut' : font_suitcase,
|
|
||||||
'file' : file,
|
|
||||||
'appf' : application_file,
|
'appf' : application_file,
|
||||||
'inlf' : internet_location_file,
|
'clpf' : clipping,
|
||||||
|
'dafi' : desk_accessory_file,
|
||||||
'docf' : document_file,
|
'docf' : document_file,
|
||||||
|
'dsut' : desk_accessory_suitcase,
|
||||||
|
'file' : file,
|
||||||
|
'fntf' : font_file,
|
||||||
|
'fsut' : font_suitcase,
|
||||||
|
'inlf' : internet_location_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 = {
|
||||||
|
|
|
@ -144,54 +144,18 @@ class Finder_Basics_Events:
|
||||||
class application(aetools.ComponentItem):
|
class application(aetools.ComponentItem):
|
||||||
"""application - The Finder """
|
"""application - The Finder """
|
||||||
want = 'capp'
|
want = 'capp'
|
||||||
class clipboard(aetools.NProperty):
|
class Finder_preferences(aetools.NProperty):
|
||||||
"""clipboard - the Finder\xd5s clipboard window """
|
"""Finder preferences - Various preferences that apply to the Finder as a whole """
|
||||||
which = 'pcli'
|
which = 'pfrp'
|
||||||
want = 'obj '
|
want = 'cprf'
|
||||||
class largest_free_block(aetools.NProperty):
|
|
||||||
"""largest free block - the largest free block of process memory available to launch an application """
|
|
||||||
which = 'mfre'
|
|
||||||
want = 'long'
|
|
||||||
class name(aetools.NProperty):
|
|
||||||
"""name - the Finder\xd5s name """
|
|
||||||
which = 'pnam'
|
|
||||||
want = 'itxt'
|
|
||||||
class visible(aetools.NProperty):
|
|
||||||
"""visible - Is the Finder\xd5s layer visible? """
|
|
||||||
which = 'pvis'
|
|
||||||
want = 'bool'
|
|
||||||
class frontmost(aetools.NProperty):
|
|
||||||
"""frontmost - Is the Finder the frontmost process? """
|
|
||||||
which = 'pisf'
|
|
||||||
want = 'bool'
|
|
||||||
class selection(aetools.NProperty):
|
|
||||||
"""selection - the selection visible to the user """
|
|
||||||
which = 'sele'
|
|
||||||
want = 'obj '
|
|
||||||
class insertion_location(aetools.NProperty):
|
|
||||||
"""insertion location - the container in which a new folder would appear if \xd2New Folder\xd3 was selected """
|
|
||||||
which = 'pins'
|
|
||||||
want = 'obj '
|
|
||||||
class file_sharing(aetools.NProperty):
|
|
||||||
"""file sharing - Is file sharing on? """
|
|
||||||
which = 'fshr'
|
|
||||||
want = 'bool'
|
|
||||||
class sharing_starting_up(aetools.NProperty):
|
|
||||||
"""sharing starting up - Is file sharing in the process of starting up? """
|
|
||||||
which = 'fsup'
|
|
||||||
want = 'bool'
|
|
||||||
class product_version(aetools.NProperty):
|
|
||||||
"""product version - the version of the System software running on this computer """
|
|
||||||
which = 'ver2'
|
|
||||||
want = 'itxt'
|
|
||||||
class version(aetools.NProperty):
|
|
||||||
"""version - the version of the Finder """
|
|
||||||
which = 'vers'
|
|
||||||
want = 'itxt'
|
|
||||||
class about_this_computer(aetools.NProperty):
|
class about_this_computer(aetools.NProperty):
|
||||||
"""about this computer - the \xd2About this Computer\xd3 dialog and the list of running processes displayed in it """
|
"""about this computer - the \xd2About this Computer\xd3 dialog and the list of running processes displayed in it """
|
||||||
which = 'abbx'
|
which = 'abbx'
|
||||||
want = 'obj '
|
want = 'obj '
|
||||||
|
class clipboard(aetools.NProperty):
|
||||||
|
"""clipboard - the Finder\xd5s clipboard window """
|
||||||
|
which = 'pcli'
|
||||||
|
want = 'obj '
|
||||||
class desktop(aetools.NProperty):
|
class desktop(aetools.NProperty):
|
||||||
"""desktop - the desktop """
|
"""desktop - the desktop """
|
||||||
which = 'desk'
|
which = 'desk'
|
||||||
|
@ -200,45 +164,77 @@ class execution_state(aetools.NProperty):
|
||||||
"""execution state - the current execution state of the Finder """
|
"""execution state - the current execution state of the Finder """
|
||||||
which = 'exec'
|
which = 'exec'
|
||||||
want = 'ese0'
|
want = 'ese0'
|
||||||
class Finder_preferences(aetools.NProperty):
|
class file_sharing(aetools.NProperty):
|
||||||
"""Finder preferences - Various preferences that apply to the Finder as a whole """
|
"""file sharing - Is file sharing on? """
|
||||||
which = 'pfrp'
|
which = 'fshr'
|
||||||
want = 'cprf'
|
want = 'bool'
|
||||||
# element 'cobj' as ['indx', 'name']
|
class frontmost(aetools.NProperty):
|
||||||
# element 'ctnr' as ['indx', 'name']
|
"""frontmost - Is the Finder the frontmost process? """
|
||||||
# element 'sctr' as ['indx', 'name']
|
which = 'pisf'
|
||||||
# element 'cdis' as ['indx', 'name', 'ID ']
|
want = 'bool'
|
||||||
# element 'cfol' as ['indx', 'name', 'ID ']
|
class insertion_location(aetools.NProperty):
|
||||||
# element 'file' as ['indx', 'name']
|
"""insertion location - the container in which a new folder would appear if \xd2New Folder\xd3 was selected """
|
||||||
|
which = 'pins'
|
||||||
|
want = 'obj '
|
||||||
|
class largest_free_block(aetools.NProperty):
|
||||||
|
"""largest free block - the largest free block of process memory available to launch an application """
|
||||||
|
which = 'mfre'
|
||||||
|
want = 'long'
|
||||||
|
class name(aetools.NProperty):
|
||||||
|
"""name - the Finder\xd5s name """
|
||||||
|
which = 'pnam'
|
||||||
|
want = 'itxt'
|
||||||
|
class product_version(aetools.NProperty):
|
||||||
|
"""product version - the version of the System software running on this computer """
|
||||||
|
which = 'ver2'
|
||||||
|
want = 'itxt'
|
||||||
|
class selection(aetools.NProperty):
|
||||||
|
"""selection - the selection visible to the user """
|
||||||
|
which = 'sele'
|
||||||
|
want = 'obj '
|
||||||
|
class sharing_starting_up(aetools.NProperty):
|
||||||
|
"""sharing starting up - Is file sharing in the process of starting up? """
|
||||||
|
which = 'fsup'
|
||||||
|
want = 'bool'
|
||||||
|
class version(aetools.NProperty):
|
||||||
|
"""version - the version of the Finder """
|
||||||
|
which = 'vers'
|
||||||
|
want = 'itxt'
|
||||||
|
class visible(aetools.NProperty):
|
||||||
|
"""visible - Is the Finder\xd5s layer visible? """
|
||||||
|
which = 'pvis'
|
||||||
|
want = 'bool'
|
||||||
# element 'alia' as ['indx', 'name']
|
# element 'alia' as ['indx', 'name']
|
||||||
# element 'appf' as ['indx', 'name', 'ID ']
|
# element 'appf' as ['indx', 'name', 'ID ']
|
||||||
# element 'docf' as ['indx', 'name']
|
# element 'cdis' as ['indx', 'name', 'ID ']
|
||||||
# element 'fntf' as ['indx', 'name']
|
# element 'cfol' as ['indx', 'name', 'ID ']
|
||||||
# element 'dafi' as ['indx', 'name']
|
|
||||||
# element 'inlf' as ['indx', 'name']
|
|
||||||
# element 'sndf' as ['indx', 'name']
|
|
||||||
# element 'clpf' as ['indx', 'name']
|
# element 'clpf' as ['indx', 'name']
|
||||||
# element 'pack' as ['indx', 'name']
|
# element 'cobj' as ['indx', 'name']
|
||||||
# element 'stcs' as ['indx', 'name']
|
# element 'ctnr' as ['indx', 'name']
|
||||||
# element 'fsut' as ['indx', 'name']
|
|
||||||
# element 'dsut' as ['indx', 'name']
|
|
||||||
# element 'prcs' as ['indx', 'name']
|
|
||||||
# element 'pcap' as ['indx', 'name']
|
|
||||||
# element 'pcda' as ['indx', 'name']
|
|
||||||
# element 'cwin' as ['indx', 'name']
|
# element 'cwin' as ['indx', 'name']
|
||||||
# element 'cwnd' as ['indx', 'name']
|
# element 'cwnd' as ['indx', 'name']
|
||||||
# element 'iwnd' as ['indx', 'name']
|
# element 'dafi' as ['indx', 'name']
|
||||||
# element 'vwnd' as ['indx', 'name']
|
# element 'docf' as ['indx', 'name']
|
||||||
# element 'lwnd' as ['indx', 'name']
|
# element 'dsut' as ['indx', 'name']
|
||||||
# element 'dwnd' as ['indx', 'name']
|
# element 'dwnd' as ['indx', 'name']
|
||||||
|
# element 'file' as ['indx', 'name']
|
||||||
|
# element 'fntf' as ['indx', 'name']
|
||||||
|
# element 'fsut' as ['indx', 'name']
|
||||||
|
# element 'inlf' as ['indx', 'name']
|
||||||
|
# element 'iwnd' as ['indx', 'name']
|
||||||
|
# element 'lwnd' as ['indx', 'name']
|
||||||
|
# element 'pack' as ['indx', 'name']
|
||||||
|
# element 'pcap' as ['indx', 'name']
|
||||||
|
# element 'pcda' as ['indx', 'name']
|
||||||
|
# element 'prcs' as ['indx', 'name']
|
||||||
|
# element 'sctr' as ['indx', 'name']
|
||||||
|
# element 'sndf' as ['indx', 'name']
|
||||||
|
# element 'stcs' as ['indx', 'name']
|
||||||
|
# element 'vwnd' as ['indx', 'name']
|
||||||
|
|
||||||
class special_folders(aetools.ComponentItem):
|
class special_folders(aetools.ComponentItem):
|
||||||
"""special folders - The special folders used by the Mac OS """
|
"""special folders - The special folders used by the Mac OS """
|
||||||
want = 'spfl'
|
want = 'spfl'
|
||||||
class system_folder(aetools.NProperty):
|
|
||||||
"""system folder - the System folder """
|
|
||||||
which = 'macs'
|
|
||||||
want = 'obj '
|
|
||||||
class apple_menu_items_folder(aetools.NProperty):
|
class apple_menu_items_folder(aetools.NProperty):
|
||||||
"""apple menu items folder - the special folder named \xd2Apple Menu Items,\xd3 the contents of which appear in the Apple menu """
|
"""apple menu items folder - the special folder named \xd2Apple Menu Items,\xd3 the contents of which appear in the Apple menu """
|
||||||
which = 'amnu'
|
which = 'amnu'
|
||||||
|
@ -267,65 +263,68 @@ class startup_items_folder(aetools.NProperty):
|
||||||
"""startup items folder - the special folder named \xd2Startup Items\xd3 """
|
"""startup items folder - the special folder named \xd2Startup Items\xd3 """
|
||||||
which = 'strt'
|
which = 'strt'
|
||||||
want = 'obj '
|
want = 'obj '
|
||||||
|
class system_folder(aetools.NProperty):
|
||||||
|
"""system folder - the System folder """
|
||||||
|
which = 'macs'
|
||||||
|
want = 'obj '
|
||||||
class temporary_items_folder(aetools.NProperty):
|
class temporary_items_folder(aetools.NProperty):
|
||||||
"""temporary items folder - the special folder named \xd2Temporary Items\xd3 (invisible) """
|
"""temporary items folder - the special folder named \xd2Temporary Items\xd3 (invisible) """
|
||||||
which = 'temp'
|
which = 'temp'
|
||||||
want = 'obj '
|
want = 'obj '
|
||||||
application._superclassnames = []
|
application._superclassnames = []
|
||||||
import Earlier_terms
|
|
||||||
import Containers_and_folders
|
|
||||||
import Files_and_suitcases
|
import Files_and_suitcases
|
||||||
import Process_classes
|
import Containers_and_folders
|
||||||
|
import Earlier_terms
|
||||||
import Window_classes
|
import Window_classes
|
||||||
|
import Process_classes
|
||||||
application._privpropdict = {
|
application._privpropdict = {
|
||||||
'clipboard' : clipboard,
|
'Finder_preferences' : Finder_preferences,
|
||||||
'largest_free_block' : largest_free_block,
|
|
||||||
'name' : name,
|
|
||||||
'visible' : visible,
|
|
||||||
'frontmost' : frontmost,
|
|
||||||
'selection' : selection,
|
|
||||||
'insertion_location' : insertion_location,
|
|
||||||
'file_sharing' : file_sharing,
|
|
||||||
'sharing_starting_up' : sharing_starting_up,
|
|
||||||
'product_version' : product_version,
|
|
||||||
'version' : version,
|
|
||||||
'about_this_computer' : about_this_computer,
|
'about_this_computer' : about_this_computer,
|
||||||
|
'clipboard' : clipboard,
|
||||||
'desktop' : desktop,
|
'desktop' : desktop,
|
||||||
'execution_state' : execution_state,
|
'execution_state' : execution_state,
|
||||||
'Finder_preferences' : Finder_preferences,
|
'file_sharing' : file_sharing,
|
||||||
|
'frontmost' : frontmost,
|
||||||
|
'insertion_location' : insertion_location,
|
||||||
|
'largest_free_block' : largest_free_block,
|
||||||
|
'name' : name,
|
||||||
|
'product_version' : product_version,
|
||||||
|
'selection' : selection,
|
||||||
|
'sharing_starting_up' : sharing_starting_up,
|
||||||
|
'version' : version,
|
||||||
|
'visible' : visible,
|
||||||
}
|
}
|
||||||
application._privelemdict = {
|
application._privelemdict = {
|
||||||
'item' : Earlier_terms.item,
|
|
||||||
'container' : Containers_and_folders.container,
|
|
||||||
'sharable_container' : Earlier_terms.sharable_container,
|
|
||||||
'disk' : Containers_and_folders.disk,
|
|
||||||
'folder' : Containers_and_folders.folder,
|
|
||||||
'file' : Files_and_suitcases.file,
|
|
||||||
'alias_file' : Files_and_suitcases.alias_file,
|
|
||||||
'application_file' : Earlier_terms.application_file,
|
|
||||||
'document_file' : Files_and_suitcases.document_file,
|
|
||||||
'font_file' : Files_and_suitcases.font_file,
|
|
||||||
'desk_accessory_file' : Files_and_suitcases.desk_accessory_file,
|
|
||||||
'internet_location' : Earlier_terms.internet_location,
|
|
||||||
'sound_file' : Files_and_suitcases.sound_file,
|
|
||||||
'clipping' : Files_and_suitcases.clipping,
|
|
||||||
'package' : Files_and_suitcases.package,
|
|
||||||
'suitcase' : Files_and_suitcases.suitcase,
|
|
||||||
'font_suitcase' : Files_and_suitcases.font_suitcase,
|
|
||||||
'accessory_suitcase' : Earlier_terms.accessory_suitcase,
|
|
||||||
'process' : Earlier_terms.process,
|
|
||||||
'application_process' : Process_classes.application_process,
|
|
||||||
'accessory_process' : Earlier_terms.accessory_process,
|
'accessory_process' : Earlier_terms.accessory_process,
|
||||||
'window' : Earlier_terms.window,
|
'alias_file' : Files_and_suitcases.alias_file,
|
||||||
'container_window' : Earlier_terms.container_window,
|
'application_file' : Files_and_suitcases.application_file,
|
||||||
'information_window' : Earlier_terms.information_window,
|
'application_process' : Process_classes.application_process,
|
||||||
'view_options_window' : Window_classes.view_options_window,
|
'clipping' : Files_and_suitcases.clipping,
|
||||||
'clipping_window' : Window_classes.clipping_window,
|
'clipping_window' : Window_classes.clipping_window,
|
||||||
|
'container' : Containers_and_folders.container,
|
||||||
|
'container_window' : Earlier_terms.container_window,
|
||||||
'content_space' : Window_classes.content_space,
|
'content_space' : Window_classes.content_space,
|
||||||
|
'desk_accessory_file' : Files_and_suitcases.desk_accessory_file,
|
||||||
|
'desk_accessory_suitcase' : Files_and_suitcases.desk_accessory_suitcase,
|
||||||
|
'disk' : Containers_and_folders.disk,
|
||||||
|
'document_file' : Files_and_suitcases.document_file,
|
||||||
|
'file' : Files_and_suitcases.file,
|
||||||
|
'folder' : Containers_and_folders.folder,
|
||||||
|
'font_file' : Files_and_suitcases.font_file,
|
||||||
|
'font_suitcase' : Files_and_suitcases.font_suitcase,
|
||||||
|
'information_window' : Earlier_terms.information_window,
|
||||||
|
'internet_location_file' : Files_and_suitcases.internet_location_file,
|
||||||
|
'item' : Earlier_terms.item,
|
||||||
|
'package' : Files_and_suitcases.package,
|
||||||
|
'process' : Earlier_terms.process,
|
||||||
|
'sharable_container' : Containers_and_folders.sharable_container,
|
||||||
|
'sound_file' : Files_and_suitcases.sound_file,
|
||||||
|
'suitcase' : Files_and_suitcases.suitcase,
|
||||||
|
'view_options_window' : Window_classes.view_options_window,
|
||||||
|
'window' : Earlier_terms.window,
|
||||||
}
|
}
|
||||||
special_folders._superclassnames = []
|
special_folders._superclassnames = []
|
||||||
special_folders._privpropdict = {
|
special_folders._privpropdict = {
|
||||||
'system_folder' : system_folder,
|
|
||||||
'apple_menu_items_folder' : apple_menu_items_folder,
|
'apple_menu_items_folder' : apple_menu_items_folder,
|
||||||
'control_panels_folder' : control_panels_folder,
|
'control_panels_folder' : control_panels_folder,
|
||||||
'extensions_folder' : extensions_folder,
|
'extensions_folder' : extensions_folder,
|
||||||
|
@ -333,6 +332,7 @@ special_folders._privpropdict = {
|
||||||
'preferences_folder' : preferences_folder,
|
'preferences_folder' : preferences_folder,
|
||||||
'shutdown_items_folder' : shutdown_items_folder,
|
'shutdown_items_folder' : shutdown_items_folder,
|
||||||
'startup_items_folder' : startup_items_folder,
|
'startup_items_folder' : startup_items_folder,
|
||||||
|
'system_folder' : system_folder,
|
||||||
'temporary_items_folder' : temporary_items_folder,
|
'temporary_items_folder' : temporary_items_folder,
|
||||||
}
|
}
|
||||||
special_folders._privelemdict = {
|
special_folders._privelemdict = {
|
||||||
|
@ -347,30 +347,30 @@ _classdeclarations = {
|
||||||
}
|
}
|
||||||
|
|
||||||
_propdeclarations = {
|
_propdeclarations = {
|
||||||
'vers' : version,
|
|
||||||
'ver2' : product_version,
|
|
||||||
'pfrp' : Finder_preferences,
|
|
||||||
'exec' : execution_state,
|
|
||||||
'pins' : insertion_location,
|
|
||||||
'mfre' : largest_free_block,
|
|
||||||
'fsup' : sharing_starting_up,
|
|
||||||
'desk' : desktop,
|
|
||||||
'ctrl' : control_panels_folder,
|
|
||||||
'macs' : system_folder,
|
|
||||||
'font' : fonts_folder,
|
|
||||||
'abbx' : about_this_computer,
|
'abbx' : about_this_computer,
|
||||||
'shdf' : shutdown_items_folder,
|
'amnu' : apple_menu_items_folder,
|
||||||
'temp' : temporary_items_folder,
|
'ctrl' : control_panels_folder,
|
||||||
|
'desk' : desktop,
|
||||||
|
'exec' : execution_state,
|
||||||
|
'extn' : extensions_folder,
|
||||||
|
'font' : fonts_folder,
|
||||||
|
'fshr' : file_sharing,
|
||||||
|
'fsup' : sharing_starting_up,
|
||||||
|
'macs' : system_folder,
|
||||||
|
'mfre' : largest_free_block,
|
||||||
|
'pcli' : clipboard,
|
||||||
|
'pfrp' : Finder_preferences,
|
||||||
|
'pins' : insertion_location,
|
||||||
|
'pisf' : frontmost,
|
||||||
|
'pnam' : name,
|
||||||
|
'pref' : preferences_folder,
|
||||||
'pvis' : visible,
|
'pvis' : visible,
|
||||||
'sele' : selection,
|
'sele' : selection,
|
||||||
'pisf' : frontmost,
|
'shdf' : shutdown_items_folder,
|
||||||
'pref' : preferences_folder,
|
|
||||||
'strt' : startup_items_folder,
|
'strt' : startup_items_folder,
|
||||||
'pcli' : clipboard,
|
'temp' : temporary_items_folder,
|
||||||
'fshr' : file_sharing,
|
'ver2' : product_version,
|
||||||
'pnam' : name,
|
'vers' : version,
|
||||||
'extn' : extensions_folder,
|
|
||||||
'amnu' : apple_menu_items_folder,
|
|
||||||
}
|
}
|
||||||
|
|
||||||
_compdeclarations = {
|
_compdeclarations = {
|
||||||
|
|
|
@ -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):
|
||||||
"""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):
|
|
||||||
"""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'
|
|
||||||
want = 'long'
|
|
||||||
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'
|
|
||||||
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):
|
class icon(aetools.NProperty):
|
||||||
"""icon - the icon bitmap of the item """
|
"""icon - the icon bitmap of the item """
|
||||||
which = 'iimg'
|
which = 'iimg'
|
||||||
want = 'ifam'
|
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 label_index(aetools.NProperty):
|
||||||
|
"""label index - the label of the item """
|
||||||
|
which = 'labi'
|
||||||
|
want = 'long'
|
||||||
|
class modification_date(aetools.NProperty):
|
||||||
|
"""modification date - the date on which the item was last modified """
|
||||||
|
which = 'asmo'
|
||||||
|
want = 'ldt '
|
||||||
|
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):
|
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,
|
|
||||||
'bounds' : bounds,
|
|
||||||
'label_index' : label_index,
|
|
||||||
'kind' : kind,
|
|
||||||
'description' : description,
|
|
||||||
'comment' : comment,
|
|
||||||
'size' : size,
|
|
||||||
'physical_size' : physical_size,
|
|
||||||
'creation_date' : creation_date,
|
|
||||||
'modification_date' : modification_date,
|
|
||||||
'icon' : icon,
|
'icon' : icon,
|
||||||
'selected' : selected,
|
'id' : id,
|
||||||
'content_space' : content_space,
|
'index' : index,
|
||||||
'window' : window,
|
|
||||||
'information_window' : information_window,
|
'information_window' : information_window,
|
||||||
|
'kind' : kind,
|
||||||
|
'label_index' : label_index,
|
||||||
|
'modification_date' : modification_date,
|
||||||
|
'name' : name,
|
||||||
|
'physical_size' : physical_size,
|
||||||
|
'position' : position,
|
||||||
|
'selected' : selected,
|
||||||
|
'size' : size,
|
||||||
|
'window' : window,
|
||||||
}
|
}
|
||||||
item._privelemdict = {
|
item._privelemdict = {
|
||||||
}
|
}
|
||||||
|
@ -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,
|
||||||
'dwnd' : content_space,
|
'cdis' : disk,
|
||||||
'pbnd' : bounds,
|
|
||||||
'issl' : selected,
|
|
||||||
'labi' : label_index,
|
|
||||||
'dscr' : description,
|
|
||||||
'comt' : comment,
|
'comt' : comment,
|
||||||
'ctnr' : container,
|
'ctnr' : container,
|
||||||
'pidx' : index,
|
|
||||||
'iimg' : icon,
|
|
||||||
'ID ' : id,
|
|
||||||
'cwin' : window,
|
'cwin' : window,
|
||||||
'pnam' : name,
|
'dscr' : description,
|
||||||
'ascd' : creation_date,
|
'dwnd' : content_space,
|
||||||
'cdis' : disk,
|
'iimg' : icon,
|
||||||
'asmo' : modification_date,
|
'issl' : selected,
|
||||||
'asdr' : folder,
|
|
||||||
'iwnd' : information_window,
|
'iwnd' : information_window,
|
||||||
|
'kind' : kind,
|
||||||
|
'labi' : label_index,
|
||||||
|
'pbnd' : bounds,
|
||||||
|
'phys' : physical_size,
|
||||||
|
'pidx' : index,
|
||||||
|
'pnam' : name,
|
||||||
|
'posn' : position,
|
||||||
|
'ptsz' : size,
|
||||||
}
|
}
|
||||||
|
|
||||||
_compdeclarations = {
|
_compdeclarations = {
|
||||||
|
|
|
@ -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 = {
|
||||||
}
|
}
|
||||||
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 = {
|
||||||
# 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,30 +42,6 @@ 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):
|
|
||||||
"""name - the name of the process """
|
|
||||||
which = 'pnam'
|
|
||||||
want = 'itxt'
|
|
||||||
class visible(aetools.NProperty):
|
|
||||||
"""visible - Is the process' layer visible? """
|
|
||||||
which = 'pvis'
|
|
||||||
want = 'bool'
|
|
||||||
class frontmost(aetools.NProperty):
|
|
||||||
"""frontmost - Is the process the frontmost process? """
|
|
||||||
which = 'pisf'
|
|
||||||
want = 'bool'
|
|
||||||
class file(aetools.NProperty):
|
|
||||||
"""file - the file from which the process was launched """
|
|
||||||
which = 'file'
|
|
||||||
want = 'obj '
|
|
||||||
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):
|
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)? """
|
"""accepts high level events - Is the process high-level event aware (accepts open application, open document, print document, and quit)? """
|
||||||
which = 'isab'
|
which = 'isab'
|
||||||
|
@ -74,18 +50,42 @@ class accepts_remote_events(aetools.NProperty):
|
||||||
"""accepts remote events - Does the process accept remote events? """
|
"""accepts remote events - Does the process accept remote events? """
|
||||||
which = 'revt'
|
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):
|
||||||
|
"""file - the file from which the process was launched """
|
||||||
|
which = 'file'
|
||||||
|
want = 'obj '
|
||||||
|
class file_type(aetools.NProperty):
|
||||||
|
"""file type - the OSType of the file type of the process """
|
||||||
|
which = 'asty'
|
||||||
|
want = 'type'
|
||||||
|
class frontmost(aetools.NProperty):
|
||||||
|
"""frontmost - Is the process the frontmost process? """
|
||||||
|
which = 'pisf'
|
||||||
|
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 = {
|
||||||
}
|
}
|
||||||
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 = {
|
||||||
# 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,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -22,68 +22,64 @@ class alias_list(aetools.ComponentItem):
|
||||||
class icon_family(aetools.ComponentItem):
|
class icon_family(aetools.ComponentItem):
|
||||||
"""icon family - A family of icons """
|
"""icon family - A family of icons """
|
||||||
want = 'ifam'
|
want = 'ifam'
|
||||||
class large_monochrome_icon_and_mask(aetools.NProperty):
|
|
||||||
"""large monochrome icon and mask - the large black-and-white icon and the mask for large icons """
|
|
||||||
which = 'ICN#'
|
|
||||||
want = 'ICN#'
|
|
||||||
class large_8_bit_mask(aetools.NProperty):
|
|
||||||
"""large 8 bit mask - the large 8-bit mask for large 32-bit icons """
|
|
||||||
which = 'l8mk'
|
|
||||||
want = 'l8mk'
|
|
||||||
class large_32_bit_icon(aetools.NProperty):
|
class large_32_bit_icon(aetools.NProperty):
|
||||||
"""large 32 bit icon - the large 32-bit color icon """
|
"""large 32 bit icon - the large 32-bit color icon """
|
||||||
which = 'il32'
|
which = 'il32'
|
||||||
want = 'il32'
|
want = 'il32'
|
||||||
class large_8_bit_icon(aetools.NProperty):
|
|
||||||
"""large 8 bit icon - the large 8-bit color icon """
|
|
||||||
which = 'icl8'
|
|
||||||
want = 'icl8'
|
|
||||||
class large_4_bit_icon(aetools.NProperty):
|
class large_4_bit_icon(aetools.NProperty):
|
||||||
"""large 4 bit icon - the large 4-bit color icon """
|
"""large 4 bit icon - the large 4-bit color icon """
|
||||||
which = 'icl4'
|
which = 'icl4'
|
||||||
want = 'icl4'
|
want = 'icl4'
|
||||||
class small_monochrome_icon_and_mask(aetools.NProperty):
|
class large_8_bit_icon(aetools.NProperty):
|
||||||
"""small monochrome icon and mask - the small black-and-white icon and the mask for small icons """
|
"""large 8 bit icon - the large 8-bit color icon """
|
||||||
which = 'ics#'
|
which = 'icl8'
|
||||||
want = 'ics#'
|
want = 'icl8'
|
||||||
class small_8_bit_mask(aetools.NProperty):
|
class large_8_bit_mask(aetools.NProperty):
|
||||||
"""small 8 bit mask - the small 8-bit mask for small 32-bit icons """
|
"""large 8 bit mask - the large 8-bit mask for large 32-bit icons """
|
||||||
which = 'ics8'
|
which = 'l8mk'
|
||||||
want = 's8mk'
|
want = 'l8mk'
|
||||||
|
class large_monochrome_icon_and_mask(aetools.NProperty):
|
||||||
|
"""large monochrome icon and mask - the large black-and-white icon and the mask for large icons """
|
||||||
|
which = 'ICN#'
|
||||||
|
want = 'ICN#'
|
||||||
class small_32_bit_icon(aetools.NProperty):
|
class small_32_bit_icon(aetools.NProperty):
|
||||||
"""small 32 bit icon - the small 32-bit color icon """
|
"""small 32 bit icon - the small 32-bit color icon """
|
||||||
which = 'is32'
|
which = 'is32'
|
||||||
want = 'is32'
|
want = 'is32'
|
||||||
|
|
||||||
small_8_bit_icon = small_8_bit_mask
|
|
||||||
class small_4_bit_icon(aetools.NProperty):
|
class small_4_bit_icon(aetools.NProperty):
|
||||||
"""small 4 bit icon - the small 4-bit color icon """
|
"""small 4 bit icon - the small 4-bit color icon """
|
||||||
which = 'ics4'
|
which = 'ics4'
|
||||||
want = 'ics4'
|
want = 'ics4'
|
||||||
|
class small_8_bit_icon(aetools.NProperty):
|
||||||
|
"""small 8 bit icon - the small 8-bit color icon """
|
||||||
|
which = 'ics8'
|
||||||
|
want = 'ics8'
|
||||||
|
|
||||||
|
small_8_bit_mask = small_8_bit_icon
|
||||||
|
class small_monochrome_icon_and_mask(aetools.NProperty):
|
||||||
|
"""small monochrome icon and mask - the small black-and-white icon and the mask for small icons """
|
||||||
|
which = 'ics#'
|
||||||
|
want = 'ics#'
|
||||||
|
|
||||||
class label(aetools.ComponentItem):
|
class label(aetools.ComponentItem):
|
||||||
"""label - A Finder label (name and color) """
|
"""label - A Finder label (name and color) """
|
||||||
want = 'clbl'
|
want = 'clbl'
|
||||||
class name(aetools.NProperty):
|
|
||||||
"""name - the name associated with the label """
|
|
||||||
which = 'pnam'
|
|
||||||
want = 'itxt'
|
|
||||||
class index(aetools.NProperty):
|
|
||||||
"""index - the index in the front-to-back ordering within its container """
|
|
||||||
which = 'pidx'
|
|
||||||
want = 'long'
|
|
||||||
class color(aetools.NProperty):
|
class color(aetools.NProperty):
|
||||||
"""color - the color associated with the label """
|
"""color - the color associated with the label """
|
||||||
which = 'colr'
|
which = 'colr'
|
||||||
want = 'cRGB'
|
want = 'cRGB'
|
||||||
|
class index(aetools.NProperty):
|
||||||
|
"""index - the index in the front-to-back ordering within its container """
|
||||||
|
which = 'pidx'
|
||||||
|
want = 'long'
|
||||||
|
class name(aetools.NProperty):
|
||||||
|
"""name - the name associated with the label """
|
||||||
|
which = 'pnam'
|
||||||
|
want = 'itxt'
|
||||||
|
|
||||||
class preferences(aetools.ComponentItem):
|
class preferences(aetools.ComponentItem):
|
||||||
"""preferences - The Finder Preferences """
|
"""preferences - The Finder Preferences """
|
||||||
want = 'cprf'
|
want = 'cprf'
|
||||||
class window(aetools.NProperty):
|
|
||||||
"""window - the window that would open if Finder preferences was opened """
|
|
||||||
which = 'cwin'
|
|
||||||
want = 'pwnd'
|
|
||||||
class button_view_arrangement(aetools.NProperty):
|
class button_view_arrangement(aetools.NProperty):
|
||||||
"""button view arrangement - the method of arrangement of icons in default Finder button view windows """
|
"""button view arrangement - the method of arrangement of icons in default Finder button view windows """
|
||||||
which = 'barr'
|
which = 'barr'
|
||||||
|
@ -92,18 +88,14 @@ class button_view_icon_size(aetools.NProperty):
|
||||||
"""button view icon size - the size of icons displayed in Finder button view windows. """
|
"""button view icon size - the size of icons displayed in Finder button view windows. """
|
||||||
which = 'bisz'
|
which = 'bisz'
|
||||||
want = 'long'
|
want = 'long'
|
||||||
class spatial_view_arrangement(aetools.NProperty):
|
|
||||||
"""spatial view arrangement - the method of arrangement of icons in default Finder spatial view windows """
|
|
||||||
which = 'iarr'
|
|
||||||
want = 'earr'
|
|
||||||
class spatial_view_icon_size(aetools.NProperty):
|
|
||||||
"""spatial view icon size - the size of icons displayed in Finder spatial view windows. """
|
|
||||||
which = 'iisz'
|
|
||||||
want = 'long'
|
|
||||||
class calculates_folder_sizes(aetools.NProperty):
|
class calculates_folder_sizes(aetools.NProperty):
|
||||||
"""calculates folder sizes - Are folder sizes calculated and displayed in Finder list view windows? """
|
"""calculates folder sizes - Are folder sizes calculated and displayed in Finder list view windows? """
|
||||||
which = 'sfsz'
|
which = 'sfsz'
|
||||||
want = 'bool'
|
want = 'bool'
|
||||||
|
class delay_before_springing(aetools.NProperty):
|
||||||
|
"""delay before springing - the delay before springing open a container in ticks (1/60th of a second) (12 is shortest delay, 60 is longest delay) """
|
||||||
|
which = 'dela'
|
||||||
|
want = 'shor'
|
||||||
class list_view_icon_size(aetools.NProperty):
|
class list_view_icon_size(aetools.NProperty):
|
||||||
"""list view icon size - the size of icons displayed in Finder list view windows. """
|
"""list view icon size - the size of icons displayed in Finder list view windows. """
|
||||||
which = 'lisz'
|
which = 'lisz'
|
||||||
|
@ -136,6 +128,18 @@ class shows_version(aetools.NProperty):
|
||||||
"""shows version - Are file versions displayed in default Finder list view windows? """
|
"""shows version - Are file versions displayed in default Finder list view windows? """
|
||||||
which = 'svrs'
|
which = 'svrs'
|
||||||
want = 'bool'
|
want = 'bool'
|
||||||
|
class spatial_view_arrangement(aetools.NProperty):
|
||||||
|
"""spatial view arrangement - the method of arrangement of icons in default Finder spatial view windows """
|
||||||
|
which = 'iarr'
|
||||||
|
want = 'earr'
|
||||||
|
class spatial_view_icon_size(aetools.NProperty):
|
||||||
|
"""spatial view icon size - the size of icons displayed in Finder spatial view windows. """
|
||||||
|
which = 'iisz'
|
||||||
|
want = 'long'
|
||||||
|
class spring_open_folders(aetools.NProperty):
|
||||||
|
"""spring open folders - Spring open folders after the specified delay? """
|
||||||
|
which = 'sprg'
|
||||||
|
want = 'bool'
|
||||||
class uses_relative_dates(aetools.NProperty):
|
class uses_relative_dates(aetools.NProperty):
|
||||||
"""uses relative dates - Are relative dates (e.g., today, yesterday) shown in Finder list view windows? """
|
"""uses relative dates - Are relative dates (e.g., today, yesterday) shown in Finder list view windows? """
|
||||||
which = 'urdt'
|
which = 'urdt'
|
||||||
|
@ -148,14 +152,6 @@ class uses_wide_grid(aetools.NProperty):
|
||||||
"""uses wide grid - Space icons on a wide grid? """
|
"""uses wide grid - Space icons on a wide grid? """
|
||||||
which = 'uswg'
|
which = 'uswg'
|
||||||
want = 'bool'
|
want = 'bool'
|
||||||
class spring_open_folders(aetools.NProperty):
|
|
||||||
"""spring open folders - Spring open folders after the specified delay? """
|
|
||||||
which = 'sprg'
|
|
||||||
want = 'bool'
|
|
||||||
class delay_before_springing(aetools.NProperty):
|
|
||||||
"""delay before springing - the delay before springing open a container in ticks (1/60th of a second) (12 is shortest delay, 60 is longest delay) """
|
|
||||||
which = 'dela'
|
|
||||||
want = 'shor'
|
|
||||||
class view_font(aetools.NProperty):
|
class view_font(aetools.NProperty):
|
||||||
"""view font - the id of the font used in Finder views. """
|
"""view font - the id of the font used in Finder views. """
|
||||||
which = 'vfnt'
|
which = 'vfnt'
|
||||||
|
@ -164,6 +160,10 @@ class view_font_size(aetools.NProperty):
|
||||||
"""view font size - the size of the font used in Finder views """
|
"""view font size - the size of the font used in Finder views """
|
||||||
which = 'vfsz'
|
which = 'vfsz'
|
||||||
want = 'long'
|
want = 'long'
|
||||||
|
class window(aetools.NProperty):
|
||||||
|
"""window - the window that would open if Finder preferences was opened """
|
||||||
|
which = 'cwin'
|
||||||
|
want = 'pwnd'
|
||||||
# element 'clbl' as ['indx', 'name']
|
# element 'clbl' as ['indx', 'name']
|
||||||
alias_list._superclassnames = []
|
alias_list._superclassnames = []
|
||||||
alias_list._privpropdict = {
|
alias_list._privpropdict = {
|
||||||
|
@ -172,35 +172,33 @@ alias_list._privelemdict = {
|
||||||
}
|
}
|
||||||
icon_family._superclassnames = []
|
icon_family._superclassnames = []
|
||||||
icon_family._privpropdict = {
|
icon_family._privpropdict = {
|
||||||
'large_monochrome_icon_and_mask' : large_monochrome_icon_and_mask,
|
|
||||||
'large_8_bit_mask' : large_8_bit_mask,
|
|
||||||
'large_32_bit_icon' : large_32_bit_icon,
|
'large_32_bit_icon' : large_32_bit_icon,
|
||||||
'large_8_bit_icon' : large_8_bit_icon,
|
|
||||||
'large_4_bit_icon' : large_4_bit_icon,
|
'large_4_bit_icon' : large_4_bit_icon,
|
||||||
'small_monochrome_icon_and_mask' : small_monochrome_icon_and_mask,
|
'large_8_bit_icon' : large_8_bit_icon,
|
||||||
'small_8_bit_mask' : small_8_bit_mask,
|
'large_8_bit_mask' : large_8_bit_mask,
|
||||||
|
'large_monochrome_icon_and_mask' : large_monochrome_icon_and_mask,
|
||||||
'small_32_bit_icon' : small_32_bit_icon,
|
'small_32_bit_icon' : small_32_bit_icon,
|
||||||
'small_8_bit_icon' : small_8_bit_icon,
|
|
||||||
'small_4_bit_icon' : small_4_bit_icon,
|
'small_4_bit_icon' : small_4_bit_icon,
|
||||||
|
'small_8_bit_icon' : small_8_bit_icon,
|
||||||
|
'small_8_bit_mask' : small_8_bit_mask,
|
||||||
|
'small_monochrome_icon_and_mask' : small_monochrome_icon_and_mask,
|
||||||
}
|
}
|
||||||
icon_family._privelemdict = {
|
icon_family._privelemdict = {
|
||||||
}
|
}
|
||||||
label._superclassnames = []
|
label._superclassnames = []
|
||||||
label._privpropdict = {
|
label._privpropdict = {
|
||||||
'name' : name,
|
|
||||||
'index' : index,
|
|
||||||
'color' : color,
|
'color' : color,
|
||||||
|
'index' : index,
|
||||||
|
'name' : name,
|
||||||
}
|
}
|
||||||
label._privelemdict = {
|
label._privelemdict = {
|
||||||
}
|
}
|
||||||
preferences._superclassnames = []
|
preferences._superclassnames = []
|
||||||
preferences._privpropdict = {
|
preferences._privpropdict = {
|
||||||
'window' : window,
|
|
||||||
'button_view_arrangement' : button_view_arrangement,
|
'button_view_arrangement' : button_view_arrangement,
|
||||||
'button_view_icon_size' : button_view_icon_size,
|
'button_view_icon_size' : button_view_icon_size,
|
||||||
'spatial_view_arrangement' : spatial_view_arrangement,
|
|
||||||
'spatial_view_icon_size' : spatial_view_icon_size,
|
|
||||||
'calculates_folder_sizes' : calculates_folder_sizes,
|
'calculates_folder_sizes' : calculates_folder_sizes,
|
||||||
|
'delay_before_springing' : delay_before_springing,
|
||||||
'list_view_icon_size' : list_view_icon_size,
|
'list_view_icon_size' : list_view_icon_size,
|
||||||
'shows_comments' : shows_comments,
|
'shows_comments' : shows_comments,
|
||||||
'shows_creation_date' : shows_creation_date,
|
'shows_creation_date' : shows_creation_date,
|
||||||
|
@ -209,13 +207,15 @@ preferences._privpropdict = {
|
||||||
'shows_modification_date' : shows_modification_date,
|
'shows_modification_date' : shows_modification_date,
|
||||||
'shows_size' : shows_size,
|
'shows_size' : shows_size,
|
||||||
'shows_version' : shows_version,
|
'shows_version' : shows_version,
|
||||||
|
'spatial_view_arrangement' : spatial_view_arrangement,
|
||||||
|
'spatial_view_icon_size' : spatial_view_icon_size,
|
||||||
|
'spring_open_folders' : spring_open_folders,
|
||||||
'uses_relative_dates' : uses_relative_dates,
|
'uses_relative_dates' : uses_relative_dates,
|
||||||
'uses_simple_menus' : uses_simple_menus,
|
'uses_simple_menus' : uses_simple_menus,
|
||||||
'uses_wide_grid' : uses_wide_grid,
|
'uses_wide_grid' : uses_wide_grid,
|
||||||
'spring_open_folders' : spring_open_folders,
|
|
||||||
'delay_before_springing' : delay_before_springing,
|
|
||||||
'view_font' : view_font,
|
'view_font' : view_font,
|
||||||
'view_font_size' : view_font_size,
|
'view_font_size' : view_font_size,
|
||||||
|
'window' : window,
|
||||||
}
|
}
|
||||||
preferences._privelemdict = {
|
preferences._privelemdict = {
|
||||||
'label' : label,
|
'label' : label,
|
||||||
|
@ -225,46 +225,46 @@ preferences._privelemdict = {
|
||||||
# Indices of types declared in this module
|
# Indices of types declared in this module
|
||||||
#
|
#
|
||||||
_classdeclarations = {
|
_classdeclarations = {
|
||||||
'cprf' : preferences,
|
|
||||||
'alst' : alias_list,
|
'alst' : alias_list,
|
||||||
'ifam' : icon_family,
|
|
||||||
'clbl' : label,
|
'clbl' : label,
|
||||||
|
'cprf' : preferences,
|
||||||
|
'ifam' : icon_family,
|
||||||
}
|
}
|
||||||
|
|
||||||
_propdeclarations = {
|
_propdeclarations = {
|
||||||
'dela' : delay_before_springing,
|
|
||||||
'ics4' : small_4_bit_icon,
|
|
||||||
'iarr' : spatial_view_arrangement,
|
|
||||||
'barr' : button_view_arrangement,
|
|
||||||
'vfnt' : view_font,
|
|
||||||
'sknd' : shows_kind,
|
|
||||||
'svrs' : shows_version,
|
|
||||||
'colr' : color,
|
|
||||||
'ics8' : small_8_bit_mask,
|
|
||||||
'icl8' : large_8_bit_icon,
|
|
||||||
'pidx' : index,
|
|
||||||
'vfsz' : view_font_size,
|
|
||||||
'sfsz' : calculates_folder_sizes,
|
|
||||||
'ics#' : small_monochrome_icon_and_mask,
|
|
||||||
'urdt' : uses_relative_dates,
|
|
||||||
'bisz' : button_view_icon_size,
|
|
||||||
'usme' : uses_simple_menus,
|
|
||||||
'sprg' : spring_open_folders,
|
|
||||||
'icl4' : large_4_bit_icon,
|
|
||||||
'slbl' : shows_label,
|
|
||||||
'lisz' : list_view_icon_size,
|
|
||||||
'ssiz' : shows_size,
|
|
||||||
'l8mk' : large_8_bit_mask,
|
|
||||||
'scom' : shows_comments,
|
|
||||||
'iisz' : spatial_view_icon_size,
|
|
||||||
'sdat' : shows_modification_date,
|
|
||||||
'cwin' : window,
|
|
||||||
'ICN#' : large_monochrome_icon_and_mask,
|
'ICN#' : large_monochrome_icon_and_mask,
|
||||||
'is32' : small_32_bit_icon,
|
'barr' : button_view_arrangement,
|
||||||
'pnam' : name,
|
'bisz' : button_view_icon_size,
|
||||||
|
'colr' : color,
|
||||||
|
'cwin' : window,
|
||||||
|
'dela' : delay_before_springing,
|
||||||
|
'iarr' : spatial_view_arrangement,
|
||||||
|
'icl4' : large_4_bit_icon,
|
||||||
|
'icl8' : large_8_bit_icon,
|
||||||
|
'ics#' : small_monochrome_icon_and_mask,
|
||||||
|
'ics4' : small_4_bit_icon,
|
||||||
|
'ics8' : small_8_bit_icon,
|
||||||
|
'iisz' : spatial_view_icon_size,
|
||||||
'il32' : large_32_bit_icon,
|
'il32' : large_32_bit_icon,
|
||||||
'uswg' : uses_wide_grid,
|
'is32' : small_32_bit_icon,
|
||||||
|
'l8mk' : large_8_bit_mask,
|
||||||
|
'lisz' : list_view_icon_size,
|
||||||
|
'pidx' : index,
|
||||||
|
'pnam' : name,
|
||||||
'scda' : shows_creation_date,
|
'scda' : shows_creation_date,
|
||||||
|
'scom' : shows_comments,
|
||||||
|
'sdat' : shows_modification_date,
|
||||||
|
'sfsz' : calculates_folder_sizes,
|
||||||
|
'sknd' : shows_kind,
|
||||||
|
'slbl' : shows_label,
|
||||||
|
'sprg' : spring_open_folders,
|
||||||
|
'ssiz' : shows_size,
|
||||||
|
'svrs' : shows_version,
|
||||||
|
'urdt' : uses_relative_dates,
|
||||||
|
'usme' : uses_simple_menus,
|
||||||
|
'uswg' : uses_wide_grid,
|
||||||
|
'vfnt' : view_font,
|
||||||
|
'vfsz' : view_font_size,
|
||||||
}
|
}
|
||||||
|
|
||||||
_compdeclarations = {
|
_compdeclarations = {
|
||||||
|
|
|
@ -28,42 +28,30 @@ clipping_windows = clipping_window
|
||||||
class container_window(aetools.ComponentItem):
|
class container_window(aetools.ComponentItem):
|
||||||
"""container window - A window that contains items """
|
"""container window - A window that contains items """
|
||||||
want = 'cwnd'
|
want = 'cwnd'
|
||||||
|
class button_view_arrangement(aetools.NProperty):
|
||||||
|
"""button view arrangement - the property by which to keep icons arranged within a button view window """
|
||||||
|
which = 'barr'
|
||||||
|
want = 'earr'
|
||||||
|
class calculates_folder_sizes(aetools.NProperty):
|
||||||
|
"""calculates folder sizes - Are folder sizes calculated and displayed in the window? (does not apply to suitcase windows) """
|
||||||
|
which = 'sfsz'
|
||||||
|
want = 'bool'
|
||||||
class container(aetools.NProperty):
|
class container(aetools.NProperty):
|
||||||
"""container - the container from which the window was opened """
|
"""container - the container from which the window was opened """
|
||||||
which = 'ctnr'
|
which = 'ctnr'
|
||||||
want = 'obj '
|
want = 'obj '
|
||||||
class item(aetools.NProperty):
|
|
||||||
"""item - the item from which the window was opened (always returns something) """
|
|
||||||
which = 'cobj'
|
|
||||||
want = 'obj '
|
|
||||||
class has_custom_view_settings(aetools.NProperty):
|
class has_custom_view_settings(aetools.NProperty):
|
||||||
"""has custom view settings - Does the folder have custom view settings or is it using the default global settings? """
|
"""has custom view settings - Does the folder have custom view settings or is it using the default global settings? """
|
||||||
which = 'cuss'
|
which = 'cuss'
|
||||||
want = 'bool'
|
want = 'bool'
|
||||||
class view(aetools.NProperty):
|
class item(aetools.NProperty):
|
||||||
"""view - the current view for the window (icon, name, date, etc.) """
|
"""item - the item from which the window was opened (always returns something) """
|
||||||
which = 'pvew'
|
which = 'cobj'
|
||||||
want = 'long'
|
want = 'obj '
|
||||||
class previous_list_view(aetools.NProperty):
|
class previous_list_view(aetools.NProperty):
|
||||||
"""previous list view - the last non-icon view (by name, by date, etc.) selected for the container (forgotten as soon as the window is closed and only available when the window is open) """
|
"""previous list view - the last non-icon view (by name, by date, etc.) selected for the container (forgotten as soon as the window is closed and only available when the window is open) """
|
||||||
which = 'svew'
|
which = 'svew'
|
||||||
want = 'enum'
|
want = 'enum'
|
||||||
class button_view_arrangement(aetools.NProperty):
|
|
||||||
"""button view arrangement - the property by which to keep icons arranged within a button view window """
|
|
||||||
which = 'barr'
|
|
||||||
want = 'earr'
|
|
||||||
class spatial_view_arrangement(aetools.NProperty):
|
|
||||||
"""spatial view arrangement - the property by which to keep icons arranged within a spatial view window """
|
|
||||||
which = 'iarr'
|
|
||||||
want = 'earr'
|
|
||||||
class sort_direction(aetools.NProperty):
|
|
||||||
"""sort direction - The direction in which the window is sorted """
|
|
||||||
which = 'sord'
|
|
||||||
want = 'sodr'
|
|
||||||
class calculates_folder_sizes(aetools.NProperty):
|
|
||||||
"""calculates folder sizes - Are folder sizes calculated and displayed in the window? (does not apply to suitcase windows) """
|
|
||||||
which = 'sfsz'
|
|
||||||
want = 'bool'
|
|
||||||
class shows_comments(aetools.NProperty):
|
class shows_comments(aetools.NProperty):
|
||||||
"""shows comments - Are comments displayed in the window? (does not apply to suitcases) """
|
"""shows comments - Are comments displayed in the window? (does not apply to suitcases) """
|
||||||
which = 'scom'
|
which = 'scom'
|
||||||
|
@ -92,10 +80,22 @@ class shows_version(aetools.NProperty):
|
||||||
"""shows version - Are file versions displayed in the window? (does not apply to suitcase windows) """
|
"""shows version - Are file versions displayed in the window? (does not apply to suitcase windows) """
|
||||||
which = 'svrs'
|
which = 'svrs'
|
||||||
want = 'bool'
|
want = 'bool'
|
||||||
|
class sort_direction(aetools.NProperty):
|
||||||
|
"""sort direction - The direction in which the window is sorted """
|
||||||
|
which = 'sord'
|
||||||
|
want = 'sodr'
|
||||||
|
class spatial_view_arrangement(aetools.NProperty):
|
||||||
|
"""spatial view arrangement - the property by which to keep icons arranged within a spatial view window """
|
||||||
|
which = 'iarr'
|
||||||
|
want = 'earr'
|
||||||
class uses_relative_dates(aetools.NProperty):
|
class uses_relative_dates(aetools.NProperty):
|
||||||
"""uses relative dates - Are relative dates (e.g., today, yesterday) shown in the window? """
|
"""uses relative dates - Are relative dates (e.g., today, yesterday) shown in the window? """
|
||||||
which = 'urdt'
|
which = 'urdt'
|
||||||
want = 'bool'
|
want = 'bool'
|
||||||
|
class view(aetools.NProperty):
|
||||||
|
"""view - the current view for the window (icon, name, date, etc.) """
|
||||||
|
which = 'pvew'
|
||||||
|
want = 'long'
|
||||||
|
|
||||||
container_windows = container_window
|
container_windows = container_window
|
||||||
|
|
||||||
|
@ -108,42 +108,18 @@ content_spaces = content_space
|
||||||
class information_window(aetools.ComponentItem):
|
class information_window(aetools.ComponentItem):
|
||||||
"""information window - An information window (opened by \xd2Get Info\xd3) """
|
"""information window - An information window (opened by \xd2Get Info\xd3) """
|
||||||
want = 'iwnd'
|
want = 'iwnd'
|
||||||
class current_panel(aetools.NProperty):
|
|
||||||
"""current panel - the current panel in the information window """
|
|
||||||
which = 'panl'
|
|
||||||
want = 'ipnl'
|
|
||||||
class comment(aetools.NProperty):
|
class comment(aetools.NProperty):
|
||||||
"""comment - the comment """
|
"""comment - the comment """
|
||||||
which = 'comt'
|
which = 'comt'
|
||||||
want = 'itxt'
|
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'
|
|
||||||
class creation_date(aetools.NProperty):
|
class creation_date(aetools.NProperty):
|
||||||
"""creation date - the date on which the item was created """
|
"""creation date - the date on which the item was created """
|
||||||
which = 'ascd'
|
which = 'ascd'
|
||||||
want = 'ldt '
|
want = 'ldt '
|
||||||
class modification_date(aetools.NProperty):
|
class current_panel(aetools.NProperty):
|
||||||
"""modification date - the date on which the item was last modified """
|
"""current panel - the current panel in the information window """
|
||||||
which = 'asmo'
|
which = 'panl'
|
||||||
want = 'ldt '
|
want = 'ipnl'
|
||||||
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 (only applies to information windows for applications) """
|
|
||||||
which = 'mprt'
|
|
||||||
want = 'long'
|
|
||||||
class preferred_size(aetools.NProperty):
|
|
||||||
"""preferred size - the memory size with which the application will be launched (only applies to information windows for applications) """
|
|
||||||
which = 'appt'
|
|
||||||
want = 'long'
|
|
||||||
class icon(aetools.NProperty):
|
class icon(aetools.NProperty):
|
||||||
"""icon - the icon bitmap of the item """
|
"""icon - the icon bitmap of the item """
|
||||||
which = 'iimg'
|
which = 'iimg'
|
||||||
|
@ -152,22 +128,46 @@ class locked(aetools.NProperty):
|
||||||
"""locked - Is the item locked (applies only to file and application information windows)? """
|
"""locked - Is the item locked (applies only to file and application information windows)? """
|
||||||
which = 'aslk'
|
which = 'aslk'
|
||||||
want = 'bool'
|
want = 'bool'
|
||||||
class stationery(aetools.NProperty):
|
class minimum_size(aetools.NProperty):
|
||||||
"""stationery - Is the item a stationery pad? """
|
"""minimum size - the smallest memory size with which the application can be launched (only applies to information windows for applications) """
|
||||||
which = 'pspd'
|
which = 'mprt'
|
||||||
want = 'bool'
|
want = 'long'
|
||||||
class warns_before_emptying(aetools.NProperty):
|
class modification_date(aetools.NProperty):
|
||||||
"""warns before emptying - Display a dialog when emptying the trash (only valid for trash info window)? """
|
"""modification date - the date on which the item was last modified """
|
||||||
which = 'warn'
|
which = 'asmo'
|
||||||
want = 'bool'
|
want = 'ldt '
|
||||||
|
class physical_size(aetools.NProperty):
|
||||||
|
"""physical size - the actual space used by the item on disk """
|
||||||
|
which = 'phys'
|
||||||
|
want = 'long'
|
||||||
|
class preferred_size(aetools.NProperty):
|
||||||
|
"""preferred size - the memory size with which the application will be launched (only applies to information windows for applications) """
|
||||||
|
which = 'appt'
|
||||||
|
want = 'long'
|
||||||
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 size(aetools.NProperty):
|
||||||
|
"""size - the logical size of the item """
|
||||||
|
which = 'ptsz'
|
||||||
|
want = 'long'
|
||||||
|
class stationery(aetools.NProperty):
|
||||||
|
"""stationery - Is the item a stationery pad? """
|
||||||
|
which = 'pspd'
|
||||||
|
want = 'bool'
|
||||||
|
class suggested_size(aetools.NProperty):
|
||||||
|
"""suggested size - the memory size with which the developer recommends the application be launched """
|
||||||
|
which = 'sprt'
|
||||||
|
want = 'long'
|
||||||
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'
|
||||||
want = 'itxt'
|
want = 'itxt'
|
||||||
|
class warns_before_emptying(aetools.NProperty):
|
||||||
|
"""warns before emptying - Display a dialog when emptying the trash (only valid for trash info window)? """
|
||||||
|
which = 'warn'
|
||||||
|
want = 'bool'
|
||||||
|
|
||||||
information_windows = information_window
|
information_windows = information_window
|
||||||
|
|
||||||
|
@ -184,42 +184,58 @@ view_options_windows = view_options_window
|
||||||
class window(aetools.ComponentItem):
|
class window(aetools.ComponentItem):
|
||||||
"""window - A window """
|
"""window - A window """
|
||||||
want = 'cwin'
|
want = 'cwin'
|
||||||
class position(aetools.NProperty):
|
|
||||||
"""position - the upper left position of the window """
|
|
||||||
which = 'posn'
|
|
||||||
want = 'QDpt'
|
|
||||||
class bounds(aetools.NProperty):
|
class bounds(aetools.NProperty):
|
||||||
"""bounds - the boundary rectangle for the window """
|
"""bounds - the boundary rectangle for the window """
|
||||||
which = 'pbnd'
|
which = 'pbnd'
|
||||||
want = 'qdrt'
|
want = 'qdrt'
|
||||||
class titled(aetools.NProperty):
|
|
||||||
"""titled - Does the window have a title bar? """
|
|
||||||
which = 'ptit'
|
|
||||||
want = 'bool'
|
|
||||||
class name(aetools.NProperty):
|
|
||||||
"""name - the name of the window """
|
|
||||||
which = 'pnam'
|
|
||||||
want = 'itxt'
|
|
||||||
class index(aetools.NProperty):
|
|
||||||
"""index - the number of the window in the front-to-back layer ordering """
|
|
||||||
which = 'pidx'
|
|
||||||
want = 'long'
|
|
||||||
class closeable(aetools.NProperty):
|
class closeable(aetools.NProperty):
|
||||||
"""closeable - Does the window have a close box? """
|
"""closeable - Does the window have a close box? """
|
||||||
which = 'hclb'
|
which = 'hclb'
|
||||||
want = 'bool'
|
want = 'bool'
|
||||||
|
class collapsed(aetools.NProperty):
|
||||||
|
"""collapsed - Is the window collapsed (only applies to open non-pop-up windows)? """
|
||||||
|
which = 'wshd'
|
||||||
|
want = 'bool'
|
||||||
class floating(aetools.NProperty):
|
class floating(aetools.NProperty):
|
||||||
"""floating - Does the window have a title bar? """
|
"""floating - Does the window have a title bar? """
|
||||||
which = 'isfl'
|
which = 'isfl'
|
||||||
want = 'bool'
|
want = 'bool'
|
||||||
|
class index(aetools.NProperty):
|
||||||
|
"""index - the number of the window in the front-to-back layer ordering """
|
||||||
|
which = 'pidx'
|
||||||
|
want = 'long'
|
||||||
class modal(aetools.NProperty):
|
class modal(aetools.NProperty):
|
||||||
"""modal - Is the window modal? """
|
"""modal - Is the window modal? """
|
||||||
which = 'pmod'
|
which = 'pmod'
|
||||||
want = 'bool'
|
want = 'bool'
|
||||||
|
class name(aetools.NProperty):
|
||||||
|
"""name - the name of the window """
|
||||||
|
which = 'pnam'
|
||||||
|
want = 'itxt'
|
||||||
|
class popup(aetools.NProperty):
|
||||||
|
"""popup - Is the window is a pop-up window? (only applies to open container windows in the Finder and can only be set when the Finder is the front application) """
|
||||||
|
which = 'drwr'
|
||||||
|
want = 'bool'
|
||||||
|
class position(aetools.NProperty):
|
||||||
|
"""position - the upper left position of the window """
|
||||||
|
which = 'posn'
|
||||||
|
want = 'QDpt'
|
||||||
|
class pulled_open(aetools.NProperty):
|
||||||
|
"""pulled open - Is the window pulled open (only applies to pop-up windows and can only be set when the Finder is the front application)? """
|
||||||
|
which = 'pull'
|
||||||
|
want = 'bool'
|
||||||
class resizable(aetools.NProperty):
|
class resizable(aetools.NProperty):
|
||||||
"""resizable - Is the window resizable? """
|
"""resizable - Is the window resizable? """
|
||||||
which = 'prsz'
|
which = 'prsz'
|
||||||
want = 'bool'
|
want = 'bool'
|
||||||
|
class titled(aetools.NProperty):
|
||||||
|
"""titled - Does the window have a title bar? """
|
||||||
|
which = 'ptit'
|
||||||
|
want = 'bool'
|
||||||
|
class visible(aetools.NProperty):
|
||||||
|
"""visible - Is the window visible (always true for open Finder windows)? """
|
||||||
|
which = 'pvis'
|
||||||
|
want = 'bool'
|
||||||
class zoomable(aetools.NProperty):
|
class zoomable(aetools.NProperty):
|
||||||
"""zoomable - Is the window zoomable? """
|
"""zoomable - Is the window zoomable? """
|
||||||
which = 'iszm'
|
which = 'iszm'
|
||||||
|
@ -232,22 +248,6 @@ class zoomed_full_size(aetools.NProperty):
|
||||||
"""zoomed full size - Is the window zoomed to the full size of the screen? (can only be set, not read, and only applies to open non-pop-up windows) """
|
"""zoomed full size - Is the window zoomed to the full size of the screen? (can only be set, not read, and only applies to open non-pop-up windows) """
|
||||||
which = 'zumf'
|
which = 'zumf'
|
||||||
want = 'bool'
|
want = 'bool'
|
||||||
class visible(aetools.NProperty):
|
|
||||||
"""visible - Is the window visible (always true for open Finder windows)? """
|
|
||||||
which = 'pvis'
|
|
||||||
want = 'bool'
|
|
||||||
class popup(aetools.NProperty):
|
|
||||||
"""popup - Is the window is a pop-up window? (only applies to open container windows in the Finder and can only be set when the Finder is the front application) """
|
|
||||||
which = 'drwr'
|
|
||||||
want = 'bool'
|
|
||||||
class pulled_open(aetools.NProperty):
|
|
||||||
"""pulled open - Is the window pulled open (only applies to pop-up windows and can only be set when the Finder is the front application)? """
|
|
||||||
which = 'pull'
|
|
||||||
want = 'bool'
|
|
||||||
class collapsed(aetools.NProperty):
|
|
||||||
"""collapsed - Is the window collapsed (only applies to open non-pop-up windows)? """
|
|
||||||
which = 'wshd'
|
|
||||||
want = 'bool'
|
|
||||||
|
|
||||||
windows = window
|
windows = window
|
||||||
clipping_window._superclassnames = ['window']
|
clipping_window._superclassnames = ['window']
|
||||||
|
@ -259,15 +259,12 @@ clipping_window._privelemdict = {
|
||||||
container_window._superclassnames = ['window']
|
container_window._superclassnames = ['window']
|
||||||
container_window._privpropdict = {
|
container_window._privpropdict = {
|
||||||
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_,
|
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_,
|
||||||
'container' : container,
|
|
||||||
'item' : item,
|
|
||||||
'has_custom_view_settings' : has_custom_view_settings,
|
|
||||||
'view' : view,
|
|
||||||
'previous_list_view' : previous_list_view,
|
|
||||||
'button_view_arrangement' : button_view_arrangement,
|
'button_view_arrangement' : button_view_arrangement,
|
||||||
'spatial_view_arrangement' : spatial_view_arrangement,
|
|
||||||
'sort_direction' : sort_direction,
|
|
||||||
'calculates_folder_sizes' : calculates_folder_sizes,
|
'calculates_folder_sizes' : calculates_folder_sizes,
|
||||||
|
'container' : container,
|
||||||
|
'has_custom_view_settings' : has_custom_view_settings,
|
||||||
|
'item' : item,
|
||||||
|
'previous_list_view' : previous_list_view,
|
||||||
'shows_comments' : shows_comments,
|
'shows_comments' : shows_comments,
|
||||||
'shows_creation_date' : shows_creation_date,
|
'shows_creation_date' : shows_creation_date,
|
||||||
'shows_kind' : shows_kind,
|
'shows_kind' : shows_kind,
|
||||||
|
@ -275,7 +272,10 @@ container_window._privpropdict = {
|
||||||
'shows_modification_date' : shows_modification_date,
|
'shows_modification_date' : shows_modification_date,
|
||||||
'shows_size' : shows_size,
|
'shows_size' : shows_size,
|
||||||
'shows_version' : shows_version,
|
'shows_version' : shows_version,
|
||||||
|
'sort_direction' : sort_direction,
|
||||||
|
'spatial_view_arrangement' : spatial_view_arrangement,
|
||||||
'uses_relative_dates' : uses_relative_dates,
|
'uses_relative_dates' : uses_relative_dates,
|
||||||
|
'view' : view,
|
||||||
}
|
}
|
||||||
container_window._privelemdict = {
|
container_window._privelemdict = {
|
||||||
}
|
}
|
||||||
|
@ -287,22 +287,22 @@ content_space._privelemdict = {
|
||||||
information_window._superclassnames = ['window']
|
information_window._superclassnames = ['window']
|
||||||
information_window._privpropdict = {
|
information_window._privpropdict = {
|
||||||
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_,
|
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_,
|
||||||
'item' : item,
|
|
||||||
'current_panel' : current_panel,
|
|
||||||
'comment' : comment,
|
'comment' : comment,
|
||||||
'size' : size,
|
|
||||||
'physical_size' : physical_size,
|
|
||||||
'creation_date' : creation_date,
|
'creation_date' : creation_date,
|
||||||
'modification_date' : modification_date,
|
'current_panel' : current_panel,
|
||||||
'suggested_size' : suggested_size,
|
|
||||||
'minimum_size' : minimum_size,
|
|
||||||
'preferred_size' : preferred_size,
|
|
||||||
'icon' : icon,
|
'icon' : icon,
|
||||||
|
'item' : item,
|
||||||
'locked' : locked,
|
'locked' : locked,
|
||||||
'stationery' : stationery,
|
'minimum_size' : minimum_size,
|
||||||
'warns_before_emptying' : warns_before_emptying,
|
'modification_date' : modification_date,
|
||||||
|
'physical_size' : physical_size,
|
||||||
|
'preferred_size' : preferred_size,
|
||||||
'product_version' : product_version,
|
'product_version' : product_version,
|
||||||
|
'size' : size,
|
||||||
|
'stationery' : stationery,
|
||||||
|
'suggested_size' : suggested_size,
|
||||||
'version' : version,
|
'version' : version,
|
||||||
|
'warns_before_emptying' : warns_before_emptying,
|
||||||
}
|
}
|
||||||
information_window._privelemdict = {
|
information_window._privelemdict = {
|
||||||
}
|
}
|
||||||
|
@ -322,22 +322,22 @@ view_options_window._privelemdict = {
|
||||||
}
|
}
|
||||||
window._superclassnames = []
|
window._superclassnames = []
|
||||||
window._privpropdict = {
|
window._privpropdict = {
|
||||||
'position' : position,
|
|
||||||
'bounds' : bounds,
|
'bounds' : bounds,
|
||||||
'titled' : titled,
|
|
||||||
'name' : name,
|
|
||||||
'index' : index,
|
|
||||||
'closeable' : closeable,
|
'closeable' : closeable,
|
||||||
|
'collapsed' : collapsed,
|
||||||
'floating' : floating,
|
'floating' : floating,
|
||||||
|
'index' : index,
|
||||||
'modal' : modal,
|
'modal' : modal,
|
||||||
|
'name' : name,
|
||||||
|
'popup' : popup,
|
||||||
|
'position' : position,
|
||||||
|
'pulled_open' : pulled_open,
|
||||||
'resizable' : resizable,
|
'resizable' : resizable,
|
||||||
|
'titled' : titled,
|
||||||
|
'visible' : visible,
|
||||||
'zoomable' : zoomable,
|
'zoomable' : zoomable,
|
||||||
'zoomed' : zoomed,
|
'zoomed' : zoomed,
|
||||||
'zoomed_full_size' : zoomed_full_size,
|
'zoomed_full_size' : zoomed_full_size,
|
||||||
'visible' : visible,
|
|
||||||
'popup' : popup,
|
|
||||||
'pulled_open' : pulled_open,
|
|
||||||
'collapsed' : collapsed,
|
|
||||||
}
|
}
|
||||||
window._privelemdict = {
|
window._privelemdict = {
|
||||||
}
|
}
|
||||||
|
@ -346,65 +346,65 @@ window._privelemdict = {
|
||||||
# Indices of types declared in this module
|
# Indices of types declared in this module
|
||||||
#
|
#
|
||||||
_classdeclarations = {
|
_classdeclarations = {
|
||||||
'pwnd' : preferences_window,
|
|
||||||
'cwin' : window,
|
'cwin' : window,
|
||||||
'vwnd' : view_options_window,
|
|
||||||
'lwnd' : clipping_window,
|
|
||||||
'cwnd' : container_window,
|
'cwnd' : container_window,
|
||||||
'dwnd' : content_space,
|
'dwnd' : content_space,
|
||||||
'iwnd' : information_window,
|
'iwnd' : information_window,
|
||||||
|
'lwnd' : clipping_window,
|
||||||
|
'pwnd' : preferences_window,
|
||||||
|
'vwnd' : view_options_window,
|
||||||
}
|
}
|
||||||
|
|
||||||
_propdeclarations = {
|
_propdeclarations = {
|
||||||
'prsz' : resizable,
|
|
||||||
'barr' : button_view_arrangement,
|
|
||||||
'pbnd' : bounds,
|
|
||||||
'appt' : preferred_size,
|
'appt' : preferred_size,
|
||||||
'iarr' : spatial_view_arrangement,
|
|
||||||
'hclb' : closeable,
|
|
||||||
'c@#^' : _3c_Inheritance_3e_,
|
|
||||||
'ver2' : product_version,
|
|
||||||
'cuss' : has_custom_view_settings,
|
|
||||||
'sprt' : suggested_size,
|
|
||||||
'zumf' : zoomed_full_size,
|
|
||||||
'urdt' : uses_relative_dates,
|
|
||||||
'panl' : current_panel,
|
|
||||||
'pmod' : modal,
|
|
||||||
'scom' : shows_comments,
|
|
||||||
'pspd' : stationery,
|
|
||||||
'aslk' : locked,
|
|
||||||
'pzum' : zoomed,
|
|
||||||
'iimg' : icon,
|
|
||||||
'mprt' : minimum_size,
|
|
||||||
'pnam' : name,
|
|
||||||
'ssiz' : shows_size,
|
|
||||||
'asmo' : modification_date,
|
|
||||||
'cobj' : item,
|
|
||||||
'ptit' : titled,
|
|
||||||
'posn' : position,
|
|
||||||
'vers' : version,
|
|
||||||
'phys' : physical_size,
|
|
||||||
'pull' : pulled_open,
|
|
||||||
'sknd' : shows_kind,
|
|
||||||
'svrs' : shows_version,
|
|
||||||
'svew' : previous_list_view,
|
|
||||||
'comt' : comment,
|
|
||||||
'iszm' : zoomable,
|
|
||||||
'sord' : sort_direction,
|
|
||||||
'ascd' : creation_date,
|
'ascd' : creation_date,
|
||||||
|
'aslk' : locked,
|
||||||
|
'asmo' : modification_date,
|
||||||
|
'barr' : button_view_arrangement,
|
||||||
|
'c@#^' : _3c_Inheritance_3e_,
|
||||||
|
'cobj' : item,
|
||||||
|
'comt' : comment,
|
||||||
'ctnr' : container,
|
'ctnr' : container,
|
||||||
'wshd' : collapsed,
|
'cuss' : has_custom_view_settings,
|
||||||
'slbl' : shows_label,
|
|
||||||
'warn' : warns_before_emptying,
|
|
||||||
'ptsz' : size,
|
|
||||||
'pvis' : visible,
|
|
||||||
'pidx' : index,
|
|
||||||
'isfl' : floating,
|
|
||||||
'drwr' : popup,
|
'drwr' : popup,
|
||||||
'sdat' : shows_modification_date,
|
'hclb' : closeable,
|
||||||
|
'iarr' : spatial_view_arrangement,
|
||||||
|
'iimg' : icon,
|
||||||
|
'isfl' : floating,
|
||||||
|
'iszm' : zoomable,
|
||||||
|
'mprt' : minimum_size,
|
||||||
|
'panl' : current_panel,
|
||||||
|
'pbnd' : bounds,
|
||||||
|
'phys' : physical_size,
|
||||||
|
'pidx' : index,
|
||||||
|
'pmod' : modal,
|
||||||
|
'pnam' : name,
|
||||||
|
'posn' : position,
|
||||||
|
'prsz' : resizable,
|
||||||
|
'pspd' : stationery,
|
||||||
|
'ptit' : titled,
|
||||||
|
'ptsz' : size,
|
||||||
|
'pull' : pulled_open,
|
||||||
'pvew' : view,
|
'pvew' : view,
|
||||||
'sfsz' : calculates_folder_sizes,
|
'pvis' : visible,
|
||||||
|
'pzum' : zoomed,
|
||||||
'scda' : shows_creation_date,
|
'scda' : shows_creation_date,
|
||||||
|
'scom' : shows_comments,
|
||||||
|
'sdat' : shows_modification_date,
|
||||||
|
'sfsz' : calculates_folder_sizes,
|
||||||
|
'sknd' : shows_kind,
|
||||||
|
'slbl' : shows_label,
|
||||||
|
'sord' : sort_direction,
|
||||||
|
'sprt' : suggested_size,
|
||||||
|
'ssiz' : shows_size,
|
||||||
|
'svew' : previous_list_view,
|
||||||
|
'svrs' : shows_version,
|
||||||
|
'urdt' : uses_relative_dates,
|
||||||
|
'ver2' : product_version,
|
||||||
|
'vers' : version,
|
||||||
|
'warn' : warns_before_emptying,
|
||||||
|
'wshd' : collapsed,
|
||||||
|
'zumf' : zoomed_full_size,
|
||||||
}
|
}
|
||||||
|
|
||||||
_compdeclarations = {
|
_compdeclarations = {
|
||||||
|
|
|
@ -76,19 +76,6 @@ 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(accessory_suitcase)
|
|
||||||
getbaseclasses(preferences)
|
|
||||||
getbaseclasses(sharable_container)
|
|
||||||
getbaseclasses(application)
|
|
||||||
getbaseclasses(trash_2d_object)
|
|
||||||
getbaseclasses(accessory_process)
|
|
||||||
getbaseclasses(window)
|
|
||||||
getbaseclasses(information_window)
|
|
||||||
getbaseclasses(process)
|
|
||||||
getbaseclasses(application_file)
|
|
||||||
getbaseclasses(internet_location)
|
|
||||||
getbaseclasses(container_window)
|
|
||||||
getbaseclasses(item)
|
|
||||||
getbaseclasses(StdSuites.Type_Names_Suite.small_integer)
|
getbaseclasses(StdSuites.Type_Names_Suite.small_integer)
|
||||||
getbaseclasses(StdSuites.Type_Names_Suite.RGB16_color)
|
getbaseclasses(StdSuites.Type_Names_Suite.RGB16_color)
|
||||||
getbaseclasses(StdSuites.Type_Names_Suite.system_dictionary)
|
getbaseclasses(StdSuites.Type_Names_Suite.system_dictionary)
|
||||||
|
@ -129,6 +116,20 @@ getbaseclasses(StdSuites.Type_Names_Suite.null)
|
||||||
getbaseclasses(StdSuites.Type_Names_Suite.target_id)
|
getbaseclasses(StdSuites.Type_Names_Suite.target_id)
|
||||||
getbaseclasses(StdSuites.Type_Names_Suite.point)
|
getbaseclasses(StdSuites.Type_Names_Suite.point)
|
||||||
getbaseclasses(StdSuites.Type_Names_Suite.bounding_rectangle)
|
getbaseclasses(StdSuites.Type_Names_Suite.bounding_rectangle)
|
||||||
|
getbaseclasses(accessory_suitcase)
|
||||||
|
getbaseclasses(preferences)
|
||||||
|
getbaseclasses(sharable_container)
|
||||||
|
getbaseclasses(application)
|
||||||
|
getbaseclasses(trash_2d_object)
|
||||||
|
getbaseclasses(accessory_process)
|
||||||
|
getbaseclasses(window)
|
||||||
|
getbaseclasses(information_window)
|
||||||
|
getbaseclasses(process)
|
||||||
|
getbaseclasses(application_file)
|
||||||
|
getbaseclasses(internet_location)
|
||||||
|
getbaseclasses(container_window)
|
||||||
|
getbaseclasses(item)
|
||||||
|
getbaseclasses(item)
|
||||||
getbaseclasses(trash_2d_object)
|
getbaseclasses(trash_2d_object)
|
||||||
getbaseclasses(desktop_2d_object)
|
getbaseclasses(desktop_2d_object)
|
||||||
getbaseclasses(sharable_container)
|
getbaseclasses(sharable_container)
|
||||||
|
@ -136,9 +137,6 @@ getbaseclasses(sharing_privileges)
|
||||||
getbaseclasses(disk)
|
getbaseclasses(disk)
|
||||||
getbaseclasses(folder)
|
getbaseclasses(folder)
|
||||||
getbaseclasses(container)
|
getbaseclasses(container)
|
||||||
getbaseclasses(application)
|
|
||||||
getbaseclasses(special_folders)
|
|
||||||
getbaseclasses(item)
|
|
||||||
getbaseclasses(sound_file)
|
getbaseclasses(sound_file)
|
||||||
getbaseclasses(font_file)
|
getbaseclasses(font_file)
|
||||||
getbaseclasses(internet_location_file)
|
getbaseclasses(internet_location_file)
|
||||||
|
@ -152,6 +150,8 @@ getbaseclasses(application_file)
|
||||||
getbaseclasses(suitcase)
|
getbaseclasses(suitcase)
|
||||||
getbaseclasses(document_file)
|
getbaseclasses(document_file)
|
||||||
getbaseclasses(package)
|
getbaseclasses(package)
|
||||||
|
getbaseclasses(application)
|
||||||
|
getbaseclasses(special_folders)
|
||||||
getbaseclasses(preferences_window)
|
getbaseclasses(preferences_window)
|
||||||
getbaseclasses(view_options_window)
|
getbaseclasses(view_options_window)
|
||||||
getbaseclasses(window)
|
getbaseclasses(window)
|
||||||
|
@ -159,6 +159,17 @@ getbaseclasses(container_window)
|
||||||
getbaseclasses(content_space)
|
getbaseclasses(content_space)
|
||||||
getbaseclasses(information_window)
|
getbaseclasses(information_window)
|
||||||
getbaseclasses(clipping_window)
|
getbaseclasses(clipping_window)
|
||||||
|
getbaseclasses(status_window)
|
||||||
|
getbaseclasses(application)
|
||||||
|
getbaseclasses(sharing_window)
|
||||||
|
getbaseclasses(control_panel)
|
||||||
|
getbaseclasses(process)
|
||||||
|
getbaseclasses(item)
|
||||||
|
getbaseclasses(file)
|
||||||
|
getbaseclasses(sharable_container)
|
||||||
|
getbaseclasses(container_window)
|
||||||
|
getbaseclasses(container)
|
||||||
|
getbaseclasses(information_window)
|
||||||
getbaseclasses(process)
|
getbaseclasses(process)
|
||||||
getbaseclasses(desk_accessory_process)
|
getbaseclasses(desk_accessory_process)
|
||||||
getbaseclasses(application_process)
|
getbaseclasses(application_process)
|
||||||
|
@ -246,35 +257,11 @@ getbaseclasses(StdSuites.Type_Names_Suite.null)
|
||||||
getbaseclasses(StdSuites.Type_Names_Suite.target_id)
|
getbaseclasses(StdSuites.Type_Names_Suite.target_id)
|
||||||
getbaseclasses(StdSuites.Type_Names_Suite.point)
|
getbaseclasses(StdSuites.Type_Names_Suite.point)
|
||||||
getbaseclasses(StdSuites.Type_Names_Suite.bounding_rectangle)
|
getbaseclasses(StdSuites.Type_Names_Suite.bounding_rectangle)
|
||||||
getbaseclasses(status_window)
|
|
||||||
getbaseclasses(application)
|
|
||||||
getbaseclasses(sharing_window)
|
|
||||||
getbaseclasses(control_panel)
|
|
||||||
getbaseclasses(process)
|
|
||||||
getbaseclasses(item)
|
|
||||||
getbaseclasses(file)
|
|
||||||
getbaseclasses(sharable_container)
|
|
||||||
getbaseclasses(container_window)
|
|
||||||
getbaseclasses(container)
|
|
||||||
getbaseclasses(information_window)
|
|
||||||
|
|
||||||
#
|
#
|
||||||
# Indices of types declared in this module
|
# Indices of types declared in this module
|
||||||
#
|
#
|
||||||
_classdeclarations = {
|
_classdeclarations = {
|
||||||
'dsut' : accessory_suitcase,
|
|
||||||
'cprf' : preferences,
|
|
||||||
'sctr' : sharable_container,
|
|
||||||
'capp' : application,
|
|
||||||
'ctrs' : trash_2d_object,
|
|
||||||
'pcda' : accessory_process,
|
|
||||||
'cwin' : window,
|
|
||||||
'iwnd' : information_window,
|
|
||||||
'prcs' : process,
|
|
||||||
'appf' : application_file,
|
|
||||||
'inlf' : internet_location,
|
|
||||||
'cwnd' : container_window,
|
|
||||||
'cobj' : item,
|
|
||||||
'shor' : StdSuites.Type_Names_Suite.small_integer,
|
'shor' : StdSuites.Type_Names_Suite.small_integer,
|
||||||
'tr16' : StdSuites.Type_Names_Suite.RGB16_color,
|
'tr16' : StdSuites.Type_Names_Suite.RGB16_color,
|
||||||
'aeut' : StdSuites.Type_Names_Suite.system_dictionary,
|
'aeut' : StdSuites.Type_Names_Suite.system_dictionary,
|
||||||
|
@ -315,6 +302,20 @@ _classdeclarations = {
|
||||||
'targ' : StdSuites.Type_Names_Suite.target_id,
|
'targ' : StdSuites.Type_Names_Suite.target_id,
|
||||||
'QDpt' : StdSuites.Type_Names_Suite.point,
|
'QDpt' : StdSuites.Type_Names_Suite.point,
|
||||||
'qdrt' : StdSuites.Type_Names_Suite.bounding_rectangle,
|
'qdrt' : StdSuites.Type_Names_Suite.bounding_rectangle,
|
||||||
|
'dsut' : accessory_suitcase,
|
||||||
|
'cprf' : preferences,
|
||||||
|
'sctr' : sharable_container,
|
||||||
|
'capp' : application,
|
||||||
|
'ctrs' : trash_2d_object,
|
||||||
|
'pcda' : accessory_process,
|
||||||
|
'cwin' : window,
|
||||||
|
'iwnd' : information_window,
|
||||||
|
'prcs' : process,
|
||||||
|
'appf' : application_file,
|
||||||
|
'inlf' : internet_location,
|
||||||
|
'cwnd' : container_window,
|
||||||
|
'cobj' : item,
|
||||||
|
'cobj' : item,
|
||||||
'ctrs' : trash_2d_object,
|
'ctrs' : trash_2d_object,
|
||||||
'cdsk' : desktop_2d_object,
|
'cdsk' : desktop_2d_object,
|
||||||
'sctr' : sharable_container,
|
'sctr' : sharable_container,
|
||||||
|
@ -322,9 +323,6 @@ _classdeclarations = {
|
||||||
'cdis' : disk,
|
'cdis' : disk,
|
||||||
'cfol' : folder,
|
'cfol' : folder,
|
||||||
'ctnr' : container,
|
'ctnr' : container,
|
||||||
'capp' : application,
|
|
||||||
'spfl' : special_folders,
|
|
||||||
'cobj' : item,
|
|
||||||
'sndf' : sound_file,
|
'sndf' : sound_file,
|
||||||
'fntf' : font_file,
|
'fntf' : font_file,
|
||||||
'inlf' : internet_location_file,
|
'inlf' : internet_location_file,
|
||||||
|
@ -338,6 +336,8 @@ _classdeclarations = {
|
||||||
'stcs' : suitcase,
|
'stcs' : suitcase,
|
||||||
'docf' : document_file,
|
'docf' : document_file,
|
||||||
'pack' : package,
|
'pack' : package,
|
||||||
|
'capp' : application,
|
||||||
|
'spfl' : special_folders,
|
||||||
'pwnd' : preferences_window,
|
'pwnd' : preferences_window,
|
||||||
'vwnd' : view_options_window,
|
'vwnd' : view_options_window,
|
||||||
'cwin' : window,
|
'cwin' : window,
|
||||||
|
@ -345,6 +345,17 @@ _classdeclarations = {
|
||||||
'dwnd' : content_space,
|
'dwnd' : content_space,
|
||||||
'iwnd' : information_window,
|
'iwnd' : information_window,
|
||||||
'lwnd' : clipping_window,
|
'lwnd' : clipping_window,
|
||||||
|
'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,
|
||||||
|
'iwnd' : information_window,
|
||||||
'prcs' : process,
|
'prcs' : process,
|
||||||
'pcda' : desk_accessory_process,
|
'pcda' : desk_accessory_process,
|
||||||
'pcap' : application_process,
|
'pcap' : application_process,
|
||||||
|
@ -432,17 +443,6 @@ _classdeclarations = {
|
||||||
'targ' : StdSuites.Type_Names_Suite.target_id,
|
'targ' : StdSuites.Type_Names_Suite.target_id,
|
||||||
'QDpt' : StdSuites.Type_Names_Suite.point,
|
'QDpt' : StdSuites.Type_Names_Suite.point,
|
||||||
'qdrt' : StdSuites.Type_Names_Suite.bounding_rectangle,
|
'qdrt' : StdSuites.Type_Names_Suite.bounding_rectangle,
|
||||||
'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,
|
|
||||||
'iwnd' : information_window,
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -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,
|
||||||
}
|
}
|
||||||
|
|
|
@ -117,34 +117,58 @@ class kiosk_mode(aetools.NProperty):
|
||||||
class window(aetools.ComponentItem):
|
class window(aetools.ComponentItem):
|
||||||
"""window - A Window """
|
"""window - A Window """
|
||||||
want = 'cwin'
|
want = 'cwin'
|
||||||
|
class URL(aetools.NProperty):
|
||||||
|
"""URL - Current URL """
|
||||||
|
which = 'curl'
|
||||||
|
want = 'TEXT'
|
||||||
class bounds(aetools.NProperty):
|
class bounds(aetools.NProperty):
|
||||||
"""bounds - the boundary rectangle for the window """
|
"""bounds - the boundary rectangle for the window """
|
||||||
which = 'pbnd'
|
which = 'pbnd'
|
||||||
want = 'qdrt'
|
want = 'qdrt'
|
||||||
|
class busy(aetools.NProperty):
|
||||||
|
"""busy - Is window loading something right now. 2, window is busy and will reject load requests. 1, window is busy, but will interrupt outstanding loads """
|
||||||
|
which = 'busy'
|
||||||
|
want = 'long'
|
||||||
class closeable(aetools.NProperty):
|
class closeable(aetools.NProperty):
|
||||||
"""closeable - Does the window have a close box? """
|
"""closeable - Does the window have a close box? """
|
||||||
which = 'hclb'
|
which = 'hclb'
|
||||||
want = 'bool'
|
want = 'bool'
|
||||||
class titled(aetools.NProperty):
|
class floating(aetools.NProperty):
|
||||||
"""titled - Does the window have a title bar? """
|
"""floating - Does the window float? """
|
||||||
which = 'ptit'
|
which = 'isfl'
|
||||||
want = 'bool'
|
want = 'bool'
|
||||||
class index(aetools.NProperty):
|
class index(aetools.NProperty):
|
||||||
"""index - the number of the window """
|
"""index - the number of the window """
|
||||||
which = 'pidx'
|
which = 'pidx'
|
||||||
want = 'long'
|
want = 'long'
|
||||||
class floating(aetools.NProperty):
|
|
||||||
"""floating - Does the window float? """
|
|
||||||
which = 'isfl'
|
|
||||||
want = 'bool'
|
|
||||||
class modal(aetools.NProperty):
|
class modal(aetools.NProperty):
|
||||||
"""modal - Is the window modal? """
|
"""modal - Is the window modal? """
|
||||||
which = 'pmod'
|
which = 'pmod'
|
||||||
want = 'bool'
|
want = 'bool'
|
||||||
|
class name(aetools.NProperty):
|
||||||
|
"""name - the title of the window """
|
||||||
|
which = 'pnam'
|
||||||
|
want = 'itxt'
|
||||||
|
class position(aetools.NProperty):
|
||||||
|
"""position - upper left coordinates of window """
|
||||||
|
which = 'ppos'
|
||||||
|
want = 'QDpt'
|
||||||
class resizable(aetools.NProperty):
|
class resizable(aetools.NProperty):
|
||||||
"""resizable - Is the window resizable? """
|
"""resizable - Is the window resizable? """
|
||||||
which = 'prsz'
|
which = 'prsz'
|
||||||
want = 'bool'
|
want = 'bool'
|
||||||
|
class titled(aetools.NProperty):
|
||||||
|
"""titled - Does the window have a title bar? """
|
||||||
|
which = 'ptit'
|
||||||
|
want = 'bool'
|
||||||
|
class unique_ID(aetools.NProperty):
|
||||||
|
"""unique ID - Window\xd5s unique ID (a bridge between WWW! suite window id\xd5s and standard AE windows) """
|
||||||
|
which = 'wiid'
|
||||||
|
want = 'long'
|
||||||
|
class visible(aetools.NProperty):
|
||||||
|
"""visible - is the window visible? """
|
||||||
|
which = 'pvis'
|
||||||
|
want = 'bool'
|
||||||
class zoomable(aetools.NProperty):
|
class zoomable(aetools.NProperty):
|
||||||
"""zoomable - Is the window zoomable? """
|
"""zoomable - Is the window zoomable? """
|
||||||
which = 'iszm'
|
which = 'iszm'
|
||||||
|
@ -153,30 +177,6 @@ class zoomed(aetools.NProperty):
|
||||||
"""zoomed - Is the window zoomed? """
|
"""zoomed - Is the window zoomed? """
|
||||||
which = 'pzum'
|
which = 'pzum'
|
||||||
want = 'bool'
|
want = 'bool'
|
||||||
class name(aetools.NProperty):
|
|
||||||
"""name - the title of the window """
|
|
||||||
which = 'pnam'
|
|
||||||
want = 'itxt'
|
|
||||||
class visible(aetools.NProperty):
|
|
||||||
"""visible - is the window visible? """
|
|
||||||
which = 'pvis'
|
|
||||||
want = 'bool'
|
|
||||||
class position(aetools.NProperty):
|
|
||||||
"""position - upper left coordinates of window """
|
|
||||||
which = 'ppos'
|
|
||||||
want = 'QDpt'
|
|
||||||
class URL(aetools.NProperty):
|
|
||||||
"""URL - Current URL """
|
|
||||||
which = 'curl'
|
|
||||||
want = 'TEXT'
|
|
||||||
class unique_ID(aetools.NProperty):
|
|
||||||
"""unique ID - Window\xd5s unique ID (a bridge between WWW! suite window id\xd5s and standard AE windows) """
|
|
||||||
which = 'wiid'
|
|
||||||
want = 'long'
|
|
||||||
class busy(aetools.NProperty):
|
|
||||||
"""busy - Is window loading something right now. 2, window is busy and will reject load requests. 1, window is busy, but will interrupt outstanding loads """
|
|
||||||
which = 'busy'
|
|
||||||
want = 'long'
|
|
||||||
application._superclassnames = []
|
application._superclassnames = []
|
||||||
application._privpropdict = {
|
application._privpropdict = {
|
||||||
'alert_application' : alert_application,
|
'alert_application' : alert_application,
|
||||||
|
@ -187,21 +187,21 @@ application._privelemdict = {
|
||||||
}
|
}
|
||||||
window._superclassnames = []
|
window._superclassnames = []
|
||||||
window._privpropdict = {
|
window._privpropdict = {
|
||||||
|
'URL' : URL,
|
||||||
'bounds' : bounds,
|
'bounds' : bounds,
|
||||||
|
'busy' : busy,
|
||||||
'closeable' : closeable,
|
'closeable' : closeable,
|
||||||
'titled' : titled,
|
|
||||||
'index' : index,
|
|
||||||
'floating' : floating,
|
'floating' : floating,
|
||||||
|
'index' : index,
|
||||||
'modal' : modal,
|
'modal' : modal,
|
||||||
|
'name' : name,
|
||||||
|
'position' : position,
|
||||||
'resizable' : resizable,
|
'resizable' : resizable,
|
||||||
|
'titled' : titled,
|
||||||
|
'unique_ID' : unique_ID,
|
||||||
|
'visible' : visible,
|
||||||
'zoomable' : zoomable,
|
'zoomable' : zoomable,
|
||||||
'zoomed' : zoomed,
|
'zoomed' : zoomed,
|
||||||
'name' : name,
|
|
||||||
'visible' : visible,
|
|
||||||
'position' : position,
|
|
||||||
'URL' : URL,
|
|
||||||
'unique_ID' : unique_ID,
|
|
||||||
'busy' : busy,
|
|
||||||
}
|
}
|
||||||
window._privelemdict = {
|
window._privelemdict = {
|
||||||
}
|
}
|
||||||
|
@ -210,28 +210,28 @@ window._privelemdict = {
|
||||||
# Indices of types declared in this module
|
# Indices of types declared in this module
|
||||||
#
|
#
|
||||||
_classdeclarations = {
|
_classdeclarations = {
|
||||||
'cwin' : window,
|
|
||||||
'capp' : application,
|
'capp' : application,
|
||||||
|
'cwin' : window,
|
||||||
}
|
}
|
||||||
|
|
||||||
_propdeclarations = {
|
_propdeclarations = {
|
||||||
'prsz' : resizable,
|
|
||||||
'busy' : busy,
|
|
||||||
'KOSK' : kiosk_mode,
|
|
||||||
'pvis' : visible,
|
|
||||||
'hclb' : closeable,
|
|
||||||
'pmod' : modal,
|
|
||||||
'wiid' : unique_ID,
|
|
||||||
'pbnd' : bounds,
|
|
||||||
'iszm' : zoomable,
|
|
||||||
'ALAP' : alert_application,
|
'ALAP' : alert_application,
|
||||||
'pidx' : index,
|
'KOSK' : kiosk_mode,
|
||||||
|
'busy' : busy,
|
||||||
|
'curl' : URL,
|
||||||
|
'hclb' : closeable,
|
||||||
'isfl' : floating,
|
'isfl' : floating,
|
||||||
|
'iszm' : zoomable,
|
||||||
|
'pbnd' : bounds,
|
||||||
|
'pidx' : index,
|
||||||
|
'pmod' : modal,
|
||||||
'pnam' : name,
|
'pnam' : name,
|
||||||
'ppos' : position,
|
'ppos' : position,
|
||||||
'curl' : URL,
|
'prsz' : resizable,
|
||||||
'pzum' : zoomed,
|
|
||||||
'ptit' : titled,
|
'ptit' : titled,
|
||||||
|
'pvis' : visible,
|
||||||
|
'pzum' : zoomed,
|
||||||
|
'wiid' : unique_ID,
|
||||||
}
|
}
|
||||||
|
|
||||||
_compdeclarations = {
|
_compdeclarations = {
|
||||||
|
|
|
@ -19,10 +19,6 @@ class Text_Events(Text_Suite_Events):
|
||||||
class styleset(aetools.ComponentItem):
|
class styleset(aetools.ComponentItem):
|
||||||
"""styleset - A style \xd2set\xd3 that may be used repeatedly in text objects. """
|
"""styleset - A style \xd2set\xd3 that may be used repeatedly in text objects. """
|
||||||
want = 'stys'
|
want = 'stys'
|
||||||
class name(aetools.NProperty):
|
|
||||||
"""name - style name """
|
|
||||||
which = 'pnam'
|
|
||||||
want = 'TEXT'
|
|
||||||
class color(aetools.NProperty):
|
class color(aetools.NProperty):
|
||||||
"""color - the color """
|
"""color - the color """
|
||||||
which = 'colr'
|
which = 'colr'
|
||||||
|
@ -31,28 +27,28 @@ class font(aetools.NProperty):
|
||||||
"""font - font name """
|
"""font - font name """
|
||||||
which = 'font'
|
which = 'font'
|
||||||
want = 'TEXT'
|
want = 'TEXT'
|
||||||
|
class name(aetools.NProperty):
|
||||||
|
"""name - style name """
|
||||||
|
which = 'pnam'
|
||||||
|
want = 'TEXT'
|
||||||
class size(aetools.NProperty):
|
class size(aetools.NProperty):
|
||||||
"""size - the size in points """
|
"""size - the size in points """
|
||||||
which = 'ptsz'
|
which = 'ptsz'
|
||||||
want = 'long'
|
want = 'long'
|
||||||
class writing_code(aetools.NProperty):
|
|
||||||
"""writing code - the script system and language """
|
|
||||||
which = 'psct'
|
|
||||||
want = 'tsty'
|
|
||||||
class style(aetools.NProperty):
|
class style(aetools.NProperty):
|
||||||
"""style - the text styles or face attributes """
|
"""style - the text styles or face attributes """
|
||||||
which = 'txst'
|
which = 'txst'
|
||||||
want = 'tsty'
|
want = 'tsty'
|
||||||
|
class writing_code(aetools.NProperty):
|
||||||
|
"""writing code - the script system and language """
|
||||||
|
which = 'psct'
|
||||||
|
want = 'tsty'
|
||||||
|
|
||||||
stylesets = styleset
|
stylesets = styleset
|
||||||
|
|
||||||
class text(aetools.ComponentItem):
|
class text(aetools.ComponentItem):
|
||||||
"""text - independent text view objects """
|
"""text - independent text view objects """
|
||||||
want = 'ctxt'
|
want = 'ctxt'
|
||||||
class updateLevel(aetools.NProperty):
|
|
||||||
"""updateLevel - updating level. Can only be incremented or decremented. Do so only in a try block -- if the level is greater than zero, visual text updating will cease. """
|
|
||||||
which = 'pUpL'
|
|
||||||
want = 'long'
|
|
||||||
class beginning(aetools.NProperty):
|
class beginning(aetools.NProperty):
|
||||||
"""beginning - Beginning of element """
|
"""beginning - Beginning of element """
|
||||||
which = 'bgng'
|
which = 'bgng'
|
||||||
|
@ -69,25 +65,29 @@ class justbehind(aetools.NProperty):
|
||||||
"""justbehind - Immediately after element """
|
"""justbehind - Immediately after element """
|
||||||
which = 'pAft'
|
which = 'pAft'
|
||||||
want = 'obj '
|
want = 'obj '
|
||||||
|
class updateLevel(aetools.NProperty):
|
||||||
|
"""updateLevel - updating level. Can only be incremented or decremented. Do so only in a try block -- if the level is greater than zero, visual text updating will cease. """
|
||||||
|
which = 'pUpL'
|
||||||
|
want = 'long'
|
||||||
# element 'stys' as ['indx', 'name']
|
# element 'stys' as ['indx', 'name']
|
||||||
styleset._superclassnames = []
|
styleset._superclassnames = []
|
||||||
styleset._privpropdict = {
|
styleset._privpropdict = {
|
||||||
'name' : name,
|
|
||||||
'color' : color,
|
'color' : color,
|
||||||
'font' : font,
|
'font' : font,
|
||||||
|
'name' : name,
|
||||||
'size' : size,
|
'size' : size,
|
||||||
'writing_code' : writing_code,
|
|
||||||
'style' : style,
|
'style' : style,
|
||||||
|
'writing_code' : writing_code,
|
||||||
}
|
}
|
||||||
styleset._privelemdict = {
|
styleset._privelemdict = {
|
||||||
}
|
}
|
||||||
text._superclassnames = []
|
text._superclassnames = []
|
||||||
text._privpropdict = {
|
text._privpropdict = {
|
||||||
'updateLevel' : updateLevel,
|
|
||||||
'beginning' : beginning,
|
'beginning' : beginning,
|
||||||
'end' : end,
|
'end' : end,
|
||||||
'infront' : infront,
|
'infront' : infront,
|
||||||
'justbehind' : justbehind,
|
'justbehind' : justbehind,
|
||||||
|
'updateLevel' : updateLevel,
|
||||||
}
|
}
|
||||||
text._privelemdict = {
|
text._privelemdict = {
|
||||||
'styleset' : styleset,
|
'styleset' : styleset,
|
||||||
|
@ -97,22 +97,22 @@ text._privelemdict = {
|
||||||
# Indices of types declared in this module
|
# Indices of types declared in this module
|
||||||
#
|
#
|
||||||
_classdeclarations = {
|
_classdeclarations = {
|
||||||
'stys' : styleset,
|
|
||||||
'ctxt' : text,
|
'ctxt' : text,
|
||||||
|
'stys' : styleset,
|
||||||
}
|
}
|
||||||
|
|
||||||
_propdeclarations = {
|
_propdeclarations = {
|
||||||
'ptsz' : size,
|
|
||||||
'bgng' : beginning,
|
'bgng' : beginning,
|
||||||
'colr' : color,
|
'colr' : color,
|
||||||
'txst' : style,
|
|
||||||
'psct' : writing_code,
|
|
||||||
'pAft' : justbehind,
|
|
||||||
'font' : font,
|
|
||||||
'end ' : end,
|
'end ' : end,
|
||||||
|
'font' : font,
|
||||||
|
'pAft' : justbehind,
|
||||||
|
'pBef' : infront,
|
||||||
'pUpL' : updateLevel,
|
'pUpL' : updateLevel,
|
||||||
'pnam' : name,
|
'pnam' : name,
|
||||||
'pBef' : infront,
|
'psct' : writing_code,
|
||||||
|
'ptsz' : size,
|
||||||
|
'txst' : style,
|
||||||
}
|
}
|
||||||
|
|
||||||
_compdeclarations = {
|
_compdeclarations = {
|
||||||
|
|
|
@ -863,58 +863,58 @@ class app(aetools.ComponentItem):
|
||||||
want = 'capp'
|
want = 'capp'
|
||||||
|
|
||||||
application = app
|
application = app
|
||||||
class result(aetools.NProperty):
|
class AppleScript(aetools.NProperty):
|
||||||
"""result - the last result of evaluation """
|
"""AppleScript - the top-level script object """
|
||||||
which = 'rslt'
|
which = 'ascr'
|
||||||
want = '****'
|
want = 'scpt'
|
||||||
class space(aetools.NProperty):
|
class days(aetools.NProperty):
|
||||||
"""space - a space character """
|
"""days - the number of seconds in a day """
|
||||||
which = 'spac'
|
which = 'days'
|
||||||
want = 'cha '
|
|
||||||
class return_(aetools.NProperty):
|
|
||||||
"""return - a return character """
|
|
||||||
which = 'ret '
|
|
||||||
want = 'cha '
|
|
||||||
class tab(aetools.NProperty):
|
|
||||||
"""tab - a tab character """
|
|
||||||
which = 'tab '
|
|
||||||
want = 'cha '
|
|
||||||
class minutes(aetools.NProperty):
|
|
||||||
"""minutes - the number of seconds in a minute """
|
|
||||||
which = 'min '
|
|
||||||
want = 'long'
|
want = 'long'
|
||||||
class hours(aetools.NProperty):
|
class hours(aetools.NProperty):
|
||||||
"""hours - the number of seconds in an hour """
|
"""hours - the number of seconds in an hour """
|
||||||
which = 'hour'
|
which = 'hour'
|
||||||
want = 'long'
|
want = 'long'
|
||||||
class days(aetools.NProperty):
|
class minutes(aetools.NProperty):
|
||||||
"""days - the number of seconds in a day """
|
"""minutes - the number of seconds in a minute """
|
||||||
which = 'days'
|
which = 'min '
|
||||||
want = 'long'
|
|
||||||
class weeks(aetools.NProperty):
|
|
||||||
"""weeks - the number of seconds in a week """
|
|
||||||
which = 'week'
|
|
||||||
want = 'long'
|
want = 'long'
|
||||||
class pi(aetools.NProperty):
|
class pi(aetools.NProperty):
|
||||||
"""pi - the constant pi """
|
"""pi - the constant pi """
|
||||||
which = 'pi '
|
which = 'pi '
|
||||||
want = 'doub'
|
want = 'doub'
|
||||||
class print_length(aetools.NProperty):
|
|
||||||
"""print length - the maximum length to print """
|
|
||||||
which = 'prln'
|
|
||||||
want = 'long'
|
|
||||||
class print_depth(aetools.NProperty):
|
class print_depth(aetools.NProperty):
|
||||||
"""print depth - the maximum depth to print """
|
"""print depth - the maximum depth to print """
|
||||||
which = 'prdp'
|
which = 'prdp'
|
||||||
want = 'long'
|
want = 'long'
|
||||||
|
class print_length(aetools.NProperty):
|
||||||
|
"""print length - the maximum length to print """
|
||||||
|
which = 'prln'
|
||||||
|
want = 'long'
|
||||||
|
class result(aetools.NProperty):
|
||||||
|
"""result - the last result of evaluation """
|
||||||
|
which = 'rslt'
|
||||||
|
want = '****'
|
||||||
|
class return_(aetools.NProperty):
|
||||||
|
"""return - a return character """
|
||||||
|
which = 'ret '
|
||||||
|
want = 'cha '
|
||||||
|
class space(aetools.NProperty):
|
||||||
|
"""space - a space character """
|
||||||
|
which = 'spac'
|
||||||
|
want = 'cha '
|
||||||
|
class tab(aetools.NProperty):
|
||||||
|
"""tab - a tab character """
|
||||||
|
which = 'tab '
|
||||||
|
want = 'cha '
|
||||||
class text_item_delimiters(aetools.NProperty):
|
class text_item_delimiters(aetools.NProperty):
|
||||||
"""text item delimiters - the text item delimiters of a string """
|
"""text item delimiters - the text item delimiters of a string """
|
||||||
which = 'txdl'
|
which = 'txdl'
|
||||||
want = 'list'
|
want = 'list'
|
||||||
class AppleScript(aetools.NProperty):
|
class weeks(aetools.NProperty):
|
||||||
"""AppleScript - the top-level script object """
|
"""weeks - the number of seconds in a week """
|
||||||
which = 'ascr'
|
which = 'week'
|
||||||
want = 'scpt'
|
want = 'long'
|
||||||
|
|
||||||
applications = app
|
applications = app
|
||||||
|
|
||||||
|
@ -983,34 +983,34 @@ class data(aetools.ComponentItem):
|
||||||
class date(aetools.ComponentItem):
|
class date(aetools.ComponentItem):
|
||||||
"""date - Absolute date and time values """
|
"""date - Absolute date and time values """
|
||||||
want = 'ldt '
|
want = 'ldt '
|
||||||
class weekday(aetools.NProperty):
|
|
||||||
"""weekday - the day of a week of a date """
|
|
||||||
which = 'wkdy'
|
|
||||||
want = 'wkdy'
|
|
||||||
class month(aetools.NProperty):
|
|
||||||
"""month - the month of a date """
|
|
||||||
which = 'mnth'
|
|
||||||
want = 'mnth'
|
|
||||||
class day(aetools.NProperty):
|
|
||||||
"""day - the day of the month of a date """
|
|
||||||
which = 'day '
|
|
||||||
want = 'long'
|
|
||||||
class year(aetools.NProperty):
|
|
||||||
"""year - the year of a date """
|
|
||||||
which = 'year'
|
|
||||||
want = 'long'
|
|
||||||
class time(aetools.NProperty):
|
|
||||||
"""time - the time since midnight of a date """
|
|
||||||
which = 'time'
|
|
||||||
want = 'long'
|
|
||||||
class date_string(aetools.NProperty):
|
class date_string(aetools.NProperty):
|
||||||
"""date string - the date portion of a date-time value as text """
|
"""date string - the date portion of a date-time value as text """
|
||||||
which = 'dstr'
|
which = 'dstr'
|
||||||
want = 'TEXT'
|
want = 'TEXT'
|
||||||
|
class day(aetools.NProperty):
|
||||||
|
"""day - the day of the month of a date """
|
||||||
|
which = 'day '
|
||||||
|
want = 'long'
|
||||||
|
class month(aetools.NProperty):
|
||||||
|
"""month - the month of a date """
|
||||||
|
which = 'mnth'
|
||||||
|
want = 'mnth'
|
||||||
|
class time(aetools.NProperty):
|
||||||
|
"""time - the time since midnight of a date """
|
||||||
|
which = 'time'
|
||||||
|
want = 'long'
|
||||||
class time_string(aetools.NProperty):
|
class time_string(aetools.NProperty):
|
||||||
"""time string - the time portion of a date-time value as text """
|
"""time string - the time portion of a date-time value as text """
|
||||||
which = 'tstr'
|
which = 'tstr'
|
||||||
want = 'TEXT'
|
want = 'TEXT'
|
||||||
|
class weekday(aetools.NProperty):
|
||||||
|
"""weekday - the day of a week of a date """
|
||||||
|
which = 'wkdy'
|
||||||
|
want = 'wkdy'
|
||||||
|
class year(aetools.NProperty):
|
||||||
|
"""year - the year of a date """
|
||||||
|
which = 'year'
|
||||||
|
want = 'long'
|
||||||
|
|
||||||
dates = date
|
dates = date
|
||||||
|
|
||||||
|
@ -1095,14 +1095,14 @@ class key(aetools.NProperty):
|
||||||
"""key - the character for the key was pressed (ignoring modifiers) """
|
"""key - the character for the key was pressed (ignoring modifiers) """
|
||||||
which = 'kMsg'
|
which = 'kMsg'
|
||||||
want = 'cha '
|
want = 'cha '
|
||||||
class modifiers(aetools.NProperty):
|
|
||||||
"""modifiers - the modifier keys pressed in combination """
|
|
||||||
which = 'kMod'
|
|
||||||
want = 'eMds'
|
|
||||||
class key_kind(aetools.NProperty):
|
class key_kind(aetools.NProperty):
|
||||||
"""key kind - the kind of key that was pressed """
|
"""key kind - the kind of key that was pressed """
|
||||||
which = 'kknd'
|
which = 'kknd'
|
||||||
want = 'ekst'
|
want = 'ekst'
|
||||||
|
class modifiers(aetools.NProperty):
|
||||||
|
"""modifiers - the modifier keys pressed in combination """
|
||||||
|
which = 'kMod'
|
||||||
|
want = 'eMds'
|
||||||
|
|
||||||
keystrokes = keystroke
|
keystrokes = keystroke
|
||||||
|
|
||||||
|
@ -1129,14 +1129,14 @@ linked_lists = linked_list
|
||||||
class list(aetools.ComponentItem):
|
class list(aetools.ComponentItem):
|
||||||
"""list - An ordered collection of items """
|
"""list - An ordered collection of items """
|
||||||
want = 'list'
|
want = 'list'
|
||||||
class reverse(aetools.NProperty):
|
|
||||||
"""reverse - the items of the list in reverse order """
|
|
||||||
which = 'rvse'
|
|
||||||
want = 'list'
|
|
||||||
class rest(aetools.NProperty):
|
class rest(aetools.NProperty):
|
||||||
"""rest - all items of the list excluding first """
|
"""rest - all items of the list excluding first """
|
||||||
which = 'rest'
|
which = 'rest'
|
||||||
want = 'list'
|
want = 'list'
|
||||||
|
class reverse(aetools.NProperty):
|
||||||
|
"""reverse - the items of the list in reverse order """
|
||||||
|
which = 'rvse'
|
||||||
|
want = 'list'
|
||||||
|
|
||||||
class list_or_record(aetools.ComponentItem):
|
class list_or_record(aetools.ComponentItem):
|
||||||
"""list or record - a list or record """
|
"""list or record - a list or record """
|
||||||
|
@ -1371,14 +1371,14 @@ class writing_code(aetools.ComponentItem):
|
||||||
class writing_code_info(aetools.ComponentItem):
|
class writing_code_info(aetools.ComponentItem):
|
||||||
"""writing code info - script code and language code of text run """
|
"""writing code info - script code and language code of text run """
|
||||||
want = 'citl'
|
want = 'citl'
|
||||||
class script_code(aetools.NProperty):
|
|
||||||
"""script code - the script code for the text """
|
|
||||||
which = 'pscd'
|
|
||||||
want = 'shor'
|
|
||||||
class language_code(aetools.NProperty):
|
class language_code(aetools.NProperty):
|
||||||
"""language code - the language code for the text """
|
"""language code - the language code for the text """
|
||||||
which = 'plcd'
|
which = 'plcd'
|
||||||
want = 'shor'
|
want = 'shor'
|
||||||
|
class script_code(aetools.NProperty):
|
||||||
|
"""script code - the script code for the text """
|
||||||
|
which = 'pscd'
|
||||||
|
want = 'shor'
|
||||||
|
|
||||||
writing_code_infos = writing_code_info
|
writing_code_infos = writing_code_info
|
||||||
|
|
||||||
|
@ -1594,13 +1594,13 @@ data._privelemdict = {
|
||||||
}
|
}
|
||||||
date._superclassnames = []
|
date._superclassnames = []
|
||||||
date._privpropdict = {
|
date._privpropdict = {
|
||||||
'weekday' : weekday,
|
|
||||||
'month' : month,
|
|
||||||
'day' : day,
|
|
||||||
'year' : year,
|
|
||||||
'time' : time,
|
|
||||||
'date_string' : date_string,
|
'date_string' : date_string,
|
||||||
|
'day' : day,
|
||||||
|
'month' : month,
|
||||||
|
'time' : time,
|
||||||
'time_string' : time_string,
|
'time_string' : time_string,
|
||||||
|
'weekday' : weekday,
|
||||||
|
'year' : year,
|
||||||
}
|
}
|
||||||
date._privelemdict = {
|
date._privelemdict = {
|
||||||
}
|
}
|
||||||
|
@ -1683,8 +1683,8 @@ item._privelemdict = {
|
||||||
keystroke._superclassnames = []
|
keystroke._superclassnames = []
|
||||||
keystroke._privpropdict = {
|
keystroke._privpropdict = {
|
||||||
'key' : key,
|
'key' : key,
|
||||||
'modifiers' : modifiers,
|
|
||||||
'key_kind' : key_kind,
|
'key_kind' : key_kind,
|
||||||
|
'modifiers' : modifiers,
|
||||||
}
|
}
|
||||||
keystroke._privelemdict = {
|
keystroke._privelemdict = {
|
||||||
}
|
}
|
||||||
|
@ -1707,8 +1707,8 @@ linked_list._privelemdict = {
|
||||||
list._superclassnames = []
|
list._superclassnames = []
|
||||||
list._privpropdict = {
|
list._privpropdict = {
|
||||||
'length' : length,
|
'length' : length,
|
||||||
'reverse' : reverse,
|
|
||||||
'rest' : rest,
|
'rest' : rest,
|
||||||
|
'reverse' : reverse,
|
||||||
}
|
}
|
||||||
list._privelemdict = {
|
list._privelemdict = {
|
||||||
}
|
}
|
||||||
|
@ -1947,8 +1947,8 @@ writing_code._privelemdict = {
|
||||||
}
|
}
|
||||||
writing_code_info._superclassnames = []
|
writing_code_info._superclassnames = []
|
||||||
writing_code_info._privpropdict = {
|
writing_code_info._privpropdict = {
|
||||||
'script_code' : script_code,
|
|
||||||
'language_code' : language_code,
|
'language_code' : language_code,
|
||||||
|
'script_code' : script_code,
|
||||||
}
|
}
|
||||||
writing_code_info._privelemdict = {
|
writing_code_info._privelemdict = {
|
||||||
}
|
}
|
||||||
|
@ -2028,155 +2028,155 @@ _Enum_misc = {
|
||||||
# Indices of types declared in this module
|
# Indices of types declared in this module
|
||||||
#
|
#
|
||||||
_classdeclarations = {
|
_classdeclarations = {
|
||||||
'jul ' : July,
|
'****' : anything,
|
||||||
'may ' : May,
|
|
||||||
'TEXT' : string,
|
|
||||||
'cmet' : cubic_meters,
|
|
||||||
'STXT' : styled_text,
|
|
||||||
'nds ' : number_2c__date_or_text,
|
|
||||||
'feet' : feet,
|
|
||||||
'feb ' : February,
|
|
||||||
'degc' : degrees_Celsius,
|
|
||||||
'kprs' : keystroke,
|
|
||||||
'psct' : writing_code,
|
|
||||||
'degf' : degrees_Fahrenheit,
|
|
||||||
'lrs ' : list_2c__record_or_text,
|
|
||||||
'ldt ' : date,
|
|
||||||
'degk' : degrees_Kelvin,
|
|
||||||
'sun ' : Sunday,
|
|
||||||
'oct ' : October,
|
|
||||||
'evnt' : event,
|
|
||||||
'pstr' : Pascal_string,
|
|
||||||
'cyrd' : cubic_yards,
|
|
||||||
'PICT' : picture,
|
'PICT' : picture,
|
||||||
'ls ' : list_or_string,
|
'STXT' : styled_text,
|
||||||
'long' : integer,
|
'TEXT' : string,
|
||||||
'prop' : properties,
|
'alis' : alias,
|
||||||
'nmbr' : number,
|
'apr ' : April,
|
||||||
|
'aug ' : August,
|
||||||
|
'bool' : boolean,
|
||||||
|
'cRGB' : RGB_color,
|
||||||
|
'capp' : app,
|
||||||
|
'case' : upper_case,
|
||||||
|
'ccmt' : cubic_centimeters,
|
||||||
|
'cfet' : cubic_feet,
|
||||||
|
'cha ' : character,
|
||||||
'citl' : writing_code_info,
|
'citl' : writing_code_info,
|
||||||
'citm' : text_item,
|
'citm' : text_item,
|
||||||
'apr ' : April,
|
'cmet' : cubic_meters,
|
||||||
'thu ' : Thursday,
|
'cmtr' : centimeters,
|
||||||
'type' : type_class,
|
'cobj' : item,
|
||||||
'prep' : preposition,
|
'cstr' : C_string,
|
||||||
'tue ' : Tuesday,
|
'ctxt' : text,
|
||||||
'case' : upper_case,
|
'cuin' : cubic_inches,
|
||||||
'vers' : version,
|
'cyrd' : cubic_yards,
|
||||||
'wed ' : Wednesday,
|
'dec ' : December,
|
||||||
'capp' : app,
|
'degc' : degrees_Celsius,
|
||||||
'sqkm' : square_kilometers,
|
'degf' : degrees_Fahrenheit,
|
||||||
'obj ' : reference,
|
'degk' : degrees_Kelvin,
|
||||||
'vect' : vector,
|
|
||||||
'wkdy' : weekday,
|
|
||||||
'cRGB' : RGB_color,
|
|
||||||
'nd ' : number_or_date,
|
|
||||||
'itxt' : international_text,
|
|
||||||
'scnd' : seconds,
|
|
||||||
'mar ' : March,
|
|
||||||
'kmtr' : kilometers,
|
|
||||||
'sqft' : square_feet,
|
|
||||||
'list' : list,
|
|
||||||
'styl' : styled_Clipboard_text,
|
|
||||||
'nov ' : November,
|
|
||||||
'qrts' : quarts,
|
|
||||||
'mile' : miles,
|
|
||||||
'msng' : missing_value,
|
|
||||||
'alis' : alias,
|
|
||||||
'jan ' : January,
|
|
||||||
'metr' : meters,
|
|
||||||
'mnth' : month,
|
|
||||||
'ns ' : number_or_string,
|
|
||||||
'jun ' : June,
|
|
||||||
'aug ' : August,
|
|
||||||
'llst' : linked_list,
|
|
||||||
'doub' : real,
|
'doub' : real,
|
||||||
'encs' : encoded_string,
|
'encs' : encoded_string,
|
||||||
'galn' : gallons,
|
|
||||||
'cuin' : cubic_inches,
|
|
||||||
'fri ' : Friday,
|
|
||||||
'sf ' : alias_or_string,
|
|
||||||
'lr ' : list_or_record,
|
|
||||||
'mon ' : Monday,
|
|
||||||
'snd ' : sound,
|
|
||||||
'sep ' : September,
|
|
||||||
'kgrm' : kilograms,
|
|
||||||
'scpt' : script,
|
|
||||||
'****' : anything,
|
|
||||||
'litr' : liters,
|
|
||||||
'bool' : boolean,
|
|
||||||
'cmtr' : centimeters,
|
|
||||||
'sqrm' : square_meters,
|
|
||||||
'inch' : inches,
|
|
||||||
'zone' : zone,
|
|
||||||
'kfrm' : reference_form,
|
|
||||||
'cobj' : item,
|
|
||||||
'gram' : grams,
|
|
||||||
'cha ' : character,
|
|
||||||
'reco' : record,
|
|
||||||
'undf' : empty_ae_name_,
|
|
||||||
'dec ' : December,
|
|
||||||
'enum' : constant,
|
'enum' : constant,
|
||||||
'hand' : handler,
|
'evnt' : event,
|
||||||
'sqmi' : square_miles,
|
'feb ' : February,
|
||||||
'rdat' : data,
|
'feet' : feet,
|
||||||
'cstr' : C_string,
|
'fri ' : Friday,
|
||||||
'utxt' : Unicode_text,
|
|
||||||
'sutx' : styled_Unicode_text,
|
|
||||||
'mach' : machine,
|
|
||||||
'sqyd' : square_yards,
|
|
||||||
'yard' : yards,
|
|
||||||
'ozs ' : ounces,
|
|
||||||
'lbs ' : pounds,
|
|
||||||
'cfet' : cubic_feet,
|
|
||||||
'ccmt' : cubic_centimeters,
|
|
||||||
'sat ' : Saturday,
|
|
||||||
'pcls' : class_,
|
|
||||||
'fss ' : file_specification,
|
'fss ' : file_specification,
|
||||||
'ctxt' : text,
|
'galn' : gallons,
|
||||||
|
'gram' : grams,
|
||||||
|
'hand' : handler,
|
||||||
|
'inch' : inches,
|
||||||
|
'itxt' : international_text,
|
||||||
|
'jan ' : January,
|
||||||
|
'jul ' : July,
|
||||||
|
'jun ' : June,
|
||||||
|
'kfrm' : reference_form,
|
||||||
|
'kgrm' : kilograms,
|
||||||
|
'kmtr' : kilometers,
|
||||||
|
'kprs' : keystroke,
|
||||||
|
'lbs ' : pounds,
|
||||||
|
'ldt ' : date,
|
||||||
|
'list' : list,
|
||||||
|
'litr' : liters,
|
||||||
|
'llst' : linked_list,
|
||||||
|
'long' : integer,
|
||||||
|
'lr ' : list_or_record,
|
||||||
|
'lrs ' : list_2c__record_or_text,
|
||||||
|
'ls ' : list_or_string,
|
||||||
|
'mach' : machine,
|
||||||
|
'mar ' : March,
|
||||||
|
'may ' : May,
|
||||||
|
'metr' : meters,
|
||||||
|
'mile' : miles,
|
||||||
|
'mnth' : month,
|
||||||
|
'mon ' : Monday,
|
||||||
|
'msng' : missing_value,
|
||||||
|
'nd ' : number_or_date,
|
||||||
|
'nds ' : number_2c__date_or_text,
|
||||||
|
'nmbr' : number,
|
||||||
|
'nov ' : November,
|
||||||
|
'ns ' : number_or_string,
|
||||||
|
'obj ' : reference,
|
||||||
|
'oct ' : October,
|
||||||
|
'ozs ' : ounces,
|
||||||
|
'pcls' : class_,
|
||||||
|
'prep' : preposition,
|
||||||
|
'prop' : properties,
|
||||||
|
'psct' : writing_code,
|
||||||
|
'pstr' : Pascal_string,
|
||||||
|
'qrts' : quarts,
|
||||||
|
'rdat' : data,
|
||||||
|
'reco' : record,
|
||||||
|
'sat ' : Saturday,
|
||||||
|
'scnd' : seconds,
|
||||||
|
'scpt' : script,
|
||||||
|
'sep ' : September,
|
||||||
|
'sf ' : alias_or_string,
|
||||||
|
'snd ' : sound,
|
||||||
|
'sqft' : square_feet,
|
||||||
|
'sqkm' : square_kilometers,
|
||||||
|
'sqmi' : square_miles,
|
||||||
|
'sqrm' : square_meters,
|
||||||
|
'sqyd' : square_yards,
|
||||||
|
'styl' : styled_Clipboard_text,
|
||||||
|
'sun ' : Sunday,
|
||||||
|
'sutx' : styled_Unicode_text,
|
||||||
|
'thu ' : Thursday,
|
||||||
|
'tue ' : Tuesday,
|
||||||
|
'type' : type_class,
|
||||||
|
'undf' : empty_ae_name_,
|
||||||
|
'utxt' : Unicode_text,
|
||||||
|
'vect' : vector,
|
||||||
|
'vers' : version,
|
||||||
|
'wed ' : Wednesday,
|
||||||
|
'wkdy' : weekday,
|
||||||
|
'yard' : yards,
|
||||||
|
'zone' : zone,
|
||||||
}
|
}
|
||||||
|
|
||||||
_propdeclarations = {
|
_propdeclarations = {
|
||||||
'week' : weeks,
|
'ID ' : id,
|
||||||
|
'ascr' : AppleScript,
|
||||||
|
'c@#^' : _3c_Inheritance_3e_,
|
||||||
|
'day ' : day,
|
||||||
|
'days' : days,
|
||||||
|
'dstr' : date_string,
|
||||||
|
'hour' : hours,
|
||||||
|
'kMod' : modifiers,
|
||||||
|
'kMsg' : key,
|
||||||
|
'kknd' : key_kind,
|
||||||
|
'leng' : length,
|
||||||
|
'min ' : minutes,
|
||||||
'mnth' : month,
|
'mnth' : month,
|
||||||
'pare' : parent,
|
'pare' : parent,
|
||||||
'leng' : length,
|
|
||||||
'pi ' : pi,
|
'pi ' : pi,
|
||||||
'kMod' : modifiers,
|
|
||||||
'min ' : minutes,
|
|
||||||
'wkdy' : weekday,
|
|
||||||
'dstr' : date_string,
|
|
||||||
'rest' : rest,
|
|
||||||
'ascr' : AppleScript,
|
|
||||||
'kknd' : key_kind,
|
|
||||||
'c@#^' : _3c_Inheritance_3e_,
|
|
||||||
'ID ' : id,
|
|
||||||
'year' : year,
|
|
||||||
'rvse' : reverse,
|
|
||||||
'tab ' : tab,
|
|
||||||
'tstr' : time_string,
|
|
||||||
'plcd' : language_code,
|
'plcd' : language_code,
|
||||||
'ret ' : return_,
|
'pnam' : name,
|
||||||
'kMsg' : key,
|
|
||||||
'hour' : hours,
|
|
||||||
'spac' : space,
|
|
||||||
'days' : days,
|
|
||||||
'txdl' : text_item_delimiters,
|
|
||||||
'prdp' : print_depth,
|
'prdp' : print_depth,
|
||||||
'prln' : print_length,
|
'prln' : print_length,
|
||||||
'pscd' : script_code,
|
'pscd' : script_code,
|
||||||
'time' : time,
|
'rest' : rest,
|
||||||
'pnam' : name,
|
'ret ' : return_,
|
||||||
'rslt' : result,
|
'rslt' : result,
|
||||||
'day ' : day,
|
'rvse' : reverse,
|
||||||
|
'spac' : space,
|
||||||
|
'tab ' : tab,
|
||||||
|
'time' : time,
|
||||||
|
'tstr' : time_string,
|
||||||
|
'txdl' : text_item_delimiters,
|
||||||
|
'week' : weeks,
|
||||||
|
'wkdy' : weekday,
|
||||||
|
'year' : year,
|
||||||
}
|
}
|
||||||
|
|
||||||
_compdeclarations = {
|
_compdeclarations = {
|
||||||
}
|
}
|
||||||
|
|
||||||
_enumdeclarations = {
|
_enumdeclarations = {
|
||||||
'eMds' : _Enum_eMds,
|
|
||||||
'cons' : _Enum_cons,
|
|
||||||
'misc' : _Enum_misc,
|
|
||||||
'ekst' : _Enum_ekst,
|
|
||||||
'boov' : _Enum_boov,
|
'boov' : _Enum_boov,
|
||||||
|
'cons' : _Enum_cons,
|
||||||
|
'eMds' : _Enum_eMds,
|
||||||
|
'ekst' : _Enum_ekst,
|
||||||
|
'misc' : _Enum_misc,
|
||||||
}
|
}
|
||||||
|
|
|
@ -36,14 +36,14 @@ class AppleTalk_machine(aetools.NProperty):
|
||||||
"""AppleTalk machine - the machine name part of the address """
|
"""AppleTalk machine - the machine name part of the address """
|
||||||
which = 'patm'
|
which = 'patm'
|
||||||
want = 'TEXT'
|
want = 'TEXT'
|
||||||
class AppleTalk_zone(aetools.NProperty):
|
|
||||||
"""AppleTalk zone - the zone part of the address """
|
|
||||||
which = 'patz'
|
|
||||||
want = 'TEXT'
|
|
||||||
class AppleTalk_type(aetools.NProperty):
|
class AppleTalk_type(aetools.NProperty):
|
||||||
"""AppleTalk type - the type part of the AppleTalk address """
|
"""AppleTalk type - the type part of the AppleTalk address """
|
||||||
which = 'patt'
|
which = 'patt'
|
||||||
want = 'TEXT'
|
want = 'TEXT'
|
||||||
|
class AppleTalk_zone(aetools.NProperty):
|
||||||
|
"""AppleTalk zone - the zone part of the address """
|
||||||
|
which = 'patz'
|
||||||
|
want = 'TEXT'
|
||||||
|
|
||||||
AppleTalk_addresses = AppleTalk_address
|
AppleTalk_addresses = AppleTalk_address
|
||||||
|
|
||||||
|
@ -94,14 +94,14 @@ LocalTalk_addresses = LocalTalk_address
|
||||||
class SCSI_address(aetools.ComponentItem):
|
class SCSI_address(aetools.ComponentItem):
|
||||||
"""SCSI address - Addresses a SCSI device """
|
"""SCSI address - Addresses a SCSI device """
|
||||||
want = 'cscs'
|
want = 'cscs'
|
||||||
class SCSI_bus(aetools.NProperty):
|
|
||||||
"""SCSI bus - the SCSI bus number """
|
|
||||||
which = 'pscb'
|
|
||||||
want = 'shor'
|
|
||||||
class LUN(aetools.NProperty):
|
class LUN(aetools.NProperty):
|
||||||
"""LUN - the SCSI logical unit number """
|
"""LUN - the SCSI logical unit number """
|
||||||
which = 'pslu'
|
which = 'pslu'
|
||||||
want = 'shor'
|
want = 'shor'
|
||||||
|
class SCSI_bus(aetools.NProperty):
|
||||||
|
"""SCSI bus - the SCSI bus number """
|
||||||
|
which = 'pscb'
|
||||||
|
want = 'shor'
|
||||||
|
|
||||||
SCSI_addresses = SCSI_address
|
SCSI_addresses = SCSI_address
|
||||||
|
|
||||||
|
@ -124,14 +124,14 @@ class name(aetools.NProperty):
|
||||||
class address_specification(aetools.ComponentItem):
|
class address_specification(aetools.ComponentItem):
|
||||||
"""address specification - Unique designation of a device or service connected to this computer """
|
"""address specification - Unique designation of a device or service connected to this computer """
|
||||||
want = 'cadr'
|
want = 'cadr'
|
||||||
class properties(aetools.NProperty):
|
|
||||||
"""properties - property that allows getting and setting of multiple properties """
|
|
||||||
which = 'pALL'
|
|
||||||
want = 'reco'
|
|
||||||
class conduit(aetools.NProperty):
|
class conduit(aetools.NProperty):
|
||||||
"""conduit - How the addressee is physically connected """
|
"""conduit - How the addressee is physically connected """
|
||||||
which = 'pcon'
|
which = 'pcon'
|
||||||
want = 'econ'
|
want = 'econ'
|
||||||
|
class properties(aetools.NProperty):
|
||||||
|
"""properties - property that allows getting and setting of multiple properties """
|
||||||
|
which = 'pALL'
|
||||||
|
want = 'reco'
|
||||||
class protocol(aetools.NProperty):
|
class protocol(aetools.NProperty):
|
||||||
"""protocol - How to talk to this addressee """
|
"""protocol - How to talk to this addressee """
|
||||||
which = 'pprt'
|
which = 'pprt'
|
||||||
|
@ -148,51 +148,51 @@ bus_slots = bus_slot
|
||||||
class device_specification(aetools.ComponentItem):
|
class device_specification(aetools.ComponentItem):
|
||||||
"""device specification - A device connected to a computer """
|
"""device specification - A device connected to a computer """
|
||||||
want = 'cdev'
|
want = 'cdev'
|
||||||
class device_type(aetools.NProperty):
|
|
||||||
"""device type - the kind of device """
|
|
||||||
which = 'pdvt'
|
|
||||||
want = 'edvt'
|
|
||||||
class device_address(aetools.NProperty):
|
class device_address(aetools.NProperty):
|
||||||
"""device address - the address of the device """
|
"""device address - the address of the device """
|
||||||
which = 'pdva'
|
which = 'pdva'
|
||||||
want = 'cadr'
|
want = 'cadr'
|
||||||
|
class device_type(aetools.NProperty):
|
||||||
|
"""device type - the kind of device """
|
||||||
|
which = 'pdvt'
|
||||||
|
want = 'edvt'
|
||||||
|
|
||||||
device_specifications = device_specification
|
device_specifications = device_specification
|
||||||
ADB_address._superclassnames = ['address_specification']
|
ADB_address._superclassnames = ['address_specification']
|
||||||
ADB_address._privpropdict = {
|
ADB_address._privpropdict = {
|
||||||
'_3c_inheritance_3e_' : _3c_inheritance_3e_,
|
|
||||||
'ID' : ID,
|
'ID' : ID,
|
||||||
|
'_3c_inheritance_3e_' : _3c_inheritance_3e_,
|
||||||
}
|
}
|
||||||
ADB_address._privelemdict = {
|
ADB_address._privelemdict = {
|
||||||
}
|
}
|
||||||
AppleTalk_address._superclassnames = ['address_specification']
|
AppleTalk_address._superclassnames = ['address_specification']
|
||||||
AppleTalk_address._privpropdict = {
|
AppleTalk_address._privpropdict = {
|
||||||
'_3c_inheritance_3e_' : _3c_inheritance_3e_,
|
|
||||||
'AppleTalk_machine' : AppleTalk_machine,
|
'AppleTalk_machine' : AppleTalk_machine,
|
||||||
'AppleTalk_zone' : AppleTalk_zone,
|
|
||||||
'AppleTalk_type' : AppleTalk_type,
|
'AppleTalk_type' : AppleTalk_type,
|
||||||
|
'AppleTalk_zone' : AppleTalk_zone,
|
||||||
|
'_3c_inheritance_3e_' : _3c_inheritance_3e_,
|
||||||
}
|
}
|
||||||
AppleTalk_address._privelemdict = {
|
AppleTalk_address._privelemdict = {
|
||||||
}
|
}
|
||||||
Ethernet_address._superclassnames = ['address_specification']
|
Ethernet_address._superclassnames = ['address_specification']
|
||||||
Ethernet_address._privpropdict = {
|
Ethernet_address._privpropdict = {
|
||||||
'_3c_inheritance_3e_' : _3c_inheritance_3e_,
|
|
||||||
'ID' : ID,
|
'ID' : ID,
|
||||||
|
'_3c_inheritance_3e_' : _3c_inheritance_3e_,
|
||||||
}
|
}
|
||||||
Ethernet_address._privelemdict = {
|
Ethernet_address._privelemdict = {
|
||||||
}
|
}
|
||||||
FireWire_address._superclassnames = ['address_specification']
|
FireWire_address._superclassnames = ['address_specification']
|
||||||
FireWire_address._privpropdict = {
|
FireWire_address._privpropdict = {
|
||||||
'_3c_inheritance_3e_' : _3c_inheritance_3e_,
|
|
||||||
'ID' : ID,
|
'ID' : ID,
|
||||||
|
'_3c_inheritance_3e_' : _3c_inheritance_3e_,
|
||||||
}
|
}
|
||||||
FireWire_address._privelemdict = {
|
FireWire_address._privelemdict = {
|
||||||
}
|
}
|
||||||
IP_address._superclassnames = ['address_specification']
|
IP_address._superclassnames = ['address_specification']
|
||||||
IP_address._privpropdict = {
|
IP_address._privpropdict = {
|
||||||
'_3c_inheritance_3e_' : _3c_inheritance_3e_,
|
|
||||||
'ID' : ID,
|
|
||||||
'DNS_form' : DNS_form,
|
'DNS_form' : DNS_form,
|
||||||
|
'ID' : ID,
|
||||||
|
'_3c_inheritance_3e_' : _3c_inheritance_3e_,
|
||||||
'port' : port,
|
'port' : port,
|
||||||
}
|
}
|
||||||
IP_address._privelemdict = {
|
IP_address._privelemdict = {
|
||||||
|
@ -208,17 +208,17 @@ LocalTalk_address._privelemdict = {
|
||||||
}
|
}
|
||||||
SCSI_address._superclassnames = ['address_specification']
|
SCSI_address._superclassnames = ['address_specification']
|
||||||
SCSI_address._privpropdict = {
|
SCSI_address._privpropdict = {
|
||||||
'_3c_inheritance_3e_' : _3c_inheritance_3e_,
|
|
||||||
'SCSI_bus' : SCSI_bus,
|
|
||||||
'ID' : ID,
|
'ID' : ID,
|
||||||
'LUN' : LUN,
|
'LUN' : LUN,
|
||||||
|
'SCSI_bus' : SCSI_bus,
|
||||||
|
'_3c_inheritance_3e_' : _3c_inheritance_3e_,
|
||||||
}
|
}
|
||||||
SCSI_address._privelemdict = {
|
SCSI_address._privelemdict = {
|
||||||
}
|
}
|
||||||
Token_Ring_address._superclassnames = ['address_specification']
|
Token_Ring_address._superclassnames = ['address_specification']
|
||||||
Token_Ring_address._privpropdict = {
|
Token_Ring_address._privpropdict = {
|
||||||
'_3c_inheritance_3e_' : _3c_inheritance_3e_,
|
|
||||||
'ID' : ID,
|
'ID' : ID,
|
||||||
|
'_3c_inheritance_3e_' : _3c_inheritance_3e_,
|
||||||
}
|
}
|
||||||
Token_Ring_address._privelemdict = {
|
Token_Ring_address._privelemdict = {
|
||||||
}
|
}
|
||||||
|
@ -229,24 +229,24 @@ USB_Addresses._privelemdict = {
|
||||||
}
|
}
|
||||||
address_specification._superclassnames = []
|
address_specification._superclassnames = []
|
||||||
address_specification._privpropdict = {
|
address_specification._privpropdict = {
|
||||||
'properties' : properties,
|
|
||||||
'conduit' : conduit,
|
'conduit' : conduit,
|
||||||
|
'properties' : properties,
|
||||||
'protocol' : protocol,
|
'protocol' : protocol,
|
||||||
}
|
}
|
||||||
address_specification._privelemdict = {
|
address_specification._privelemdict = {
|
||||||
}
|
}
|
||||||
bus_slot._superclassnames = ['address_specification']
|
bus_slot._superclassnames = ['address_specification']
|
||||||
bus_slot._privpropdict = {
|
bus_slot._privpropdict = {
|
||||||
'_3c_inheritance_3e_' : _3c_inheritance_3e_,
|
|
||||||
'ID' : ID,
|
'ID' : ID,
|
||||||
|
'_3c_inheritance_3e_' : _3c_inheritance_3e_,
|
||||||
}
|
}
|
||||||
bus_slot._privelemdict = {
|
bus_slot._privelemdict = {
|
||||||
}
|
}
|
||||||
device_specification._superclassnames = []
|
device_specification._superclassnames = []
|
||||||
device_specification._privpropdict = {
|
device_specification._privpropdict = {
|
||||||
'properties' : properties,
|
|
||||||
'device_type' : device_type,
|
|
||||||
'device_address' : device_address,
|
'device_address' : device_address,
|
||||||
|
'device_type' : device_type,
|
||||||
|
'properties' : properties,
|
||||||
}
|
}
|
||||||
device_specification._privelemdict = {
|
device_specification._privelemdict = {
|
||||||
}
|
}
|
||||||
|
@ -326,39 +326,39 @@ _Enum_epro = {
|
||||||
# Indices of types declared in this module
|
# Indices of types declared in this module
|
||||||
#
|
#
|
||||||
_classdeclarations = {
|
_classdeclarations = {
|
||||||
'cat ' : AppleTalk_address,
|
|
||||||
'cadr' : address_specification,
|
|
||||||
'ctok' : Token_Ring_address,
|
|
||||||
'cfw ' : FireWire_address,
|
|
||||||
'cbus' : bus_slot,
|
|
||||||
'cscs' : SCSI_address,
|
|
||||||
'cadb' : ADB_address,
|
'cadb' : ADB_address,
|
||||||
'cusb' : USB_Addresses,
|
'cadr' : address_specification,
|
||||||
'cip ' : IP_address,
|
'cat ' : AppleTalk_address,
|
||||||
'clt ' : LocalTalk_address,
|
'cbus' : bus_slot,
|
||||||
'cdev' : device_specification,
|
'cdev' : device_specification,
|
||||||
'cen ' : Ethernet_address,
|
'cen ' : Ethernet_address,
|
||||||
|
'cfw ' : FireWire_address,
|
||||||
|
'cip ' : IP_address,
|
||||||
|
'clt ' : LocalTalk_address,
|
||||||
|
'cscs' : SCSI_address,
|
||||||
|
'ctok' : Token_Ring_address,
|
||||||
|
'cusb' : USB_Addresses,
|
||||||
}
|
}
|
||||||
|
|
||||||
_propdeclarations = {
|
_propdeclarations = {
|
||||||
|
'ID ' : ID,
|
||||||
|
'c@#^' : _3c_inheritance_3e_,
|
||||||
|
'pALL' : properties,
|
||||||
|
'patm' : AppleTalk_machine,
|
||||||
|
'patt' : AppleTalk_type,
|
||||||
|
'patz' : AppleTalk_zone,
|
||||||
|
'pcon' : conduit,
|
||||||
'pdns' : DNS_form,
|
'pdns' : DNS_form,
|
||||||
'pdva' : device_address,
|
'pdva' : device_address,
|
||||||
'patt' : AppleTalk_type,
|
|
||||||
'pprt' : protocol,
|
|
||||||
'pcon' : conduit,
|
|
||||||
'patz' : AppleTalk_zone,
|
|
||||||
'pnet' : network,
|
|
||||||
'pdvt' : device_type,
|
'pdvt' : device_type,
|
||||||
'pnam' : name,
|
'pnam' : name,
|
||||||
'c@#^' : _3c_inheritance_3e_,
|
'pnet' : network,
|
||||||
'ID ' : ID,
|
|
||||||
'pALL' : properties,
|
|
||||||
'psoc' : socket,
|
|
||||||
'pscb' : SCSI_bus,
|
|
||||||
'ppor' : port,
|
|
||||||
'patm' : AppleTalk_machine,
|
|
||||||
'pslu' : LUN,
|
|
||||||
'pnod' : node,
|
'pnod' : node,
|
||||||
|
'ppor' : port,
|
||||||
|
'pprt' : protocol,
|
||||||
|
'pscb' : SCSI_bus,
|
||||||
|
'pslu' : LUN,
|
||||||
|
'psoc' : socket,
|
||||||
}
|
}
|
||||||
|
|
||||||
_compdeclarations = {
|
_compdeclarations = {
|
||||||
|
|
|
@ -76,46 +76,46 @@ class color_table(aetools.NProperty):
|
||||||
"""color table - the color table """
|
"""color table - the color table """
|
||||||
which = 'cltb'
|
which = 'cltb'
|
||||||
want = 'clrt'
|
want = 'clrt'
|
||||||
class ordering(aetools.NProperty):
|
class default_font(aetools.NProperty):
|
||||||
"""ordering - the ordered list of graphic objects in the drawing area """
|
"""default font - the name of the default font for text objects """
|
||||||
which = 'gobs'
|
which = 'ptxf'
|
||||||
want = 'obj '
|
|
||||||
class name(aetools.NProperty):
|
|
||||||
"""name - the name """
|
|
||||||
which = 'pnam'
|
|
||||||
want = 'itxt'
|
want = 'itxt'
|
||||||
class default_location(aetools.NProperty):
|
class default_location(aetools.NProperty):
|
||||||
"""default location - the default location of each new graphic object """
|
"""default location - the default location of each new graphic object """
|
||||||
which = 'pnel'
|
which = 'pnel'
|
||||||
want = 'QDpt'
|
want = 'QDpt'
|
||||||
class pixel_depth(aetools.NProperty):
|
|
||||||
"""pixel depth - the number of bits per pixel """
|
|
||||||
which = 'pdpt'
|
|
||||||
want = 'shor'
|
|
||||||
class writing_code(aetools.NProperty):
|
|
||||||
"""writing code - the script system and language of text objects in the drawing area """
|
|
||||||
which = 'psct'
|
|
||||||
want = 'intl'
|
|
||||||
class text_color(aetools.NProperty):
|
|
||||||
"""text color - the default color for text objects """
|
|
||||||
which = 'ptxc'
|
|
||||||
want = 'cRGB'
|
|
||||||
class default_font(aetools.NProperty):
|
|
||||||
"""default font - the name of the default font for text objects """
|
|
||||||
which = 'ptxf'
|
|
||||||
want = 'itxt'
|
|
||||||
class default_size(aetools.NProperty):
|
class default_size(aetools.NProperty):
|
||||||
"""default size - the default size for text objects """
|
"""default size - the default size for text objects """
|
||||||
which = 'ptps'
|
which = 'ptps'
|
||||||
want = 'fixd'
|
want = 'fixd'
|
||||||
|
class name(aetools.NProperty):
|
||||||
|
"""name - the name """
|
||||||
|
which = 'pnam'
|
||||||
|
want = 'itxt'
|
||||||
|
class ordering(aetools.NProperty):
|
||||||
|
"""ordering - the ordered list of graphic objects in the drawing area """
|
||||||
|
which = 'gobs'
|
||||||
|
want = 'obj '
|
||||||
|
class pixel_depth(aetools.NProperty):
|
||||||
|
"""pixel depth - the number of bits per pixel """
|
||||||
|
which = 'pdpt'
|
||||||
|
want = 'shor'
|
||||||
class style(aetools.NProperty):
|
class style(aetools.NProperty):
|
||||||
"""style - the default text style for text objects """
|
"""style - the default text style for text objects """
|
||||||
which = 'txst'
|
which = 'txst'
|
||||||
want = 'tsty'
|
want = 'tsty'
|
||||||
|
class text_color(aetools.NProperty):
|
||||||
|
"""text color - the default color for text objects """
|
||||||
|
which = 'ptxc'
|
||||||
|
want = 'cRGB'
|
||||||
class update_on_change(aetools.NProperty):
|
class update_on_change(aetools.NProperty):
|
||||||
"""update on change - Redraw after each change? """
|
"""update on change - Redraw after each change? """
|
||||||
which = 'pupd'
|
which = 'pupd'
|
||||||
want = 'bool'
|
want = 'bool'
|
||||||
|
class writing_code(aetools.NProperty):
|
||||||
|
"""writing code - the script system and language of text objects in the drawing area """
|
||||||
|
which = 'psct'
|
||||||
|
want = 'intl'
|
||||||
|
|
||||||
drawing_areas = drawing_area
|
drawing_areas = drawing_area
|
||||||
|
|
||||||
|
@ -128,22 +128,22 @@ graphic_groups = graphic_group
|
||||||
class graphic_line(aetools.ComponentItem):
|
class graphic_line(aetools.ComponentItem):
|
||||||
"""graphic line - A graphic line """
|
"""graphic line - A graphic line """
|
||||||
want = 'glin'
|
want = 'glin'
|
||||||
class start_point(aetools.NProperty):
|
|
||||||
"""start point - the starting point of the line """
|
|
||||||
which = 'pstp'
|
|
||||||
want = 'QDpt'
|
|
||||||
class end_point(aetools.NProperty):
|
|
||||||
"""end point - the ending point of the line """
|
|
||||||
which = 'pend'
|
|
||||||
want = 'QDpt'
|
|
||||||
class dash_style(aetools.NProperty):
|
|
||||||
"""dash style - the dash style """
|
|
||||||
which = 'pdst'
|
|
||||||
want = 'tdas'
|
|
||||||
class arrow_style(aetools.NProperty):
|
class arrow_style(aetools.NProperty):
|
||||||
"""arrow style - the arrow style """
|
"""arrow style - the arrow style """
|
||||||
which = 'arro'
|
which = 'arro'
|
||||||
want = 'arro'
|
want = 'arro'
|
||||||
|
class dash_style(aetools.NProperty):
|
||||||
|
"""dash style - the dash style """
|
||||||
|
which = 'pdst'
|
||||||
|
want = 'tdas'
|
||||||
|
class end_point(aetools.NProperty):
|
||||||
|
"""end point - the ending point of the line """
|
||||||
|
which = 'pend'
|
||||||
|
want = 'QDpt'
|
||||||
|
class start_point(aetools.NProperty):
|
||||||
|
"""start point - the starting point of the line """
|
||||||
|
which = 'pstp'
|
||||||
|
want = 'QDpt'
|
||||||
|
|
||||||
graphic_lines = graphic_line
|
graphic_lines = graphic_line
|
||||||
|
|
||||||
|
@ -246,16 +246,16 @@ drawing_area._privpropdict = {
|
||||||
'background_color' : background_color,
|
'background_color' : background_color,
|
||||||
'background_pattern' : background_pattern,
|
'background_pattern' : background_pattern,
|
||||||
'color_table' : color_table,
|
'color_table' : color_table,
|
||||||
'ordering' : ordering,
|
|
||||||
'name' : name,
|
|
||||||
'default_location' : default_location,
|
|
||||||
'pixel_depth' : pixel_depth,
|
|
||||||
'writing_code' : writing_code,
|
|
||||||
'text_color' : text_color,
|
|
||||||
'default_font' : default_font,
|
'default_font' : default_font,
|
||||||
|
'default_location' : default_location,
|
||||||
'default_size' : default_size,
|
'default_size' : default_size,
|
||||||
|
'name' : name,
|
||||||
|
'ordering' : ordering,
|
||||||
|
'pixel_depth' : pixel_depth,
|
||||||
'style' : style,
|
'style' : style,
|
||||||
|
'text_color' : text_color,
|
||||||
'update_on_change' : update_on_change,
|
'update_on_change' : update_on_change,
|
||||||
|
'writing_code' : writing_code,
|
||||||
}
|
}
|
||||||
drawing_area._privelemdict = {
|
drawing_area._privelemdict = {
|
||||||
}
|
}
|
||||||
|
@ -266,10 +266,10 @@ graphic_group._privelemdict = {
|
||||||
}
|
}
|
||||||
graphic_line._superclassnames = []
|
graphic_line._superclassnames = []
|
||||||
graphic_line._privpropdict = {
|
graphic_line._privpropdict = {
|
||||||
'start_point' : start_point,
|
|
||||||
'end_point' : end_point,
|
|
||||||
'dash_style' : dash_style,
|
|
||||||
'arrow_style' : arrow_style,
|
'arrow_style' : arrow_style,
|
||||||
|
'dash_style' : dash_style,
|
||||||
|
'end_point' : end_point,
|
||||||
|
'start_point' : start_point,
|
||||||
}
|
}
|
||||||
graphic_line._privelemdict = {
|
graphic_line._privelemdict = {
|
||||||
}
|
}
|
||||||
|
@ -356,56 +356,56 @@ _Enum_tran = {
|
||||||
# Indices of types declared in this module
|
# Indices of types declared in this module
|
||||||
#
|
#
|
||||||
_classdeclarations = {
|
_classdeclarations = {
|
||||||
'cpic' : graphic_group,
|
|
||||||
'covl' : oval,
|
|
||||||
'cgtx' : graphic_text,
|
|
||||||
'cgsh' : graphic_shape,
|
|
||||||
'glin' : graphic_line,
|
|
||||||
'cgob' : graphic_object,
|
|
||||||
'cdrw' : drawing_area,
|
|
||||||
'cpgn' : polygon,
|
|
||||||
'cpxl' : pixel,
|
|
||||||
'crrc' : rounded_rectangle,
|
|
||||||
'carc' : arc,
|
'carc' : arc,
|
||||||
|
'cdrw' : drawing_area,
|
||||||
|
'cgob' : graphic_object,
|
||||||
|
'cgsh' : graphic_shape,
|
||||||
|
'cgtx' : graphic_text,
|
||||||
|
'covl' : oval,
|
||||||
|
'cpgn' : polygon,
|
||||||
|
'cpic' : graphic_group,
|
||||||
'cpix' : pixel_map,
|
'cpix' : pixel_map,
|
||||||
|
'cpxl' : pixel,
|
||||||
'crec' : rectangle,
|
'crec' : rectangle,
|
||||||
|
'crrc' : rounded_rectangle,
|
||||||
|
'glin' : graphic_line,
|
||||||
}
|
}
|
||||||
|
|
||||||
_propdeclarations = {
|
_propdeclarations = {
|
||||||
'pbpt' : background_pattern,
|
'arro' : arrow_style,
|
||||||
'flcl' : fill_color,
|
|
||||||
'parc' : arc_angle,
|
|
||||||
'pbnd' : bounds,
|
|
||||||
'colr' : color,
|
|
||||||
'flpt' : fill_pattern,
|
|
||||||
'ustl' : uniform_styles,
|
|
||||||
'font' : font,
|
|
||||||
'pend' : end_point,
|
|
||||||
'pstp' : start_point,
|
|
||||||
'pang' : start_angle,
|
|
||||||
'pptm' : transfer_mode,
|
|
||||||
'cltb' : color_table,
|
'cltb' : color_table,
|
||||||
|
'colr' : color,
|
||||||
|
'flcl' : fill_color,
|
||||||
|
'flpt' : fill_pattern,
|
||||||
|
'font' : font,
|
||||||
|
'gobs' : ordering,
|
||||||
|
'pang' : start_angle,
|
||||||
|
'parc' : arc_angle,
|
||||||
|
'pbcl' : background_color,
|
||||||
|
'pbnd' : bounds,
|
||||||
|
'pbpt' : background_pattern,
|
||||||
|
'pchd' : corner_curve_height,
|
||||||
|
'pcwd' : corner_curve_width,
|
||||||
|
'pdpt' : pixel_depth,
|
||||||
|
'pdrt' : definition_rect,
|
||||||
|
'pdst' : dash_style,
|
||||||
|
'pend' : end_point,
|
||||||
|
'pnam' : name,
|
||||||
|
'pnel' : default_location,
|
||||||
|
'ppcl' : pen_color,
|
||||||
|
'pppa' : pen_pattern,
|
||||||
|
'pptm' : transfer_mode,
|
||||||
|
'ppwd' : pen_width,
|
||||||
|
'psct' : writing_code,
|
||||||
|
'pstp' : start_point,
|
||||||
|
'ptlt' : point_list,
|
||||||
|
'ptps' : default_size,
|
||||||
|
'ptsz' : size,
|
||||||
'ptxc' : text_color,
|
'ptxc' : text_color,
|
||||||
'ptxf' : default_font,
|
'ptxf' : default_font,
|
||||||
'ppcl' : pen_color,
|
|
||||||
'ptps' : default_size,
|
|
||||||
'ppwd' : pen_width,
|
|
||||||
'arro' : arrow_style,
|
|
||||||
'pcwd' : corner_curve_width,
|
|
||||||
'txst' : style,
|
|
||||||
'psct' : writing_code,
|
|
||||||
'pdst' : dash_style,
|
|
||||||
'ptlt' : point_list,
|
|
||||||
'gobs' : ordering,
|
|
||||||
'pdpt' : pixel_depth,
|
|
||||||
'pnel' : default_location,
|
|
||||||
'pchd' : corner_curve_height,
|
|
||||||
'pbcl' : background_color,
|
|
||||||
'pnam' : name,
|
|
||||||
'pdrt' : definition_rect,
|
|
||||||
'ptsz' : size,
|
|
||||||
'pupd' : update_on_change,
|
'pupd' : update_on_change,
|
||||||
'pppa' : pen_pattern,
|
'txst' : style,
|
||||||
|
'ustl' : uniform_styles,
|
||||||
}
|
}
|
||||||
|
|
||||||
_compdeclarations = {
|
_compdeclarations = {
|
||||||
|
|
|
@ -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 = {
|
||||||
|
|
|
@ -457,22 +457,22 @@ aliases = alias
|
||||||
class application(aetools.ComponentItem):
|
class application(aetools.ComponentItem):
|
||||||
"""application - An application program """
|
"""application - An application program """
|
||||||
want = 'capp'
|
want = 'capp'
|
||||||
class name(aetools.NProperty):
|
|
||||||
"""name - the name of the application """
|
|
||||||
which = 'pnam'
|
|
||||||
want = 'itxt'
|
|
||||||
class frontmost(aetools.NProperty):
|
|
||||||
"""frontmost - Is this the frontmost application? """
|
|
||||||
which = 'pisf'
|
|
||||||
want = 'bool'
|
|
||||||
class selection(aetools.NProperty):
|
|
||||||
"""selection - the selection visible to the user. Use the \xd4select\xd5 command to set a new selection; use \xd4contents of selection\xd5 to get or change information in the document. """
|
|
||||||
which = 'sele'
|
|
||||||
want = 'csel'
|
|
||||||
class clipboard(aetools.NProperty):
|
class clipboard(aetools.NProperty):
|
||||||
"""clipboard - the contents of the clipboard for this application """
|
"""clipboard - the contents of the clipboard for this application """
|
||||||
which = 'pcli'
|
which = 'pcli'
|
||||||
want = '****'
|
want = '****'
|
||||||
|
class frontmost(aetools.NProperty):
|
||||||
|
"""frontmost - Is this the frontmost application? """
|
||||||
|
which = 'pisf'
|
||||||
|
want = 'bool'
|
||||||
|
class name(aetools.NProperty):
|
||||||
|
"""name - the name of the application """
|
||||||
|
which = 'pnam'
|
||||||
|
want = 'itxt'
|
||||||
|
class selection(aetools.NProperty):
|
||||||
|
"""selection - the selection visible to the user. Use the \xd4select\xd5 command to set a new selection; use \xd4contents of selection\xd5 to get or change information in the document. """
|
||||||
|
which = 'sele'
|
||||||
|
want = 'csel'
|
||||||
class version(aetools.NProperty):
|
class version(aetools.NProperty):
|
||||||
"""version - the version of the application """
|
"""version - the version of the application """
|
||||||
which = 'vers'
|
which = 'vers'
|
||||||
|
@ -525,18 +525,14 @@ class closeable(aetools.NProperty):
|
||||||
"""closeable - Does the window have a close box? """
|
"""closeable - Does the window have a close box? """
|
||||||
which = 'hclb'
|
which = 'hclb'
|
||||||
want = 'bool'
|
want = 'bool'
|
||||||
class titled(aetools.NProperty):
|
class floating(aetools.NProperty):
|
||||||
"""titled - Does the window have a title bar? """
|
"""floating - Does the window float? """
|
||||||
which = 'ptit'
|
which = 'isfl'
|
||||||
want = 'bool'
|
want = 'bool'
|
||||||
class index(aetools.NProperty):
|
class index(aetools.NProperty):
|
||||||
"""index - the number of the window """
|
"""index - the number of the window """
|
||||||
which = 'pidx'
|
which = 'pidx'
|
||||||
want = 'long'
|
want = 'long'
|
||||||
class floating(aetools.NProperty):
|
|
||||||
"""floating - Does the window float? """
|
|
||||||
which = 'isfl'
|
|
||||||
want = 'bool'
|
|
||||||
class modal(aetools.NProperty):
|
class modal(aetools.NProperty):
|
||||||
"""modal - Is the window modal? """
|
"""modal - Is the window modal? """
|
||||||
which = 'pmod'
|
which = 'pmod'
|
||||||
|
@ -545,6 +541,14 @@ class resizable(aetools.NProperty):
|
||||||
"""resizable - Is the window resizable? """
|
"""resizable - Is the window resizable? """
|
||||||
which = 'prsz'
|
which = 'prsz'
|
||||||
want = 'bool'
|
want = 'bool'
|
||||||
|
class titled(aetools.NProperty):
|
||||||
|
"""titled - Does the window have a title bar? """
|
||||||
|
which = 'ptit'
|
||||||
|
want = 'bool'
|
||||||
|
class visible(aetools.NProperty):
|
||||||
|
"""visible - Is the window visible? """
|
||||||
|
which = 'pvis'
|
||||||
|
want = 'bool'
|
||||||
class zoomable(aetools.NProperty):
|
class zoomable(aetools.NProperty):
|
||||||
"""zoomable - Is the window zoomable? """
|
"""zoomable - Is the window zoomable? """
|
||||||
which = 'iszm'
|
which = 'iszm'
|
||||||
|
@ -553,10 +557,6 @@ class zoomed(aetools.NProperty):
|
||||||
"""zoomed - Is the window zoomed? """
|
"""zoomed - Is the window zoomed? """
|
||||||
which = 'pzum'
|
which = 'pzum'
|
||||||
want = 'bool'
|
want = 'bool'
|
||||||
class visible(aetools.NProperty):
|
|
||||||
"""visible - Is the window visible? """
|
|
||||||
which = 'pvis'
|
|
||||||
want = 'bool'
|
|
||||||
|
|
||||||
windows = window
|
windows = window
|
||||||
alias._superclassnames = []
|
alias._superclassnames = []
|
||||||
|
@ -566,10 +566,10 @@ alias._privelemdict = {
|
||||||
}
|
}
|
||||||
application._superclassnames = []
|
application._superclassnames = []
|
||||||
application._privpropdict = {
|
application._privpropdict = {
|
||||||
'name' : name,
|
|
||||||
'frontmost' : frontmost,
|
|
||||||
'selection' : selection,
|
|
||||||
'clipboard' : clipboard,
|
'clipboard' : clipboard,
|
||||||
|
'frontmost' : frontmost,
|
||||||
|
'name' : name,
|
||||||
|
'selection' : selection,
|
||||||
'version' : version,
|
'version' : version,
|
||||||
}
|
}
|
||||||
application._privelemdict = {
|
application._privelemdict = {
|
||||||
|
@ -601,14 +601,14 @@ window._superclassnames = []
|
||||||
window._privpropdict = {
|
window._privpropdict = {
|
||||||
'bounds' : bounds,
|
'bounds' : bounds,
|
||||||
'closeable' : closeable,
|
'closeable' : closeable,
|
||||||
'titled' : titled,
|
|
||||||
'index' : index,
|
|
||||||
'floating' : floating,
|
'floating' : floating,
|
||||||
|
'index' : index,
|
||||||
'modal' : modal,
|
'modal' : modal,
|
||||||
'resizable' : resizable,
|
'resizable' : resizable,
|
||||||
|
'titled' : titled,
|
||||||
|
'visible' : visible,
|
||||||
'zoomable' : zoomable,
|
'zoomable' : zoomable,
|
||||||
'zoomed' : zoomed,
|
'zoomed' : zoomed,
|
||||||
'visible' : visible,
|
|
||||||
}
|
}
|
||||||
window._privelemdict = {
|
window._privelemdict = {
|
||||||
}
|
}
|
||||||
|
@ -663,49 +663,49 @@ _Enum_styl = {
|
||||||
# Indices of types declared in this module
|
# Indices of types declared in this module
|
||||||
#
|
#
|
||||||
_classdeclarations = {
|
_classdeclarations = {
|
||||||
'cwin' : window,
|
|
||||||
'file' : file,
|
|
||||||
'csel' : selection_2d_object,
|
|
||||||
'alis' : alias,
|
'alis' : alias,
|
||||||
'capp' : application,
|
'capp' : application,
|
||||||
'cins' : insertion_point,
|
'cins' : insertion_point,
|
||||||
|
'csel' : selection_2d_object,
|
||||||
|
'cwin' : window,
|
||||||
'docu' : document,
|
'docu' : document,
|
||||||
|
'file' : file,
|
||||||
}
|
}
|
||||||
|
|
||||||
_propdeclarations = {
|
_propdeclarations = {
|
||||||
'prsz' : resizable,
|
'hclb' : closeable,
|
||||||
'vers' : version,
|
|
||||||
'pidx' : index,
|
|
||||||
'pvis' : visible,
|
|
||||||
'imod' : modified,
|
'imod' : modified,
|
||||||
'pbnd' : bounds,
|
|
||||||
'sele' : selection,
|
|
||||||
'pisf' : frontmost,
|
|
||||||
'pspd' : stationery,
|
|
||||||
'isfl' : floating,
|
'isfl' : floating,
|
||||||
'iszm' : zoomable,
|
'iszm' : zoomable,
|
||||||
'hclb' : closeable,
|
'pbnd' : bounds,
|
||||||
'pcli' : clipboard,
|
'pcli' : clipboard,
|
||||||
'pmod' : modal,
|
|
||||||
'pcnt' : contents,
|
'pcnt' : contents,
|
||||||
|
'pidx' : index,
|
||||||
|
'pisf' : frontmost,
|
||||||
|
'pmod' : modal,
|
||||||
'pnam' : name,
|
'pnam' : name,
|
||||||
'pzum' : zoomed,
|
'prsz' : resizable,
|
||||||
|
'pspd' : stationery,
|
||||||
'ptit' : titled,
|
'ptit' : titled,
|
||||||
|
'pvis' : visible,
|
||||||
|
'pzum' : zoomed,
|
||||||
|
'sele' : selection,
|
||||||
|
'vers' : version,
|
||||||
}
|
}
|
||||||
|
|
||||||
_compdeclarations = {
|
_compdeclarations = {
|
||||||
'< ' : _3c_,
|
'< ' : _3c_,
|
||||||
'ends' : ends_with,
|
|
||||||
'>= ' : _b3_,
|
|
||||||
'cont' : contains,
|
|
||||||
'<= ' : _b2_,
|
'<= ' : _b2_,
|
||||||
'= ' : _3d_,
|
'= ' : _3d_,
|
||||||
'bgwt' : starts_with,
|
|
||||||
'> ' : _3e_,
|
'> ' : _3e_,
|
||||||
|
'>= ' : _b3_,
|
||||||
|
'bgwt' : starts_with,
|
||||||
|
'cont' : contains,
|
||||||
|
'ends' : ends_with,
|
||||||
}
|
}
|
||||||
|
|
||||||
_enumdeclarations = {
|
_enumdeclarations = {
|
||||||
|
'kfrm' : _Enum_kfrm,
|
||||||
'savo' : _Enum_savo,
|
'savo' : _Enum_savo,
|
||||||
'styl' : _Enum_styl,
|
'styl' : _Enum_styl,
|
||||||
'kfrm' : _Enum_kfrm,
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -86,13 +86,13 @@ _Enum_prtn = {
|
||||||
_classdeclarations = {
|
_classdeclarations = {
|
||||||
'ccel' : cell,
|
'ccel' : cell,
|
||||||
'ccol' : column,
|
'ccol' : column,
|
||||||
'ctbl' : table,
|
|
||||||
'crow' : row,
|
'crow' : row,
|
||||||
|
'ctbl' : table,
|
||||||
}
|
}
|
||||||
|
|
||||||
_propdeclarations = {
|
_propdeclarations = {
|
||||||
'pnam' : name,
|
|
||||||
'pfor' : formula,
|
'pfor' : formula,
|
||||||
|
'pnam' : name,
|
||||||
'ppro' : protection,
|
'ppro' : protection,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -54,10 +54,6 @@ class size(aetools.NProperty):
|
||||||
"""size - the size in points of the first character """
|
"""size - the size in points of the first character """
|
||||||
which = 'ptsz'
|
which = 'ptsz'
|
||||||
want = 'fixd'
|
want = 'fixd'
|
||||||
class writing_code(aetools.NProperty):
|
|
||||||
"""writing code - the script system and language """
|
|
||||||
which = 'psct'
|
|
||||||
want = 'intl'
|
|
||||||
class style(aetools.NProperty):
|
class style(aetools.NProperty):
|
||||||
"""style - the text style of the first character of the first character """
|
"""style - the text style of the first character of the first character """
|
||||||
which = 'txst'
|
which = 'txst'
|
||||||
|
@ -66,6 +62,10 @@ class uniform_styles(aetools.NProperty):
|
||||||
"""uniform styles - the text styles that are uniform throughout the text """
|
"""uniform styles - the text styles that are uniform throughout the text """
|
||||||
which = 'ustl'
|
which = 'ustl'
|
||||||
want = 'tsty'
|
want = 'tsty'
|
||||||
|
class writing_code(aetools.NProperty):
|
||||||
|
"""writing code - the script system and language """
|
||||||
|
which = 'psct'
|
||||||
|
want = 'intl'
|
||||||
# element 'cha ' as ['indx']
|
# element 'cha ' as ['indx']
|
||||||
# element 'clin' as ['indx']
|
# element 'clin' as ['indx']
|
||||||
# element 'cpar' as ['indx']
|
# element 'cpar' as ['indx']
|
||||||
|
@ -85,14 +85,14 @@ text_flows = text_flow
|
||||||
class text_style_info(aetools.ComponentItem):
|
class text_style_info(aetools.ComponentItem):
|
||||||
"""text style info - On and Off styles of text run """
|
"""text style info - On and Off styles of text run """
|
||||||
want = 'tsty'
|
want = 'tsty'
|
||||||
class on_styles(aetools.NProperty):
|
|
||||||
"""on styles - the styles that are on for the text """
|
|
||||||
which = 'onst'
|
|
||||||
want = 'styl'
|
|
||||||
class off_styles(aetools.NProperty):
|
class off_styles(aetools.NProperty):
|
||||||
"""off styles - the styles that are off for the text """
|
"""off styles - the styles that are off for the text """
|
||||||
which = 'ofst'
|
which = 'ofst'
|
||||||
want = 'styl'
|
want = 'styl'
|
||||||
|
class on_styles(aetools.NProperty):
|
||||||
|
"""on styles - the styles that are on for the text """
|
||||||
|
which = 'onst'
|
||||||
|
want = 'styl'
|
||||||
|
|
||||||
text_style_infos = text_style_info
|
text_style_infos = text_style_info
|
||||||
|
|
||||||
|
@ -125,9 +125,9 @@ text._privpropdict = {
|
||||||
'color' : color,
|
'color' : color,
|
||||||
'font' : font,
|
'font' : font,
|
||||||
'size' : size,
|
'size' : size,
|
||||||
'writing_code' : writing_code,
|
|
||||||
'style' : style,
|
'style' : style,
|
||||||
'uniform_styles' : uniform_styles,
|
'uniform_styles' : uniform_styles,
|
||||||
|
'writing_code' : writing_code,
|
||||||
}
|
}
|
||||||
text._privelemdict = {
|
text._privelemdict = {
|
||||||
'character' : character,
|
'character' : character,
|
||||||
|
@ -145,8 +145,8 @@ text_flow._privelemdict = {
|
||||||
}
|
}
|
||||||
text_style_info._superclassnames = []
|
text_style_info._superclassnames = []
|
||||||
text_style_info._privpropdict = {
|
text_style_info._privpropdict = {
|
||||||
'on_styles' : on_styles,
|
|
||||||
'off_styles' : off_styles,
|
'off_styles' : off_styles,
|
||||||
|
'on_styles' : on_styles,
|
||||||
}
|
}
|
||||||
text_style_info._privelemdict = {
|
text_style_info._privelemdict = {
|
||||||
}
|
}
|
||||||
|
@ -186,33 +186,33 @@ _Enum_styl = {
|
||||||
# Indices of types declared in this module
|
# Indices of types declared in this module
|
||||||
#
|
#
|
||||||
_classdeclarations = {
|
_classdeclarations = {
|
||||||
'cpar' : paragraph,
|
|
||||||
'cha ' : character,
|
|
||||||
'cflo' : text_flow,
|
'cflo' : text_flow,
|
||||||
'tsty' : text_style_info,
|
'cha ' : character,
|
||||||
'clin' : line,
|
'clin' : line,
|
||||||
'cwor' : word,
|
'cpar' : paragraph,
|
||||||
'ctxt' : text,
|
'ctxt' : text,
|
||||||
|
'cwor' : word,
|
||||||
|
'tsty' : text_style_info,
|
||||||
}
|
}
|
||||||
|
|
||||||
_propdeclarations = {
|
_propdeclarations = {
|
||||||
'ptsz' : size,
|
|
||||||
'ofst' : off_styles,
|
|
||||||
'pjst' : justification,
|
|
||||||
'colr' : color,
|
|
||||||
'txst' : style,
|
|
||||||
'psct' : writing_code,
|
|
||||||
'ustl' : uniform_styles,
|
|
||||||
'c@#^' : _3c_inheritance_3e_,
|
'c@#^' : _3c_inheritance_3e_,
|
||||||
'pnam' : name,
|
'colr' : color,
|
||||||
'font' : font,
|
'font' : font,
|
||||||
|
'ofst' : off_styles,
|
||||||
'onst' : on_styles,
|
'onst' : on_styles,
|
||||||
|
'pjst' : justification,
|
||||||
|
'pnam' : name,
|
||||||
|
'psct' : writing_code,
|
||||||
|
'ptsz' : size,
|
||||||
|
'txst' : style,
|
||||||
|
'ustl' : uniform_styles,
|
||||||
}
|
}
|
||||||
|
|
||||||
_compdeclarations = {
|
_compdeclarations = {
|
||||||
}
|
}
|
||||||
|
|
||||||
_enumdeclarations = {
|
_enumdeclarations = {
|
||||||
'styl' : _Enum_styl,
|
|
||||||
'just' : _Enum_just,
|
'just' : _Enum_just,
|
||||||
|
'styl' : _Enum_styl,
|
||||||
}
|
}
|
||||||
|
|
|
@ -388,46 +388,46 @@ version._privelemdict = {
|
||||||
# Indices of types declared in this module
|
# Indices of types declared in this module
|
||||||
#
|
#
|
||||||
_classdeclarations = {
|
_classdeclarations = {
|
||||||
'shor' : small_integer,
|
|
||||||
'tr16' : RGB16_color,
|
|
||||||
'vers' : version,
|
|
||||||
'aeut' : system_dictionary,
|
|
||||||
'clrt' : color_table,
|
|
||||||
'fpnt' : fixed_point,
|
|
||||||
'TIFF' : TIFF_picture,
|
|
||||||
'elin' : type_element_info,
|
|
||||||
'insl' : location_reference,
|
|
||||||
'mLoc' : machine_location,
|
|
||||||
'EPS ' : PostScript_picture,
|
'EPS ' : PostScript_picture,
|
||||||
'QDpt' : point,
|
'QDpt' : point,
|
||||||
'cmen' : menu_item,
|
|
||||||
'tpmm' : pixel_map_record,
|
|
||||||
'aete' : application_dictionary,
|
|
||||||
'TEXT' : plain_text,
|
'TEXT' : plain_text,
|
||||||
'magn' : unsigned_integer,
|
'TIFF' : TIFF_picture,
|
||||||
|
'aete' : application_dictionary,
|
||||||
|
'aeut' : system_dictionary,
|
||||||
|
'clrt' : color_table,
|
||||||
|
'cmen' : menu_item,
|
||||||
'cmnu' : menu,
|
'cmnu' : menu,
|
||||||
'frct' : fixed_rectangle,
|
|
||||||
'pinf' : type_property_info,
|
|
||||||
'lfrc' : long_fixed_rectangle,
|
|
||||||
'evin' : type_event_info,
|
|
||||||
'sing' : small_real,
|
|
||||||
'suin' : type_suite_info,
|
|
||||||
'trot' : rotation,
|
|
||||||
'fixd' : fixed,
|
|
||||||
'styl' : scrap_styles,
|
|
||||||
'lpnt' : long_point,
|
|
||||||
'gcli' : type_class_info,
|
|
||||||
'tr96' : RGB96_color,
|
|
||||||
'tdas' : dash_style,
|
|
||||||
'exte' : extended_real,
|
|
||||||
'pmin' : type_parameter_info,
|
|
||||||
'lfpt' : long_fixed_point,
|
|
||||||
'lrct' : long_rectangle,
|
|
||||||
'qdrt' : bounding_rectangle,
|
|
||||||
'comp' : double_integer,
|
'comp' : double_integer,
|
||||||
|
'elin' : type_element_info,
|
||||||
|
'evin' : type_event_info,
|
||||||
|
'exte' : extended_real,
|
||||||
|
'fixd' : fixed,
|
||||||
|
'fpnt' : fixed_point,
|
||||||
|
'frct' : fixed_rectangle,
|
||||||
|
'gcli' : type_class_info,
|
||||||
|
'insl' : location_reference,
|
||||||
|
'lfpt' : long_fixed_point,
|
||||||
|
'lfrc' : long_fixed_rectangle,
|
||||||
'lfxd' : long_fixed,
|
'lfxd' : long_fixed,
|
||||||
|
'lpnt' : long_point,
|
||||||
|
'lrct' : long_rectangle,
|
||||||
|
'mLoc' : machine_location,
|
||||||
|
'magn' : unsigned_integer,
|
||||||
'null' : null,
|
'null' : null,
|
||||||
|
'pinf' : type_property_info,
|
||||||
|
'pmin' : type_parameter_info,
|
||||||
|
'qdrt' : bounding_rectangle,
|
||||||
|
'shor' : small_integer,
|
||||||
|
'sing' : small_real,
|
||||||
|
'styl' : scrap_styles,
|
||||||
|
'suin' : type_suite_info,
|
||||||
'targ' : target_id,
|
'targ' : target_id,
|
||||||
|
'tdas' : dash_style,
|
||||||
|
'tpmm' : pixel_map_record,
|
||||||
|
'tr16' : RGB16_color,
|
||||||
|
'tr96' : RGB96_color,
|
||||||
|
'trot' : rotation,
|
||||||
|
'vers' : version,
|
||||||
}
|
}
|
||||||
|
|
||||||
_propdeclarations = {
|
_propdeclarations = {
|
||||||
|
|
|
@ -68,53 +68,6 @@ 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(window)
|
|
||||||
getbaseclasses(file)
|
|
||||||
getbaseclasses(selection_2d_object)
|
|
||||||
getbaseclasses(alias)
|
|
||||||
getbaseclasses(application)
|
|
||||||
getbaseclasses(insertion_point)
|
|
||||||
getbaseclasses(document)
|
|
||||||
getbaseclasses(small_integer)
|
|
||||||
getbaseclasses(RGB16_color)
|
|
||||||
getbaseclasses(version)
|
|
||||||
getbaseclasses(system_dictionary)
|
|
||||||
getbaseclasses(color_table)
|
|
||||||
getbaseclasses(fixed_point)
|
|
||||||
getbaseclasses(plain_text)
|
|
||||||
getbaseclasses(type_element_info)
|
|
||||||
getbaseclasses(location_reference)
|
|
||||||
getbaseclasses(machine_location)
|
|
||||||
getbaseclasses(PostScript_picture)
|
|
||||||
getbaseclasses(point)
|
|
||||||
getbaseclasses(menu_item)
|
|
||||||
getbaseclasses(pixel_map_record)
|
|
||||||
getbaseclasses(application_dictionary)
|
|
||||||
getbaseclasses(unsigned_integer)
|
|
||||||
getbaseclasses(menu)
|
|
||||||
getbaseclasses(fixed_rectangle)
|
|
||||||
getbaseclasses(long_fixed_rectangle)
|
|
||||||
getbaseclasses(type_event_info)
|
|
||||||
getbaseclasses(small_real)
|
|
||||||
getbaseclasses(type_suite_info)
|
|
||||||
getbaseclasses(rotation)
|
|
||||||
getbaseclasses(type_parameter_info)
|
|
||||||
getbaseclasses(fixed)
|
|
||||||
getbaseclasses(scrap_styles)
|
|
||||||
getbaseclasses(long_point)
|
|
||||||
getbaseclasses(type_class_info)
|
|
||||||
getbaseclasses(TIFF_picture)
|
|
||||||
getbaseclasses(RGB96_color)
|
|
||||||
getbaseclasses(dash_style)
|
|
||||||
getbaseclasses(extended_real)
|
|
||||||
getbaseclasses(type_property_info)
|
|
||||||
getbaseclasses(long_fixed_point)
|
|
||||||
getbaseclasses(long_rectangle)
|
|
||||||
getbaseclasses(bounding_rectangle)
|
|
||||||
getbaseclasses(double_integer)
|
|
||||||
getbaseclasses(long_fixed)
|
|
||||||
getbaseclasses(null)
|
|
||||||
getbaseclasses(target_id)
|
|
||||||
getbaseclasses(paragraph)
|
getbaseclasses(paragraph)
|
||||||
getbaseclasses(character)
|
getbaseclasses(character)
|
||||||
getbaseclasses(text_flow)
|
getbaseclasses(text_flow)
|
||||||
|
@ -258,58 +211,58 @@ getbaseclasses(Saturday)
|
||||||
getbaseclasses(September)
|
getbaseclasses(September)
|
||||||
getbaseclasses(file_specification)
|
getbaseclasses(file_specification)
|
||||||
getbaseclasses(text)
|
getbaseclasses(text)
|
||||||
|
getbaseclasses(window)
|
||||||
|
getbaseclasses(file)
|
||||||
|
getbaseclasses(selection_2d_object)
|
||||||
|
getbaseclasses(alias)
|
||||||
|
getbaseclasses(application)
|
||||||
|
getbaseclasses(insertion_point)
|
||||||
|
getbaseclasses(document)
|
||||||
|
getbaseclasses(small_integer)
|
||||||
|
getbaseclasses(RGB16_color)
|
||||||
|
getbaseclasses(version)
|
||||||
|
getbaseclasses(system_dictionary)
|
||||||
|
getbaseclasses(color_table)
|
||||||
|
getbaseclasses(fixed_point)
|
||||||
|
getbaseclasses(plain_text)
|
||||||
|
getbaseclasses(type_element_info)
|
||||||
|
getbaseclasses(location_reference)
|
||||||
|
getbaseclasses(machine_location)
|
||||||
|
getbaseclasses(PostScript_picture)
|
||||||
|
getbaseclasses(point)
|
||||||
|
getbaseclasses(menu_item)
|
||||||
|
getbaseclasses(pixel_map_record)
|
||||||
|
getbaseclasses(application_dictionary)
|
||||||
|
getbaseclasses(unsigned_integer)
|
||||||
|
getbaseclasses(menu)
|
||||||
|
getbaseclasses(fixed_rectangle)
|
||||||
|
getbaseclasses(long_fixed_rectangle)
|
||||||
|
getbaseclasses(type_event_info)
|
||||||
|
getbaseclasses(small_real)
|
||||||
|
getbaseclasses(type_suite_info)
|
||||||
|
getbaseclasses(rotation)
|
||||||
|
getbaseclasses(type_parameter_info)
|
||||||
|
getbaseclasses(fixed)
|
||||||
|
getbaseclasses(scrap_styles)
|
||||||
|
getbaseclasses(long_point)
|
||||||
|
getbaseclasses(type_class_info)
|
||||||
|
getbaseclasses(TIFF_picture)
|
||||||
|
getbaseclasses(RGB96_color)
|
||||||
|
getbaseclasses(dash_style)
|
||||||
|
getbaseclasses(extended_real)
|
||||||
|
getbaseclasses(type_property_info)
|
||||||
|
getbaseclasses(long_fixed_point)
|
||||||
|
getbaseclasses(long_rectangle)
|
||||||
|
getbaseclasses(bounding_rectangle)
|
||||||
|
getbaseclasses(double_integer)
|
||||||
|
getbaseclasses(long_fixed)
|
||||||
|
getbaseclasses(null)
|
||||||
|
getbaseclasses(target_id)
|
||||||
|
|
||||||
#
|
#
|
||||||
# Indices of types declared in this module
|
# Indices of types declared in this module
|
||||||
#
|
#
|
||||||
_classdeclarations = {
|
_classdeclarations = {
|
||||||
'cwin' : window,
|
|
||||||
'file' : file,
|
|
||||||
'csel' : selection_2d_object,
|
|
||||||
'alis' : alias,
|
|
||||||
'capp' : application,
|
|
||||||
'cins' : insertion_point,
|
|
||||||
'docu' : document,
|
|
||||||
'shor' : small_integer,
|
|
||||||
'tr16' : RGB16_color,
|
|
||||||
'vers' : version,
|
|
||||||
'aeut' : system_dictionary,
|
|
||||||
'clrt' : color_table,
|
|
||||||
'fpnt' : fixed_point,
|
|
||||||
'TEXT' : plain_text,
|
|
||||||
'elin' : type_element_info,
|
|
||||||
'insl' : location_reference,
|
|
||||||
'mLoc' : machine_location,
|
|
||||||
'EPS ' : PostScript_picture,
|
|
||||||
'QDpt' : point,
|
|
||||||
'cmen' : menu_item,
|
|
||||||
'tpmm' : pixel_map_record,
|
|
||||||
'aete' : application_dictionary,
|
|
||||||
'magn' : unsigned_integer,
|
|
||||||
'cmnu' : menu,
|
|
||||||
'frct' : fixed_rectangle,
|
|
||||||
'lfrc' : long_fixed_rectangle,
|
|
||||||
'evin' : type_event_info,
|
|
||||||
'sing' : small_real,
|
|
||||||
'suin' : type_suite_info,
|
|
||||||
'trot' : rotation,
|
|
||||||
'pmin' : type_parameter_info,
|
|
||||||
'fixd' : fixed,
|
|
||||||
'styl' : scrap_styles,
|
|
||||||
'lpnt' : long_point,
|
|
||||||
'gcli' : type_class_info,
|
|
||||||
'TIFF' : TIFF_picture,
|
|
||||||
'tr96' : RGB96_color,
|
|
||||||
'tdas' : dash_style,
|
|
||||||
'exte' : extended_real,
|
|
||||||
'pinf' : type_property_info,
|
|
||||||
'lfpt' : long_fixed_point,
|
|
||||||
'lrct' : long_rectangle,
|
|
||||||
'qdrt' : bounding_rectangle,
|
|
||||||
'comp' : double_integer,
|
|
||||||
'lfxd' : long_fixed,
|
|
||||||
'null' : null,
|
|
||||||
'targ' : target_id,
|
|
||||||
'cpar' : paragraph,
|
'cpar' : paragraph,
|
||||||
'cha ' : character,
|
'cha ' : character,
|
||||||
'cflo' : text_flow,
|
'cflo' : text_flow,
|
||||||
|
@ -453,6 +406,53 @@ _classdeclarations = {
|
||||||
'sep ' : September,
|
'sep ' : September,
|
||||||
'fss ' : file_specification,
|
'fss ' : file_specification,
|
||||||
'ctxt' : text,
|
'ctxt' : text,
|
||||||
|
'cwin' : window,
|
||||||
|
'file' : file,
|
||||||
|
'csel' : selection_2d_object,
|
||||||
|
'alis' : alias,
|
||||||
|
'capp' : application,
|
||||||
|
'cins' : insertion_point,
|
||||||
|
'docu' : document,
|
||||||
|
'shor' : small_integer,
|
||||||
|
'tr16' : RGB16_color,
|
||||||
|
'vers' : version,
|
||||||
|
'aeut' : system_dictionary,
|
||||||
|
'clrt' : color_table,
|
||||||
|
'fpnt' : fixed_point,
|
||||||
|
'TEXT' : plain_text,
|
||||||
|
'elin' : type_element_info,
|
||||||
|
'insl' : location_reference,
|
||||||
|
'mLoc' : machine_location,
|
||||||
|
'EPS ' : PostScript_picture,
|
||||||
|
'QDpt' : point,
|
||||||
|
'cmen' : menu_item,
|
||||||
|
'tpmm' : pixel_map_record,
|
||||||
|
'aete' : application_dictionary,
|
||||||
|
'magn' : unsigned_integer,
|
||||||
|
'cmnu' : menu,
|
||||||
|
'frct' : fixed_rectangle,
|
||||||
|
'lfrc' : long_fixed_rectangle,
|
||||||
|
'evin' : type_event_info,
|
||||||
|
'sing' : small_real,
|
||||||
|
'suin' : type_suite_info,
|
||||||
|
'trot' : rotation,
|
||||||
|
'pmin' : type_parameter_info,
|
||||||
|
'fixd' : fixed,
|
||||||
|
'styl' : scrap_styles,
|
||||||
|
'lpnt' : long_point,
|
||||||
|
'gcli' : type_class_info,
|
||||||
|
'TIFF' : TIFF_picture,
|
||||||
|
'tr96' : RGB96_color,
|
||||||
|
'tdas' : dash_style,
|
||||||
|
'exte' : extended_real,
|
||||||
|
'pinf' : type_property_info,
|
||||||
|
'lfpt' : long_fixed_point,
|
||||||
|
'lrct' : long_rectangle,
|
||||||
|
'qdrt' : bounding_rectangle,
|
||||||
|
'comp' : double_integer,
|
||||||
|
'lfxd' : long_fixed,
|
||||||
|
'null' : null,
|
||||||
|
'targ' : target_id,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -102,6 +102,10 @@ class Terminal_Suite_Events:
|
||||||
class application(aetools.ComponentItem):
|
class application(aetools.ComponentItem):
|
||||||
"""application - The Terminal program """
|
"""application - The Terminal program """
|
||||||
want = 'capp'
|
want = 'capp'
|
||||||
|
class frontmost(aetools.NProperty):
|
||||||
|
"""frontmost - Is this the active application? """
|
||||||
|
which = 'pisf'
|
||||||
|
want = 'bool'
|
||||||
class name(aetools.NProperty):
|
class name(aetools.NProperty):
|
||||||
"""name - the name of the application """
|
"""name - the name of the application """
|
||||||
which = 'pnam'
|
which = 'pnam'
|
||||||
|
@ -110,10 +114,6 @@ class version(aetools.NProperty):
|
||||||
"""version - the version of the application """
|
"""version - the version of the application """
|
||||||
which = 'vers'
|
which = 'vers'
|
||||||
want = 'vers'
|
want = 'vers'
|
||||||
class frontmost(aetools.NProperty):
|
|
||||||
"""frontmost - Is this the active application? """
|
|
||||||
which = 'pisf'
|
|
||||||
want = 'bool'
|
|
||||||
# element 'cwin' as ['name', 'indx']
|
# element 'cwin' as ['name', 'indx']
|
||||||
|
|
||||||
applications = application
|
applications = application
|
||||||
|
@ -121,14 +121,42 @@ applications = application
|
||||||
class window(aetools.ComponentItem):
|
class window(aetools.ComponentItem):
|
||||||
"""window - A Terminal window """
|
"""window - A Terminal window """
|
||||||
want = 'cwin'
|
want = 'cwin'
|
||||||
class index(aetools.NProperty):
|
class background_color(aetools.NProperty):
|
||||||
"""index - the number of the window """
|
"""background color - the background color for the window """
|
||||||
which = 'pidx'
|
which = 'pbcl'
|
||||||
want = 'long'
|
want = 'TEXT'
|
||||||
|
class bold_text_color(aetools.NProperty):
|
||||||
|
"""bold text color - the bold text color for the window """
|
||||||
|
which = 'pbtc'
|
||||||
|
want = 'TEXT'
|
||||||
class bounds(aetools.NProperty):
|
class bounds(aetools.NProperty):
|
||||||
"""bounds - the boundary rectangle for the window, relative to the upper left corner of the screen """
|
"""bounds - the boundary rectangle for the window, relative to the upper left corner of the screen """
|
||||||
which = 'pbnd'
|
which = 'pbnd'
|
||||||
want = 'qdrt'
|
want = 'qdrt'
|
||||||
|
class busy(aetools.NProperty):
|
||||||
|
"""busy - Is the window busy running a process? """
|
||||||
|
which = 'busy'
|
||||||
|
want = 'bool'
|
||||||
|
class contents(aetools.NProperty):
|
||||||
|
"""contents - the currently visible contents of the window """
|
||||||
|
which = 'pcnt'
|
||||||
|
want = 'TEXT'
|
||||||
|
class cursor_color(aetools.NProperty):
|
||||||
|
"""cursor color - the cursor color for the window """
|
||||||
|
which = 'pcuc'
|
||||||
|
want = 'TEXT'
|
||||||
|
class custom_title(aetools.NProperty):
|
||||||
|
"""custom title - the custom title for the window """
|
||||||
|
which = 'titl'
|
||||||
|
want = 'TEXT'
|
||||||
|
class floating(aetools.NProperty):
|
||||||
|
"""floating - Does the window float? """
|
||||||
|
which = 'isfl'
|
||||||
|
want = 'bool'
|
||||||
|
class frame(aetools.NProperty):
|
||||||
|
"""frame - the origin and size of the window """
|
||||||
|
which = 'pfra'
|
||||||
|
want = 'list'
|
||||||
class has_close_box(aetools.NProperty):
|
class has_close_box(aetools.NProperty):
|
||||||
"""has close box - Does the window have a close box? """
|
"""has close box - Does the window have a close box? """
|
||||||
which = 'hclb'
|
which = 'hclb'
|
||||||
|
@ -137,10 +165,14 @@ class has_title_bar(aetools.NProperty):
|
||||||
"""has title bar - Does the window have a title bar? """
|
"""has title bar - Does the window have a title bar? """
|
||||||
which = 'ptit'
|
which = 'ptit'
|
||||||
want = 'bool'
|
want = 'bool'
|
||||||
class floating(aetools.NProperty):
|
class history(aetools.NProperty):
|
||||||
"""floating - Does the window float? """
|
"""history - the contents of the entire scrolling buffer of the window """
|
||||||
which = 'isfl'
|
which = 'hist'
|
||||||
want = 'bool'
|
want = 'TEXT'
|
||||||
|
class index(aetools.NProperty):
|
||||||
|
"""index - the number of the window """
|
||||||
|
which = 'pidx'
|
||||||
|
want = 'long'
|
||||||
class miniaturizable(aetools.NProperty):
|
class miniaturizable(aetools.NProperty):
|
||||||
"""miniaturizable - Is the window miniaturizable? """
|
"""miniaturizable - Is the window miniaturizable? """
|
||||||
which = 'ismn'
|
which = 'ismn'
|
||||||
|
@ -153,10 +185,58 @@ class modal(aetools.NProperty):
|
||||||
"""modal - Is the window modal? """
|
"""modal - Is the window modal? """
|
||||||
which = 'pmod'
|
which = 'pmod'
|
||||||
want = 'bool'
|
want = 'bool'
|
||||||
|
class normal_text_color(aetools.NProperty):
|
||||||
|
"""normal text color - the normal text color for the window """
|
||||||
|
which = 'ptxc'
|
||||||
|
want = 'TEXT'
|
||||||
|
class number_of_columns(aetools.NProperty):
|
||||||
|
"""number of columns - the number of columns in the window """
|
||||||
|
which = 'ccol'
|
||||||
|
want = 'long'
|
||||||
|
class number_of_rows(aetools.NProperty):
|
||||||
|
"""number of rows - the number of rows in the window """
|
||||||
|
which = 'crow'
|
||||||
|
want = 'long'
|
||||||
|
class origin(aetools.NProperty):
|
||||||
|
"""origin - the lower left coordinates of the window, relative to the lower left corner of the screen """
|
||||||
|
which = 'pori'
|
||||||
|
want = 'list'
|
||||||
|
class position(aetools.NProperty):
|
||||||
|
"""position - the upper left coordinates of the window, relative to the upper left corner of the screen """
|
||||||
|
which = 'ppos'
|
||||||
|
want = 'QDpt'
|
||||||
|
class processes(aetools.NProperty):
|
||||||
|
"""processes - a list of the currently running processes """
|
||||||
|
which = 'prcs'
|
||||||
|
want = 'list'
|
||||||
class resizable(aetools.NProperty):
|
class resizable(aetools.NProperty):
|
||||||
"""resizable - Is the window resizable? """
|
"""resizable - Is the window resizable? """
|
||||||
which = 'prsz'
|
which = 'prsz'
|
||||||
want = 'bool'
|
want = 'bool'
|
||||||
|
class size(aetools.NProperty):
|
||||||
|
"""size - the width and height of the window """
|
||||||
|
which = 'psiz'
|
||||||
|
want = 'list'
|
||||||
|
class title_displays_custom_title(aetools.NProperty):
|
||||||
|
"""title displays custom title - Does the title for the window contain a custom title? """
|
||||||
|
which = 'tdct'
|
||||||
|
want = 'bool'
|
||||||
|
class title_displays_device_name(aetools.NProperty):
|
||||||
|
"""title displays device name - Does the title for the window contain the device name? """
|
||||||
|
which = 'tddn'
|
||||||
|
want = 'bool'
|
||||||
|
class title_displays_file_name(aetools.NProperty):
|
||||||
|
"""title displays file name - Does the title for the window contain the file name? """
|
||||||
|
which = 'tdfn'
|
||||||
|
want = 'bool'
|
||||||
|
class title_displays_shell_path(aetools.NProperty):
|
||||||
|
"""title displays shell path - Does the title for the window contain the shell path? """
|
||||||
|
which = 'tdsp'
|
||||||
|
want = 'bool'
|
||||||
|
class title_displays_window_size(aetools.NProperty):
|
||||||
|
"""title displays window size - Does the title for the window contain the window size? """
|
||||||
|
which = 'tdws'
|
||||||
|
want = 'bool'
|
||||||
class visible(aetools.NProperty):
|
class visible(aetools.NProperty):
|
||||||
"""visible - Is the window visible? """
|
"""visible - Is the window visible? """
|
||||||
which = 'pvis'
|
which = 'pvis'
|
||||||
|
@ -169,133 +249,53 @@ class zoomed(aetools.NProperty):
|
||||||
"""zoomed - Is the window zoomed? """
|
"""zoomed - Is the window zoomed? """
|
||||||
which = 'pzum'
|
which = 'pzum'
|
||||||
want = 'bool'
|
want = 'bool'
|
||||||
class position(aetools.NProperty):
|
|
||||||
"""position - the upper left coordinates of the window, relative to the upper left corner of the screen """
|
|
||||||
which = 'ppos'
|
|
||||||
want = 'QDpt'
|
|
||||||
class origin(aetools.NProperty):
|
|
||||||
"""origin - the lower left coordinates of the window, relative to the lower left corner of the screen """
|
|
||||||
which = 'pori'
|
|
||||||
want = 'list'
|
|
||||||
class size(aetools.NProperty):
|
|
||||||
"""size - the width and height of the window """
|
|
||||||
which = 'psiz'
|
|
||||||
want = 'list'
|
|
||||||
class frame(aetools.NProperty):
|
|
||||||
"""frame - the origin and size of the window """
|
|
||||||
which = 'pfra'
|
|
||||||
want = 'list'
|
|
||||||
class title_displays_device_name(aetools.NProperty):
|
|
||||||
"""title displays device name - Does the title for the window contain the device name? """
|
|
||||||
which = 'tddn'
|
|
||||||
want = 'bool'
|
|
||||||
class title_displays_shell_path(aetools.NProperty):
|
|
||||||
"""title displays shell path - Does the title for the window contain the shell path? """
|
|
||||||
which = 'tdsp'
|
|
||||||
want = 'bool'
|
|
||||||
class title_displays_window_size(aetools.NProperty):
|
|
||||||
"""title displays window size - Does the title for the window contain the window size? """
|
|
||||||
which = 'tdws'
|
|
||||||
want = 'bool'
|
|
||||||
class title_displays_file_name(aetools.NProperty):
|
|
||||||
"""title displays file name - Does the title for the window contain the file name? """
|
|
||||||
which = 'tdfn'
|
|
||||||
want = 'bool'
|
|
||||||
class title_displays_custom_title(aetools.NProperty):
|
|
||||||
"""title displays custom title - Does the title for the window contain a custom title? """
|
|
||||||
which = 'tdct'
|
|
||||||
want = 'bool'
|
|
||||||
class custom_title(aetools.NProperty):
|
|
||||||
"""custom title - the custom title for the window """
|
|
||||||
which = 'titl'
|
|
||||||
want = 'TEXT'
|
|
||||||
class contents(aetools.NProperty):
|
|
||||||
"""contents - the currently visible contents of the window """
|
|
||||||
which = 'pcnt'
|
|
||||||
want = 'TEXT'
|
|
||||||
class history(aetools.NProperty):
|
|
||||||
"""history - the contents of the entire scrolling buffer of the window """
|
|
||||||
which = 'hist'
|
|
||||||
want = 'TEXT'
|
|
||||||
class number_of_rows(aetools.NProperty):
|
|
||||||
"""number of rows - the number of rows in the window """
|
|
||||||
which = 'crow'
|
|
||||||
want = 'long'
|
|
||||||
class number_of_columns(aetools.NProperty):
|
|
||||||
"""number of columns - the number of columns in the window """
|
|
||||||
which = 'ccol'
|
|
||||||
want = 'long'
|
|
||||||
class cursor_color(aetools.NProperty):
|
|
||||||
"""cursor color - the cursor color for the window """
|
|
||||||
which = 'pcuc'
|
|
||||||
want = 'TEXT'
|
|
||||||
class background_color(aetools.NProperty):
|
|
||||||
"""background color - the background color for the window """
|
|
||||||
which = 'pbcl'
|
|
||||||
want = 'TEXT'
|
|
||||||
class normal_text_color(aetools.NProperty):
|
|
||||||
"""normal text color - the normal text color for the window """
|
|
||||||
which = 'ptxc'
|
|
||||||
want = 'TEXT'
|
|
||||||
class bold_text_color(aetools.NProperty):
|
|
||||||
"""bold text color - the bold text color for the window """
|
|
||||||
which = 'pbtc'
|
|
||||||
want = 'TEXT'
|
|
||||||
class busy(aetools.NProperty):
|
|
||||||
"""busy - Is the window busy running a process? """
|
|
||||||
which = 'busy'
|
|
||||||
want = 'bool'
|
|
||||||
class processes(aetools.NProperty):
|
|
||||||
"""processes - a list of the currently running processes """
|
|
||||||
which = 'prcs'
|
|
||||||
want = 'list'
|
|
||||||
|
|
||||||
windows = window
|
windows = window
|
||||||
application._superclassnames = []
|
application._superclassnames = []
|
||||||
application._privpropdict = {
|
application._privpropdict = {
|
||||||
|
'frontmost' : frontmost,
|
||||||
'name' : name,
|
'name' : name,
|
||||||
'version' : version,
|
'version' : version,
|
||||||
'frontmost' : frontmost,
|
|
||||||
}
|
}
|
||||||
application._privelemdict = {
|
application._privelemdict = {
|
||||||
'window' : window,
|
'window' : window,
|
||||||
}
|
}
|
||||||
window._superclassnames = []
|
window._superclassnames = []
|
||||||
window._privpropdict = {
|
window._privpropdict = {
|
||||||
'name' : name,
|
'background_color' : background_color,
|
||||||
'index' : index,
|
'bold_text_color' : bold_text_color,
|
||||||
'bounds' : bounds,
|
'bounds' : bounds,
|
||||||
|
'busy' : busy,
|
||||||
|
'contents' : contents,
|
||||||
|
'cursor_color' : cursor_color,
|
||||||
|
'custom_title' : custom_title,
|
||||||
|
'floating' : floating,
|
||||||
|
'frame' : frame,
|
||||||
|
'frontmost' : frontmost,
|
||||||
'has_close_box' : has_close_box,
|
'has_close_box' : has_close_box,
|
||||||
'has_title_bar' : has_title_bar,
|
'has_title_bar' : has_title_bar,
|
||||||
'floating' : floating,
|
'history' : history,
|
||||||
|
'index' : index,
|
||||||
'miniaturizable' : miniaturizable,
|
'miniaturizable' : miniaturizable,
|
||||||
'miniaturized' : miniaturized,
|
'miniaturized' : miniaturized,
|
||||||
'modal' : modal,
|
'modal' : modal,
|
||||||
|
'name' : name,
|
||||||
|
'normal_text_color' : normal_text_color,
|
||||||
|
'number_of_columns' : number_of_columns,
|
||||||
|
'number_of_rows' : number_of_rows,
|
||||||
|
'origin' : origin,
|
||||||
|
'position' : position,
|
||||||
|
'processes' : processes,
|
||||||
'resizable' : resizable,
|
'resizable' : resizable,
|
||||||
|
'size' : size,
|
||||||
|
'title_displays_custom_title' : title_displays_custom_title,
|
||||||
|
'title_displays_device_name' : title_displays_device_name,
|
||||||
|
'title_displays_file_name' : title_displays_file_name,
|
||||||
|
'title_displays_shell_path' : title_displays_shell_path,
|
||||||
|
'title_displays_window_size' : title_displays_window_size,
|
||||||
'visible' : visible,
|
'visible' : visible,
|
||||||
'zoomable' : zoomable,
|
'zoomable' : zoomable,
|
||||||
'zoomed' : zoomed,
|
'zoomed' : zoomed,
|
||||||
'position' : position,
|
|
||||||
'origin' : origin,
|
|
||||||
'size' : size,
|
|
||||||
'frame' : frame,
|
|
||||||
'title_displays_device_name' : title_displays_device_name,
|
|
||||||
'title_displays_shell_path' : title_displays_shell_path,
|
|
||||||
'title_displays_window_size' : title_displays_window_size,
|
|
||||||
'title_displays_file_name' : title_displays_file_name,
|
|
||||||
'title_displays_custom_title' : title_displays_custom_title,
|
|
||||||
'custom_title' : custom_title,
|
|
||||||
'contents' : contents,
|
|
||||||
'history' : history,
|
|
||||||
'number_of_rows' : number_of_rows,
|
|
||||||
'number_of_columns' : number_of_columns,
|
|
||||||
'cursor_color' : cursor_color,
|
|
||||||
'background_color' : background_color,
|
|
||||||
'normal_text_color' : normal_text_color,
|
|
||||||
'bold_text_color' : bold_text_color,
|
|
||||||
'busy' : busy,
|
|
||||||
'processes' : processes,
|
|
||||||
'frontmost' : frontmost,
|
|
||||||
}
|
}
|
||||||
window._privelemdict = {
|
window._privelemdict = {
|
||||||
}
|
}
|
||||||
|
@ -304,46 +304,46 @@ window._privelemdict = {
|
||||||
# Indices of types declared in this module
|
# Indices of types declared in this module
|
||||||
#
|
#
|
||||||
_classdeclarations = {
|
_classdeclarations = {
|
||||||
'cwin' : window,
|
|
||||||
'capp' : application,
|
'capp' : application,
|
||||||
|
'cwin' : window,
|
||||||
}
|
}
|
||||||
|
|
||||||
_propdeclarations = {
|
_propdeclarations = {
|
||||||
'pori' : origin,
|
|
||||||
'prsz' : resizable,
|
|
||||||
'vers' : version,
|
|
||||||
'prcs' : processes,
|
|
||||||
'pbtc' : bold_text_color,
|
|
||||||
'pbnd' : bounds,
|
|
||||||
'crow' : number_of_rows,
|
|
||||||
'pcnt' : contents,
|
|
||||||
'tddn' : title_displays_device_name,
|
|
||||||
'iszm' : zoomable,
|
|
||||||
'hclb' : has_close_box,
|
|
||||||
'isfl' : floating,
|
|
||||||
'busy' : busy,
|
'busy' : busy,
|
||||||
'pfra' : frame,
|
'ccol' : number_of_columns,
|
||||||
'ppos' : position,
|
'crow' : number_of_rows,
|
||||||
'ptxc' : normal_text_color,
|
'hclb' : has_close_box,
|
||||||
'tdfn' : title_displays_file_name,
|
'hist' : history,
|
||||||
|
'isfl' : floating,
|
||||||
|
'ismn' : miniaturizable,
|
||||||
|
'iszm' : zoomable,
|
||||||
|
'pbcl' : background_color,
|
||||||
|
'pbnd' : bounds,
|
||||||
|
'pbtc' : bold_text_color,
|
||||||
|
'pcnt' : contents,
|
||||||
'pcuc' : cursor_color,
|
'pcuc' : cursor_color,
|
||||||
'tdsp' : title_displays_shell_path,
|
'pfra' : frame,
|
||||||
'pvis' : visible,
|
|
||||||
'pidx' : index,
|
'pidx' : index,
|
||||||
'pmod' : modal,
|
|
||||||
'titl' : custom_title,
|
|
||||||
'pisf' : frontmost,
|
'pisf' : frontmost,
|
||||||
'pmnd' : miniaturized,
|
'pmnd' : miniaturized,
|
||||||
'tdct' : title_displays_custom_title,
|
'pmod' : modal,
|
||||||
'hist' : history,
|
|
||||||
'pzum' : zoomed,
|
|
||||||
'ismn' : miniaturizable,
|
|
||||||
'pbcl' : background_color,
|
|
||||||
'pnam' : name,
|
'pnam' : name,
|
||||||
'ccol' : number_of_columns,
|
'pori' : origin,
|
||||||
'tdws' : title_displays_window_size,
|
'ppos' : position,
|
||||||
|
'prcs' : processes,
|
||||||
|
'prsz' : resizable,
|
||||||
'psiz' : size,
|
'psiz' : size,
|
||||||
'ptit' : has_title_bar,
|
'ptit' : has_title_bar,
|
||||||
|
'ptxc' : normal_text_color,
|
||||||
|
'pvis' : visible,
|
||||||
|
'pzum' : zoomed,
|
||||||
|
'tdct' : title_displays_custom_title,
|
||||||
|
'tddn' : title_displays_device_name,
|
||||||
|
'tdfn' : title_displays_file_name,
|
||||||
|
'tdsp' : title_displays_shell_path,
|
||||||
|
'tdws' : title_displays_window_size,
|
||||||
|
'titl' : custom_title,
|
||||||
|
'vers' : version,
|
||||||
}
|
}
|
||||||
|
|
||||||
_compdeclarations = {
|
_compdeclarations = {
|
||||||
|
|
|
@ -42,6 +42,7 @@ import StdSuites
|
||||||
#
|
#
|
||||||
getbaseclasses(window)
|
getbaseclasses(window)
|
||||||
getbaseclasses(application)
|
getbaseclasses(application)
|
||||||
|
getbaseclasses(application)
|
||||||
getbaseclasses(StdSuites.Type_Names_Suite.small_integer)
|
getbaseclasses(StdSuites.Type_Names_Suite.small_integer)
|
||||||
getbaseclasses(StdSuites.Type_Names_Suite.RGB16_color)
|
getbaseclasses(StdSuites.Type_Names_Suite.RGB16_color)
|
||||||
getbaseclasses(StdSuites.Type_Names_Suite.system_dictionary)
|
getbaseclasses(StdSuites.Type_Names_Suite.system_dictionary)
|
||||||
|
@ -82,7 +83,6 @@ getbaseclasses(StdSuites.Type_Names_Suite.null)
|
||||||
getbaseclasses(StdSuites.Type_Names_Suite.target_id)
|
getbaseclasses(StdSuites.Type_Names_Suite.target_id)
|
||||||
getbaseclasses(StdSuites.Type_Names_Suite.point)
|
getbaseclasses(StdSuites.Type_Names_Suite.point)
|
||||||
getbaseclasses(StdSuites.Type_Names_Suite.bounding_rectangle)
|
getbaseclasses(StdSuites.Type_Names_Suite.bounding_rectangle)
|
||||||
getbaseclasses(application)
|
|
||||||
|
|
||||||
#
|
#
|
||||||
# Indices of types declared in this module
|
# Indices of types declared in this module
|
||||||
|
@ -90,6 +90,7 @@ getbaseclasses(application)
|
||||||
_classdeclarations = {
|
_classdeclarations = {
|
||||||
'cwin' : window,
|
'cwin' : window,
|
||||||
'capp' : application,
|
'capp' : application,
|
||||||
|
'capp' : application,
|
||||||
'shor' : StdSuites.Type_Names_Suite.small_integer,
|
'shor' : StdSuites.Type_Names_Suite.small_integer,
|
||||||
'tr16' : StdSuites.Type_Names_Suite.RGB16_color,
|
'tr16' : StdSuites.Type_Names_Suite.RGB16_color,
|
||||||
'aeut' : StdSuites.Type_Names_Suite.system_dictionary,
|
'aeut' : StdSuites.Type_Names_Suite.system_dictionary,
|
||||||
|
@ -130,7 +131,6 @@ _classdeclarations = {
|
||||||
'targ' : StdSuites.Type_Names_Suite.target_id,
|
'targ' : StdSuites.Type_Names_Suite.target_id,
|
||||||
'QDpt' : StdSuites.Type_Names_Suite.point,
|
'QDpt' : StdSuites.Type_Names_Suite.point,
|
||||||
'qdrt' : StdSuites.Type_Names_Suite.bounding_rectangle,
|
'qdrt' : StdSuites.Type_Names_Suite.bounding_rectangle,
|
||||||
'capp' : application,
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue