Regenerated with property names with _Prop_ prepended.

This commit is contained in:
Jack Jansen 2003-04-01 22:05:14 +00:00
parent bc956056d4
commit 842273bcd7
53 changed files with 1697 additions and 2860 deletions

View file

@ -247,7 +247,7 @@ class CodeWarrior_suite_Events:
class single_class_browser(aetools.ComponentItem): class single_class_browser(aetools.ComponentItem):
"""single class browser - a single class browser """ """single class browser - a single class browser """
want = '1BRW' want = '1BRW'
class inherits(aetools.NProperty): class _Prop_inherits(aetools.NProperty):
"""inherits - all properties and elements of the given class are inherited by this class. """ """inherits - all properties and elements of the given class are inherited by this class. """
which = 'c@#^' which = 'c@#^'
want = 'TXTD' want = 'TXTD'
@ -311,7 +311,7 @@ build_progress_documents = build_progress_document
class project_document(aetools.ComponentItem): class project_document(aetools.ComponentItem):
"""project document - a project document """ """project document - a project document """
want = 'PRJD' want = 'PRJD'
class current_target(aetools.NProperty): class _Prop_current_target(aetools.NProperty):
"""current target - the current target """ """current target - the current target """
which = 'CURT' which = 'CURT'
want = 'TRGT' want = 'TRGT'
@ -322,11 +322,11 @@ project_documents = project_document
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 link_against_output(aetools.NProperty): class _Prop_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): class _Prop_target(aetools.NProperty):
"""target - the target that is dependent on this subtarget """ """target - the target that is dependent on this subtarget """
which = 'TrgT' which = 'TrgT'
want = 'TRGT' want = 'TRGT'
@ -336,67 +336,67 @@ subtargets = subtarget
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 code_size(aetools.NProperty): class _Prop_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): class _Prop_compiled_date(aetools.NProperty):
"""compiled date - the date and this source file was last compiled """ """compiled date - the date and this source file was last compiled """
which = 'CMPD' which = 'CMPD'
want = 'ldt ' want = 'ldt '
class data_size(aetools.NProperty): class _Prop_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'
want = 'long' want = 'long'
class debug(aetools.NProperty): class _Prop_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 dependents(aetools.NProperty): class _Prop_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): class _Prop_id(aetools.NProperty):
"""id - the unique ID number of the target file """ """id - the unique ID number of the target file """
which = 'ID ' which = 'ID '
want = 'long' want = 'long'
class init_before(aetools.NProperty): class _Prop_init_before(aetools.NProperty):
"""init before - is the \xd4initialize before\xd5 flag set for this shared library? """ """init before - is the \xd4initialize before\xd5 flag set for this shared library? """
which = 'INIT' which = 'INIT'
want = 'bool' want = 'bool'
class link_index(aetools.NProperty): class _Prop_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) """ """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' which = 'LIDX'
want = 'long' want = 'long'
class linked(aetools.NProperty): class _Prop_linked(aetools.NProperty):
"""linked - is the source file in the link order of its target? """ """linked - is the source file in the link order of its target? """
which = 'LINK' which = 'LINK'
want = 'bool' want = 'bool'
class location(aetools.NProperty): class _Prop_location(aetools.NProperty):
"""location - the location of the target file on disk """ """location - the location of the target file on disk """
which = 'FILE' which = 'FILE'
want = 'fss ' want = 'fss '
class merge_output(aetools.NProperty): class _Prop_merge_output(aetools.NProperty):
"""merge output - is this shared library merged into another code fragment? """ """merge output - is this shared library merged into another code fragment? """
which = 'MRGE' which = 'MRGE'
want = 'bool' want = 'bool'
class modified_date(aetools.NProperty): class _Prop_modified_date(aetools.NProperty):
"""modified date - the date and time this source file was last modified """ """modified date - the date and time this source file was last modified """
which = 'MODD' which = 'MODD'
want = 'ldt ' want = 'ldt '
class path(aetools.NProperty): class _Prop_path(aetools.NProperty):
"""path - the path of the source file on disk """ """path - the path of the source file on disk """
which = 'Path' which = 'Path'
want = 'itxt' want = 'itxt'
class prerequisites(aetools.NProperty): class _Prop_prerequisites(aetools.NProperty):
"""prerequisites - the source files needed to build this source file """ """prerequisites - the source files needed to build this source file """
which = 'PRER' which = 'PRER'
want = 'list' want = 'list'
class type(aetools.NProperty): class _Prop_type(aetools.NProperty):
"""type - the type of source file """ """type - the type of source file """
which = 'FTYP' which = 'FTYP'
want = 'FTYP' want = 'FTYP'
class weak_link(aetools.NProperty): class _Prop_weak_link(aetools.NProperty):
"""weak link - is this shared library linked weakly? """ """weak link - is this shared library linked weakly? """
which = 'WEAK' which = 'WEAK'
want = 'bool' want = 'bool'
@ -418,11 +418,11 @@ ToolServer_worksheets = ToolServer_worksheet
class target(aetools.ComponentItem): class target(aetools.ComponentItem):
"""target - a target in a project """ """target - a target in a project """
want = 'TRGT' want = 'TRGT'
class name(aetools.NProperty): class _Prop_name(aetools.NProperty):
"""name - """ """name - """
which = 'pnam' which = 'pnam'
want = 'itxt' want = 'itxt'
class project_document(aetools.NProperty): class _Prop_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'
@ -434,11 +434,11 @@ targets = target
class text_document(aetools.ComponentItem): class text_document(aetools.ComponentItem):
"""text document - a document that contains text """ """text document - a document that contains text """
want = 'TXTD' want = 'TXTD'
class modified(aetools.NProperty): class _Prop_modified(aetools.NProperty):
"""modified - Has the document been modified since the last save? """ """modified - Has the document been modified since the last save? """
which = 'imod' which = 'imod'
want = 'bool' want = 'bool'
class selection(aetools.NProperty): class _Prop_selection(aetools.NProperty):
"""selection - the selection visible to the user """ """selection - the selection visible to the user """
which = 'sele' which = 'sele'
want = 'csel' want = 'csel'
@ -450,118 +450,118 @@ class selection(aetools.NProperty):
text_documents = text_document text_documents = text_document
single_class_browser._superclassnames = ['text_document'] single_class_browser._superclassnames = ['text_document']
single_class_browser._privpropdict = { single_class_browser._privpropdict = {
'inherits' : inherits, 'inherits' : _Prop_inherits,
} }
single_class_browser._privelemdict = { single_class_browser._privelemdict = {
} }
import Standard_Suite import Standard_Suite
single_class_hierarchy._superclassnames = ['document'] single_class_hierarchy._superclassnames = ['document']
single_class_hierarchy._privpropdict = { single_class_hierarchy._privpropdict = {
'inherits' : inherits, 'inherits' : _Prop_inherits,
} }
single_class_hierarchy._privelemdict = { single_class_hierarchy._privelemdict = {
} }
class_browser._superclassnames = ['text_document'] class_browser._superclassnames = ['text_document']
class_browser._privpropdict = { class_browser._privpropdict = {
'inherits' : inherits, 'inherits' : _Prop_inherits,
} }
class_browser._privelemdict = { class_browser._privelemdict = {
} }
file_compare_document._superclassnames = ['text_document'] file_compare_document._superclassnames = ['text_document']
file_compare_document._privpropdict = { file_compare_document._privpropdict = {
'inherits' : inherits, 'inherits' : _Prop_inherits,
} }
file_compare_document._privelemdict = { file_compare_document._privelemdict = {
} }
catalog_document._superclassnames = ['text_document'] catalog_document._superclassnames = ['text_document']
catalog_document._privpropdict = { catalog_document._privpropdict = {
'inherits' : inherits, 'inherits' : _Prop_inherits,
} }
catalog_document._privelemdict = { catalog_document._privelemdict = {
} }
editor_document._superclassnames = ['text_document'] editor_document._superclassnames = ['text_document']
editor_document._privpropdict = { editor_document._privpropdict = {
'inherits' : inherits, 'inherits' : _Prop_inherits,
} }
editor_document._privelemdict = { editor_document._privelemdict = {
} }
class_hierarchy._superclassnames = ['document'] class_hierarchy._superclassnames = ['document']
class_hierarchy._privpropdict = { class_hierarchy._privpropdict = {
'inherits' : inherits, 'inherits' : _Prop_inherits,
} }
class_hierarchy._privelemdict = { class_hierarchy._privelemdict = {
} }
project_inspector._superclassnames = ['document'] project_inspector._superclassnames = ['document']
project_inspector._privpropdict = { project_inspector._privpropdict = {
'inherits' : inherits, 'inherits' : _Prop_inherits,
} }
project_inspector._privelemdict = { project_inspector._privelemdict = {
} }
message_document._superclassnames = ['text_document'] message_document._superclassnames = ['text_document']
message_document._privpropdict = { message_document._privpropdict = {
'inherits' : inherits, 'inherits' : _Prop_inherits,
} }
message_document._privelemdict = { message_document._privelemdict = {
} }
build_progress_document._superclassnames = ['document'] build_progress_document._superclassnames = ['document']
build_progress_document._privpropdict = { build_progress_document._privpropdict = {
'inherits' : inherits, 'inherits' : _Prop_inherits,
} }
build_progress_document._privelemdict = { build_progress_document._privelemdict = {
} }
project_document._superclassnames = ['document'] project_document._superclassnames = ['document']
project_document._privpropdict = { project_document._privpropdict = {
'current_target' : current_target, 'current_target' : _Prop_current_target,
'inherits' : inherits, 'inherits' : _Prop_inherits,
} }
project_document._privelemdict = { project_document._privelemdict = {
'target' : target, 'target' : target,
} }
subtarget._superclassnames = ['target'] subtarget._superclassnames = ['target']
subtarget._privpropdict = { subtarget._privpropdict = {
'inherits' : inherits, 'inherits' : _Prop_inherits,
'link_against_output' : link_against_output, 'link_against_output' : _Prop_link_against_output,
'target' : target, 'target' : _Prop_target,
} }
subtarget._privelemdict = { subtarget._privelemdict = {
} }
target_file._superclassnames = [] target_file._superclassnames = []
target_file._privpropdict = { target_file._privpropdict = {
'code_size' : code_size, 'code_size' : _Prop_code_size,
'compiled_date' : compiled_date, 'compiled_date' : _Prop_compiled_date,
'data_size' : data_size, 'data_size' : _Prop_data_size,
'debug' : debug, 'debug' : _Prop_debug,
'dependents' : dependents, 'dependents' : _Prop_dependents,
'id' : id, 'id' : _Prop_id,
'init_before' : init_before, 'init_before' : _Prop_init_before,
'link_index' : link_index, 'link_index' : _Prop_link_index,
'linked' : linked, 'linked' : _Prop_linked,
'location' : location, 'location' : _Prop_location,
'merge_output' : merge_output, 'merge_output' : _Prop_merge_output,
'modified_date' : modified_date, 'modified_date' : _Prop_modified_date,
'path' : path, 'path' : _Prop_path,
'prerequisites' : prerequisites, 'prerequisites' : _Prop_prerequisites,
'type' : type, 'type' : _Prop_type,
'weak_link' : weak_link, 'weak_link' : _Prop_weak_link,
} }
target_file._privelemdict = { target_file._privelemdict = {
} }
symbol_browser._superclassnames = ['text_document'] symbol_browser._superclassnames = ['text_document']
symbol_browser._privpropdict = { symbol_browser._privpropdict = {
'inherits' : inherits, 'inherits' : _Prop_inherits,
} }
symbol_browser._privelemdict = { symbol_browser._privelemdict = {
} }
ToolServer_worksheet._superclassnames = ['text_document'] ToolServer_worksheet._superclassnames = ['text_document']
ToolServer_worksheet._privpropdict = { ToolServer_worksheet._privpropdict = {
'inherits' : inherits, 'inherits' : _Prop_inherits,
} }
ToolServer_worksheet._privelemdict = { ToolServer_worksheet._privelemdict = {
} }
target._superclassnames = [] target._superclassnames = []
target._privpropdict = { target._privpropdict = {
'name' : name, 'name' : _Prop_name,
'project_document' : project_document, 'project_document' : _Prop_project_document,
} }
target._privelemdict = { target._privelemdict = {
'subtarget' : subtarget, 'subtarget' : subtarget,
@ -569,9 +569,9 @@ target._privelemdict = {
} }
text_document._superclassnames = ['document'] text_document._superclassnames = ['document']
text_document._privpropdict = { text_document._privpropdict = {
'inherits' : inherits, 'inherits' : _Prop_inherits,
'modified' : modified, 'modified' : _Prop_modified,
'selection' : selection, 'selection' : _Prop_selection,
} }
text_document._privelemdict = { text_document._privelemdict = {
'character' : Standard_Suite.character, 'character' : Standard_Suite.character,
@ -643,40 +643,3 @@ _classdeclarations = {
'TRGT' : target, 'TRGT' : target,
'TXTD' : text_document, 'TXTD' : text_document,
} }
_propdeclarations = {
'CMPD' : compiled_date,
'CSZE' : code_size,
'CURT' : current_target,
'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,
'Path' : path,
'PrjD' : project_document,
'TrgT' : target,
'WEAK' : weak_link,
'c@#^' : inherits,
'imod' : modified,
'pnam' : name,
'sele' : selection,
}
_compdeclarations = {
}
_enumdeclarations = {
'DKND' : _Enum_DKND,
'FTYP' : _Enum_FTYP,
'Inte' : _Enum_Inte,
'PERM' : _Enum_PERM,
}

View file

@ -50,13 +50,3 @@ _Enum_Conv = {
# #
_classdeclarations = { _classdeclarations = {
} }
_propdeclarations = {
}
_compdeclarations = {
}
_enumdeclarations = {
'Conv' : _Enum_Conv,
}

View file

@ -175,7 +175,7 @@ class Standard_Suite_Events(Standard_Suite_Events):
class application(aetools.ComponentItem): class application(aetools.ComponentItem):
"""application - an application program """ """application - an application program """
want = 'capp' want = 'capp'
class user_interaction(aetools.NProperty): class _Prop_user_interaction(aetools.NProperty):
"""user interaction - user interaction level """ """user interaction - user interaction level """
which = 'inte' which = 'inte'
want = 'Inte' want = 'Inte'
@ -185,11 +185,11 @@ class user_interaction(aetools.NProperty):
class character(aetools.ComponentItem): class character(aetools.ComponentItem):
"""character - a character """ """character - a character """
want = 'cha ' want = 'cha '
class length(aetools.NProperty): class _Prop_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): class _Prop_offset(aetools.NProperty):
"""offset - offset of a text object from the beginning of the document (first char has offset 1) """ """offset - offset of a text object from the beginning of the document (first char has offset 1) """
which = 'pOff' which = 'pOff'
want = 'long' want = 'long'
@ -201,7 +201,7 @@ class insertion_point(aetools.ComponentItem):
class line(aetools.ComponentItem): class line(aetools.ComponentItem):
"""line - lines of text """ """line - lines of text """
want = 'clin' want = 'clin'
class index(aetools.NProperty): class _Prop_index(aetools.NProperty):
"""index - index of a line object from the beginning of the document (first line has index 1) """ """index - index of a line object from the beginning of the document (first line has index 1) """
which = 'pidx' which = 'pidx'
want = 'long' want = 'long'
@ -212,7 +212,7 @@ lines = line
class selection_2d_object(aetools.ComponentItem): class selection_2d_object(aetools.ComponentItem):
"""selection-object - the selection visible to the user """ """selection-object - the selection visible to the user """
want = 'csel' want = 'csel'
class contents(aetools.NProperty): class _Prop_contents(aetools.NProperty):
"""contents - the contents of the selection """ """contents - the contents of the selection """
which = 'pcnt' which = 'pcnt'
want = 'type' want = 'type'
@ -231,27 +231,27 @@ class text(aetools.ComponentItem):
class window(aetools.ComponentItem): class window(aetools.ComponentItem):
"""window - A window """ """window - A window """
want = 'cwin' want = 'cwin'
class bounds(aetools.NProperty): class _Prop_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 document(aetools.NProperty): class _Prop_document(aetools.NProperty):
"""document - the document that owns this window """ """document - the document that owns this window """
which = 'docu' which = 'docu'
want = 'docu' want = 'docu'
class name(aetools.NProperty): class _Prop_name(aetools.NProperty):
"""name - the title of the window """ """name - the title of the window """
which = 'pnam' which = 'pnam'
want = 'itxt' want = 'itxt'
class position(aetools.NProperty): class _Prop_position(aetools.NProperty):
"""position - upper left coordinates of window """ """position - upper left coordinates of window """
which = 'ppos' which = 'ppos'
want = 'QDpt' want = 'QDpt'
class visible(aetools.NProperty): class _Prop_visible(aetools.NProperty):
"""visible - is the window visible? """ """visible - is the window visible? """
which = 'pvis' which = 'pvis'
want = 'bool' want = 'bool'
class zoomed(aetools.NProperty): class _Prop_zoomed(aetools.NProperty):
"""zoomed - Is the window zoomed? """ """zoomed - Is the window zoomed? """
which = 'pzum' which = 'pzum'
want = 'bool' want = 'bool'
@ -261,19 +261,19 @@ windows = window
class document(aetools.ComponentItem): class document(aetools.ComponentItem):
"""document - a document """ """document - a document """
want = 'docu' want = 'docu'
class file_permissions(aetools.NProperty): class _Prop_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 kind(aetools.NProperty): class _Prop_kind(aetools.NProperty):
"""kind - the kind of document """ """kind - the kind of document """
which = 'DKND' which = 'DKND'
want = 'DKND' want = 'DKND'
class location(aetools.NProperty): class _Prop_location(aetools.NProperty):
"""location - the file of the document """ """location - the file of the document """
which = 'FILE' which = 'FILE'
want = 'fss ' want = 'fss '
class window(aetools.NProperty): class _Prop_window(aetools.NProperty):
"""window - the window of the document. """ """window - the window of the document. """
which = 'cwin' which = 'cwin'
want = 'cwin' want = 'cwin'
@ -287,7 +287,7 @@ class files(aetools.ComponentItem):
file = files file = files
application._superclassnames = [] application._superclassnames = []
application._privpropdict = { application._privpropdict = {
'user_interaction' : user_interaction, 'user_interaction' : _Prop_user_interaction,
} }
application._privelemdict = { application._privelemdict = {
'document' : document, 'document' : document,
@ -295,32 +295,32 @@ application._privelemdict = {
} }
character._superclassnames = [] character._superclassnames = []
character._privpropdict = { character._privpropdict = {
'length' : length, 'length' : _Prop_length,
'offset' : offset, 'offset' : _Prop_offset,
} }
character._privelemdict = { character._privelemdict = {
} }
insertion_point._superclassnames = [] insertion_point._superclassnames = []
insertion_point._privpropdict = { insertion_point._privpropdict = {
'length' : length, 'length' : _Prop_length,
'offset' : offset, 'offset' : _Prop_offset,
} }
insertion_point._privelemdict = { insertion_point._privelemdict = {
} }
line._superclassnames = [] line._superclassnames = []
line._privpropdict = { line._privpropdict = {
'index' : index, 'index' : _Prop_index,
'length' : length, 'length' : _Prop_length,
'offset' : offset, 'offset' : _Prop_offset,
} }
line._privelemdict = { line._privelemdict = {
'character' : character, 'character' : character,
} }
selection_2d_object._superclassnames = [] selection_2d_object._superclassnames = []
selection_2d_object._privpropdict = { selection_2d_object._privpropdict = {
'contents' : contents, 'contents' : _Prop_contents,
'length' : length, 'length' : _Prop_length,
'offset' : offset, 'offset' : _Prop_offset,
} }
selection_2d_object._privelemdict = { selection_2d_object._privelemdict = {
'character' : character, 'character' : character,
@ -329,8 +329,8 @@ selection_2d_object._privelemdict = {
} }
text._superclassnames = [] text._superclassnames = []
text._privpropdict = { text._privpropdict = {
'length' : length, 'length' : _Prop_length,
'offset' : offset, 'offset' : _Prop_offset,
} }
text._privelemdict = { text._privelemdict = {
'character' : character, 'character' : character,
@ -340,24 +340,24 @@ text._privelemdict = {
} }
window._superclassnames = [] window._superclassnames = []
window._privpropdict = { window._privpropdict = {
'bounds' : bounds, 'bounds' : _Prop_bounds,
'document' : document, 'document' : _Prop_document,
'index' : index, 'index' : _Prop_index,
'name' : name, 'name' : _Prop_name,
'position' : position, 'position' : _Prop_position,
'visible' : visible, 'visible' : _Prop_visible,
'zoomed' : zoomed, 'zoomed' : _Prop_zoomed,
} }
window._privelemdict = { window._privelemdict = {
} }
document._superclassnames = [] document._superclassnames = []
document._privpropdict = { document._privpropdict = {
'file_permissions' : file_permissions, 'file_permissions' : _Prop_file_permissions,
'index' : index, 'index' : _Prop_index,
'kind' : kind, 'kind' : _Prop_kind,
'location' : location, 'location' : _Prop_location,
'name' : name, 'name' : _Prop_name,
'window' : window, 'window' : _Prop_window,
} }
document._privelemdict = { document._privelemdict = {
} }
@ -381,27 +381,3 @@ _classdeclarations = {
'docu' : document, 'docu' : document,
'file' : files, 'file' : files,
} }
_propdeclarations = {
'DKND' : kind,
'FILE' : location,
'PERM' : file_permissions,
'cwin' : window,
'docu' : document,
'inte' : user_interaction,
'pLen' : length,
'pOff' : offset,
'pbnd' : bounds,
'pcnt' : contents,
'pidx' : index,
'pnam' : name,
'ppos' : position,
'pvis' : visible,
'pzum' : zoomed,
}
_compdeclarations = {
}
_enumdeclarations = {
}

View file

@ -47,6 +47,15 @@ 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(single_class_browser)
getbaseclasses(project_document) getbaseclasses(project_document)
getbaseclasses(symbol_browser) getbaseclasses(symbol_browser)
@ -100,20 +109,20 @@ 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)
# #
# 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, '1BRW' : single_class_browser,
'PRJD' : project_document, 'PRJD' : project_document,
'SYMB' : symbol_browser, 'SYMB' : symbol_browser,
@ -167,15 +176,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,
} }

View file

@ -85,12 +85,3 @@ class Microsoft_Internet_Explorer_Events:
# #
_classdeclarations = { _classdeclarations = {
} }
_propdeclarations = {
}
_compdeclarations = {
}
_enumdeclarations = {
}

View file

@ -38,12 +38,3 @@ class Netscape_Suite_Events:
# #
_classdeclarations = { _classdeclarations = {
} }
_propdeclarations = {
}
_compdeclarations = {
}
_enumdeclarations = {
}

View file

@ -97,12 +97,3 @@ class Required_Suite_Events(Required_Suite_Events):
# #
_classdeclarations = { _classdeclarations = {
} }
_propdeclarations = {
}
_compdeclarations = {
}
_enumdeclarations = {
}

View file

@ -42,13 +42,13 @@ class Standard_Suite_Events:
class application(aetools.ComponentItem): class application(aetools.ComponentItem):
"""application - An application program """ """application - An application program """
want = 'capp' want = 'capp'
class selected_text(aetools.NProperty): class _Prop_selected_text(aetools.NProperty):
"""selected text - the selected text """ """selected text - the selected text """
which = 'stxt' which = 'stxt'
want = 'TEXT' want = 'TEXT'
application._superclassnames = [] application._superclassnames = []
application._privpropdict = { application._privpropdict = {
'selected_text' : selected_text, 'selected_text' : _Prop_selected_text,
} }
application._privelemdict = { application._privelemdict = {
} }
@ -59,13 +59,3 @@ application._privelemdict = {
_classdeclarations = { _classdeclarations = {
'capp' : application, 'capp' : application,
} }
_propdeclarations = {
'stxt' : selected_text,
}
_compdeclarations = {
}
_enumdeclarations = {
}

View file

@ -43,12 +43,3 @@ class URL_Suite_Events:
# #
_classdeclarations = { _classdeclarations = {
} }
_propdeclarations = {
}
_compdeclarations = {
}
_enumdeclarations = {
}

View file

@ -215,12 +215,3 @@ class Web_Browser_Suite_Events:
# #
_classdeclarations = { _classdeclarations = {
} }
_propdeclarations = {
}
_compdeclarations = {
}
_enumdeclarations = {
}

View file

@ -18,35 +18,35 @@ class Containers_and_folders_Events:
class disk(aetools.ComponentItem): class disk(aetools.ComponentItem):
"""disk - A disk """ """disk - A disk """
want = 'cdis' want = 'cdis'
class _3c_Inheritance_3e_(aetools.NProperty): class _Prop__3c_Inheritance_3e_(aetools.NProperty):
"""<Inheritance> - inherits some of its properties from the container class """ """<Inheritance> - inherits some of its properties from the container class """
which = 'c@#^' which = 'c@#^'
want = 'ctnr' want = 'ctnr'
class capacity(aetools.NProperty): class _Prop_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 = 'comp' want = 'comp'
class ejectable(aetools.NProperty): class _Prop_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 format(aetools.NProperty): class _Prop_format(aetools.NProperty):
"""format - the filesystem format of this disk """ """format - the filesystem format of this disk """
which = 'dfmt' which = 'dfmt'
want = 'edfm' want = 'edfm'
class free_space(aetools.NProperty): class _Prop_free_space(aetools.NProperty):
"""free space - the number of free bytes left on the disk """ """free space - the number of free bytes left on the disk """
which = 'frsp' which = 'frsp'
want = 'comp' want = 'comp'
class ignore_privileges(aetools.NProperty): class _Prop_ignore_privileges(aetools.NProperty):
"""ignore privileges - Ignore permissions on this disk? """ """ignore privileges - Ignore permissions on this disk? """
which = 'igpr' which = 'igpr'
want = 'bool' want = 'bool'
class local_volume(aetools.NProperty): class _Prop_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'
want = 'bool' want = 'bool'
class startup(aetools.NProperty): class _Prop_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'
@ -97,23 +97,23 @@ folders = folder
class container(aetools.ComponentItem): class container(aetools.ComponentItem):
"""container - An item that contains other items """ """container - An item that contains other items """
want = 'ctnr' want = 'ctnr'
class completely_expanded(aetools.NProperty): class _Prop_completely_expanded(aetools.NProperty):
"""completely expanded - (NOT AVAILABLE YET) Are the container and all of its children opened as outlines? (can only be set for containers viewed as lists) """ """completely expanded - (NOT AVAILABLE YET) Are the container and all of its children opened as outlines? (can only be set for containers viewed as lists) """
which = 'pexc' which = 'pexc'
want = 'bool' want = 'bool'
class container_window(aetools.NProperty): class _Prop_container_window(aetools.NProperty):
"""container window - the container window for this folder """ """container window - the container window for this folder """
which = 'cwnd' which = 'cwnd'
want = 'obj ' want = 'obj '
class entire_contents(aetools.NProperty): class _Prop_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'
want = 'obj ' want = 'obj '
class expandable(aetools.NProperty): class _Prop_expandable(aetools.NProperty):
"""expandable - (NOT AVAILABLE YET) Is the container capable of being expanded as an outline? """ """expandable - (NOT AVAILABLE YET) Is the container capable of being expanded as an outline? """
which = 'pexa' which = 'pexa'
want = 'bool' want = 'bool'
class expanded(aetools.NProperty): class _Prop_expanded(aetools.NProperty):
"""expanded - (NOT AVAILABLE YET) Is the container opened as an outline? (can only be set for containers viewed as lists) """ """expanded - (NOT AVAILABLE YET) Is the container opened as an outline? (can only be set for containers viewed as lists) """
which = 'pexp' which = 'pexp'
want = 'bool' want = 'bool'
@ -133,7 +133,7 @@ containers = container
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 """
want = 'ctrs' want = 'ctrs'
class warns_before_emptying(aetools.NProperty): class _Prop_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'
@ -151,14 +151,14 @@ disk._superclassnames = ['container']
import Files import Files
import Finder_items import Finder_items
disk._privpropdict = { disk._privpropdict = {
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_, '_3c_Inheritance_3e_' : _Prop__3c_Inheritance_3e_,
'capacity' : capacity, 'capacity' : _Prop_capacity,
'ejectable' : ejectable, 'ejectable' : _Prop_ejectable,
'format' : format, 'format' : _Prop_format,
'free_space' : free_space, 'free_space' : _Prop_free_space,
'ignore_privileges' : ignore_privileges, 'ignore_privileges' : _Prop_ignore_privileges,
'local_volume' : local_volume, 'local_volume' : _Prop_local_volume,
'startup' : startup, 'startup' : _Prop_startup,
} }
disk._privelemdict = { disk._privelemdict = {
'alias_file' : Files.alias_file, 'alias_file' : Files.alias_file,
@ -174,7 +174,7 @@ disk._privelemdict = {
} }
desktop_2d_object._superclassnames = ['container'] desktop_2d_object._superclassnames = ['container']
desktop_2d_object._privpropdict = { desktop_2d_object._privpropdict = {
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_, '_3c_Inheritance_3e_' : _Prop__3c_Inheritance_3e_,
} }
desktop_2d_object._privelemdict = { desktop_2d_object._privelemdict = {
'alias_file' : Files.alias_file, 'alias_file' : Files.alias_file,
@ -191,7 +191,7 @@ desktop_2d_object._privelemdict = {
} }
folder._superclassnames = ['container'] folder._superclassnames = ['container']
folder._privpropdict = { folder._privpropdict = {
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_, '_3c_Inheritance_3e_' : _Prop__3c_Inheritance_3e_,
} }
folder._privelemdict = { folder._privelemdict = {
'alias_file' : Files.alias_file, 'alias_file' : Files.alias_file,
@ -207,12 +207,12 @@ folder._privelemdict = {
} }
container._superclassnames = ['item'] container._superclassnames = ['item']
container._privpropdict = { container._privpropdict = {
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_, '_3c_Inheritance_3e_' : _Prop__3c_Inheritance_3e_,
'completely_expanded' : completely_expanded, 'completely_expanded' : _Prop_completely_expanded,
'container_window' : container_window, 'container_window' : _Prop_container_window,
'entire_contents' : entire_contents, 'entire_contents' : _Prop_entire_contents,
'expandable' : expandable, 'expandable' : _Prop_expandable,
'expanded' : expanded, 'expanded' : _Prop_expanded,
} }
container._privelemdict = { container._privelemdict = {
'alias_file' : Files.alias_file, 'alias_file' : Files.alias_file,
@ -228,8 +228,8 @@ container._privelemdict = {
} }
trash_2d_object._superclassnames = ['container'] trash_2d_object._superclassnames = ['container']
trash_2d_object._privpropdict = { trash_2d_object._privpropdict = {
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_, '_3c_Inheritance_3e_' : _Prop__3c_Inheritance_3e_,
'warns_before_emptying' : warns_before_emptying, 'warns_before_emptying' : _Prop_warns_before_emptying,
} }
trash_2d_object._privelemdict = { trash_2d_object._privelemdict = {
'alias_file' : Files.alias_file, 'alias_file' : Files.alias_file,
@ -254,26 +254,3 @@ _classdeclarations = {
'ctnr' : container, 'ctnr' : container,
'ctrs' : trash_2d_object, 'ctrs' : trash_2d_object,
} }
_propdeclarations = {
'c@#^' : _3c_Inheritance_3e_,
'capa' : capacity,
'cwnd' : container_window,
'dfmt' : format,
'ects' : entire_contents,
'frsp' : free_space,
'igpr' : ignore_privileges,
'isej' : ejectable,
'isrv' : local_volume,
'istd' : startup,
'pexa' : expandable,
'pexc' : completely_expanded,
'pexp' : expanded,
'warn' : warns_before_emptying,
}
_compdeclarations = {
}
_enumdeclarations = {
}

View file

@ -124,22 +124,3 @@ _Enum_vwby = {
# #
_classdeclarations = { _classdeclarations = {
} }
_propdeclarations = {
}
_compdeclarations = {
}
_enumdeclarations = {
'earr' : _Enum_earr,
'ecvw' : _Enum_ecvw,
'edfm' : _Enum_edfm,
'elsv' : _Enum_elsv,
'ipnl' : _Enum_ipnl,
'isiz' : _Enum_isiz,
'lvic' : _Enum_lvic,
'priv' : _Enum_priv,
'sodr' : _Enum_sodr,
'vwby' : _Enum_vwby,
}

View file

@ -18,11 +18,11 @@ class Files_Events:
class alias_file(aetools.ComponentItem): class alias_file(aetools.ComponentItem):
"""alias file - An alias file (created with \xd2Make Alias\xd3) """ """alias file - An alias file (created with \xd2Make Alias\xd3) """
want = 'alia' want = 'alia'
class _3c_Inheritance_3e_(aetools.NProperty): class _Prop__3c_Inheritance_3e_(aetools.NProperty):
"""<Inheritance> - inherits some of its properties from the file class """ """<Inheritance> - inherits some of its properties from the file class """
which = 'c@#^' which = 'c@#^'
want = 'file' want = 'file'
class original_item(aetools.NProperty): class _Prop_original_item(aetools.NProperty):
"""original item - the original item pointed to by the alias """ """original item - the original item pointed to by the alias """
which = 'orig' which = 'orig'
want = 'obj ' want = 'obj '
@ -32,27 +32,27 @@ 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 accepts_high_level_events(aetools.NProperty): class _Prop_accepts_high_level_events(aetools.NProperty):
"""accepts high level events - Is the application high-level event aware? (OBSOLETE: always returns true) """ """accepts high level events - Is the application high-level event aware? (OBSOLETE: always returns true) """
which = 'isab' which = 'isab'
want = 'bool' want = 'bool'
class has_scripting_terminology(aetools.NProperty): class _Prop_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): class _Prop_minimum_size(aetools.NProperty):
"""minimum size - the smallest memory size with which the application can be launched """ """minimum size - the smallest memory size with which the application can be launched """
which = 'mprt' which = 'mprt'
want = 'long' want = 'long'
class opens_in_Classic(aetools.NProperty): class _Prop_opens_in_Classic(aetools.NProperty):
"""opens in Classic - Should the application launch in the Classic environment? """ """opens in Classic - Should the application launch in the Classic environment? """
which = 'Clsc' which = 'Clsc'
want = 'bool' want = 'bool'
class preferred_size(aetools.NProperty): class _Prop_preferred_size(aetools.NProperty):
"""preferred size - the memory size with which the application will be launched """ """preferred size - the memory size with which the application will be launched """
which = 'appt' which = 'appt'
want = 'long' want = 'long'
class suggested_size(aetools.NProperty): class _Prop_suggested_size(aetools.NProperty):
"""suggested size - the memory size with which the developer recommends the application be launched """ """suggested size - the memory size with which the developer recommends the application be launched """
which = 'sprt' which = 'sprt'
want = 'long' want = 'long'
@ -62,7 +62,7 @@ application_files = application_file
class clipping(aetools.ComponentItem): class clipping(aetools.ComponentItem):
"""clipping - A clipping """ """clipping - A clipping """
want = 'clpf' want = 'clpf'
class clipping_window(aetools.NProperty): class _Prop_clipping_window(aetools.NProperty):
"""clipping window - (NOT AVAILABLE YET) the clipping window for this clipping """ """clipping window - (NOT AVAILABLE YET) the clipping window for this clipping """
which = 'lwnd' which = 'lwnd'
want = 'obj ' want = 'obj '
@ -78,23 +78,23 @@ document_files = document_file
class file(aetools.ComponentItem): class file(aetools.ComponentItem):
"""file - A file """ """file - A file """
want = 'file' want = 'file'
class creator_type(aetools.NProperty): class _Prop_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): class _Prop_file_type(aetools.NProperty):
"""file type - the OSType identifying the type of data contained in the item """ """file type - the OSType identifying the type of data contained in the item """
which = 'asty' which = 'asty'
want = 'type' want = 'type'
class product_version(aetools.NProperty): class _Prop_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 = 'utxt' want = 'utxt'
class stationery(aetools.NProperty): class _Prop_stationery(aetools.NProperty):
"""stationery - Is the file a stationery pad? """ """stationery - Is the file a stationery pad? """
which = 'pspd' which = 'pspd'
want = 'bool' want = 'bool'
class version(aetools.NProperty): class _Prop_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 = 'utxt' want = 'utxt'
@ -104,7 +104,7 @@ files = file
class internet_location_file(aetools.ComponentItem): class internet_location_file(aetools.ComponentItem):
"""internet location file - An file containing an internet location """ """internet location file - An file containing an internet location """
want = 'inlf' want = 'inlf'
class location(aetools.NProperty): class _Prop_location(aetools.NProperty):
"""location - the internet location """ """location - the internet location """
which = 'iloc' which = 'iloc'
want = 'utxt' want = 'utxt'
@ -118,58 +118,58 @@ class package(aetools.ComponentItem):
packages = package packages = package
alias_file._superclassnames = ['file'] alias_file._superclassnames = ['file']
alias_file._privpropdict = { alias_file._privpropdict = {
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_, '_3c_Inheritance_3e_' : _Prop__3c_Inheritance_3e_,
'original_item' : original_item, 'original_item' : _Prop_original_item,
} }
alias_file._privelemdict = { 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_' : _Prop__3c_Inheritance_3e_,
'accepts_high_level_events' : accepts_high_level_events, 'accepts_high_level_events' : _Prop_accepts_high_level_events,
'has_scripting_terminology' : has_scripting_terminology, 'has_scripting_terminology' : _Prop_has_scripting_terminology,
'minimum_size' : minimum_size, 'minimum_size' : _Prop_minimum_size,
'opens_in_Classic' : opens_in_Classic, 'opens_in_Classic' : _Prop_opens_in_Classic,
'preferred_size' : preferred_size, 'preferred_size' : _Prop_preferred_size,
'suggested_size' : suggested_size, 'suggested_size' : _Prop_suggested_size,
} }
application_file._privelemdict = { application_file._privelemdict = {
} }
clipping._superclassnames = ['file'] clipping._superclassnames = ['file']
clipping._privpropdict = { clipping._privpropdict = {
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_, '_3c_Inheritance_3e_' : _Prop__3c_Inheritance_3e_,
'clipping_window' : clipping_window, 'clipping_window' : _Prop_clipping_window,
} }
clipping._privelemdict = { clipping._privelemdict = {
} }
document_file._superclassnames = ['file'] document_file._superclassnames = ['file']
document_file._privpropdict = { document_file._privpropdict = {
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_, '_3c_Inheritance_3e_' : _Prop__3c_Inheritance_3e_,
} }
document_file._privelemdict = { document_file._privelemdict = {
} }
import Finder_items import Finder_items
file._superclassnames = ['item'] file._superclassnames = ['item']
file._privpropdict = { file._privpropdict = {
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_, '_3c_Inheritance_3e_' : _Prop__3c_Inheritance_3e_,
'creator_type' : creator_type, 'creator_type' : _Prop_creator_type,
'file_type' : file_type, 'file_type' : _Prop_file_type,
'product_version' : product_version, 'product_version' : _Prop_product_version,
'stationery' : stationery, 'stationery' : _Prop_stationery,
'version' : version, 'version' : _Prop_version,
} }
file._privelemdict = { file._privelemdict = {
} }
internet_location_file._superclassnames = ['file'] internet_location_file._superclassnames = ['file']
internet_location_file._privpropdict = { internet_location_file._privpropdict = {
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_, '_3c_Inheritance_3e_' : _Prop__3c_Inheritance_3e_,
'location' : location, 'location' : _Prop_location,
} }
internet_location_file._privelemdict = { internet_location_file._privelemdict = {
} }
package._superclassnames = ['item'] package._superclassnames = ['item']
package._privpropdict = { package._privpropdict = {
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_, '_3c_Inheritance_3e_' : _Prop__3c_Inheritance_3e_,
} }
package._privelemdict = { package._privelemdict = {
} }
@ -186,27 +186,3 @@ _classdeclarations = {
'inlf' : internet_location_file, 'inlf' : internet_location_file,
'pack' : package, 'pack' : package,
} }
_propdeclarations = {
'Clsc' : opens_in_Classic,
'appt' : preferred_size,
'asty' : file_type,
'c@#^' : _3c_Inheritance_3e_,
'fcrt' : creator_type,
'hscr' : has_scripting_terminology,
'iloc' : location,
'isab' : accepts_high_level_events,
'lwnd' : clipping_window,
'mprt' : minimum_size,
'orig' : original_item,
'pspd' : stationery,
'sprt' : suggested_size,
'ver2' : product_version,
'vers' : version,
}
_compdeclarations = {
}
_enumdeclarations = {
}

View file

@ -61,55 +61,55 @@ class Finder_Basics_Events:
class application(aetools.ComponentItem): class application(aetools.ComponentItem):
"""application - The Finder """ """application - The Finder """
want = 'capp' want = 'capp'
class Finder_preferences(aetools.NProperty): class _Prop_Finder_preferences(aetools.NProperty):
"""Finder preferences - (NOT AVAILABLE YET) Various preferences that apply to the Finder as a whole """ """Finder preferences - (NOT AVAILABLE YET) Various preferences that apply to the Finder as a whole """
which = 'pfrp' which = 'pfrp'
want = 'cprf' want = 'cprf'
class clipboard(aetools.NProperty): class _Prop_clipboard(aetools.NProperty):
"""clipboard - (NOT AVAILABLE YET) the Finder\xd5s clipboard window """ """clipboard - (NOT AVAILABLE YET) the Finder\xd5s clipboard window """
which = 'pcli' which = 'pcli'
want = 'obj ' want = 'obj '
class desktop(aetools.NProperty): class _Prop_desktop(aetools.NProperty):
"""desktop - the desktop """ """desktop - the desktop """
which = 'desk' which = 'desk'
want = 'cdsk' want = 'cdsk'
class frontmost(aetools.NProperty): class _Prop_frontmost(aetools.NProperty):
"""frontmost - Is the Finder the frontmost process? """ """frontmost - Is the Finder the frontmost process? """
which = 'pisf' which = 'pisf'
want = 'bool' want = 'bool'
class home(aetools.NProperty): class _Prop_home(aetools.NProperty):
"""home - the home directory """ """home - the home directory """
which = 'home' which = 'home'
want = 'cfol' want = 'cfol'
class insertion_location(aetools.NProperty): class _Prop_insertion_location(aetools.NProperty):
"""insertion location - the container in which a new folder would appear if \xd2New Folder\xd3 was selected """ """insertion location - the container in which a new folder would appear if \xd2New Folder\xd3 was selected """
which = 'pins' which = 'pins'
want = 'obj ' want = 'obj '
class name(aetools.NProperty): class _Prop_name(aetools.NProperty):
"""name - the Finder\xd5s name """ """name - the Finder\xd5s name """
which = 'pnam' which = 'pnam'
want = 'itxt' want = 'itxt'
class product_version(aetools.NProperty): class _Prop_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 = 'utxt' want = 'utxt'
class selection(aetools.NProperty): class _Prop_selection(aetools.NProperty):
"""selection - the selection in the frontmost Finder window """ """selection - the selection in the frontmost Finder window """
which = 'sele' which = 'sele'
want = 'obj ' want = 'obj '
class startup_disk(aetools.NProperty): class _Prop_startup_disk(aetools.NProperty):
"""startup disk - the startup disk """ """startup disk - the startup disk """
which = 'sdsk' which = 'sdsk'
want = 'cdis' want = 'cdis'
class trash(aetools.NProperty): class _Prop_trash(aetools.NProperty):
"""trash - the trash """ """trash - the trash """
which = 'trsh' which = 'trsh'
want = 'ctrs' want = 'ctrs'
class version(aetools.NProperty): class _Prop_version(aetools.NProperty):
"""version - the version of the Finder """ """version - the version of the Finder """
which = 'vers' which = 'vers'
want = 'utxt' want = 'utxt'
class visible(aetools.NProperty): class _Prop_visible(aetools.NProperty):
"""visible - Is the Finder\xd5s layer visible? """ """visible - Is the Finder\xd5s layer visible? """
which = 'pvis' which = 'pvis'
want = 'bool' want = 'bool'
@ -133,19 +133,19 @@ import Window_classes
import Containers_and_folders import Containers_and_folders
import Finder_items import Finder_items
application._privpropdict = { application._privpropdict = {
'Finder_preferences' : Finder_preferences, 'Finder_preferences' : _Prop_Finder_preferences,
'clipboard' : clipboard, 'clipboard' : _Prop_clipboard,
'desktop' : desktop, 'desktop' : _Prop_desktop,
'frontmost' : frontmost, 'frontmost' : _Prop_frontmost,
'home' : home, 'home' : _Prop_home,
'insertion_location' : insertion_location, 'insertion_location' : _Prop_insertion_location,
'name' : name, 'name' : _Prop_name,
'product_version' : product_version, 'product_version' : _Prop_product_version,
'selection' : selection, 'selection' : _Prop_selection,
'startup_disk' : startup_disk, 'startup_disk' : _Prop_startup_disk,
'trash' : trash, 'trash' : _Prop_trash,
'version' : version, 'version' : _Prop_version,
'visible' : visible, 'visible' : _Prop_visible,
} }
application._privelemdict = { application._privelemdict = {
'Finder_window' : Window_classes.Finder_window, 'Finder_window' : Window_classes.Finder_window,
@ -170,25 +170,3 @@ application._privelemdict = {
_classdeclarations = { _classdeclarations = {
'capp' : application, 'capp' : application,
} }
_propdeclarations = {
'desk' : desktop,
'home' : home,
'pcli' : clipboard,
'pfrp' : Finder_preferences,
'pins' : insertion_location,
'pisf' : frontmost,
'pnam' : name,
'pvis' : visible,
'sdsk' : startup_disk,
'sele' : selection,
'trsh' : trash,
'ver2' : product_version,
'vers' : version,
}
_compdeclarations = {
}
_enumdeclarations = {
}

View file

@ -168,111 +168,111 @@ class Finder_items_Events:
class item(aetools.ComponentItem): class item(aetools.ComponentItem):
"""item - An item """ """item - An item """
want = 'cobj' want = 'cobj'
class bounds(aetools.NProperty): class _Prop_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) """ """bounds - the bounding rectangle of the item (can only be set for an item in a window viewed as icons or buttons) """
which = 'pbnd' which = 'pbnd'
want = 'qdrt' want = 'qdrt'
class comment(aetools.NProperty): class _Prop_comment(aetools.NProperty):
"""comment - the comment of the item, displayed in the \xd2Get Info\xd3 window """ """comment - the comment of the item, displayed in the \xd2Get Info\xd3 window """
which = 'comt' which = 'comt'
want = 'utxt' want = 'utxt'
class container(aetools.NProperty): class _Prop_container(aetools.NProperty):
"""container - the container of the item """ """container - the container of the item """
which = 'ctnr' which = 'ctnr'
want = 'obj ' want = 'obj '
class creation_date(aetools.NProperty): class _Prop_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 description(aetools.NProperty): class _Prop_description(aetools.NProperty):
"""description - a description of the item """ """description - a description of the item """
which = 'dscr' which = 'dscr'
want = 'utxt' want = 'utxt'
class disk(aetools.NProperty): class _Prop_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'
want = 'obj ' want = 'obj '
class displayed_name(aetools.NProperty): class _Prop_displayed_name(aetools.NProperty):
"""displayed name - the user-visible name of the item """ """displayed name - the user-visible name of the item """
which = 'dnam' which = 'dnam'
want = 'utxt' want = 'utxt'
class everyones_privileges(aetools.NProperty): class _Prop_everyones_privileges(aetools.NProperty):
"""everyones privileges - """ """everyones privileges - """
which = 'gstp' which = 'gstp'
want = 'priv' want = 'priv'
class extension_hidden(aetools.NProperty): class _Prop_extension_hidden(aetools.NProperty):
"""extension hidden - Is the item's extension hidden from the user? """ """extension hidden - Is the item's extension hidden from the user? """
which = 'hidx' which = 'hidx'
want = 'bool' want = 'bool'
class group(aetools.NProperty): class _Prop_group(aetools.NProperty):
"""group - the user or group that has special access to the container """ """group - the user or group that has special access to the container """
which = 'sgrp' which = 'sgrp'
want = 'utxt' want = 'utxt'
class group_privileges(aetools.NProperty): class _Prop_group_privileges(aetools.NProperty):
"""group privileges - """ """group privileges - """
which = 'gppr' which = 'gppr'
want = 'priv' want = 'priv'
class icon(aetools.NProperty): class _Prop_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 index(aetools.NProperty): class _Prop_index(aetools.NProperty):
"""index - the index in the front-to-back ordering within its container """ """index - the index in the front-to-back ordering within its container """
which = 'pidx' which = 'pidx'
want = 'long' want = 'long'
class information_window(aetools.NProperty): class _Prop_information_window(aetools.NProperty):
"""information window - the information window for the item """ """information window - the information window for the item """
which = 'iwnd' which = 'iwnd'
want = 'obj ' want = 'obj '
class kind(aetools.NProperty): class _Prop_kind(aetools.NProperty):
"""kind - the kind of the item """ """kind - the kind of the item """
which = 'kind' which = 'kind'
want = 'utxt' want = 'utxt'
class label_index(aetools.NProperty): class _Prop_label_index(aetools.NProperty):
"""label index - the label of the item """ """label index - the label of the item """
which = 'labi' which = 'labi'
want = 'long' want = 'long'
class locked(aetools.NProperty): class _Prop_locked(aetools.NProperty):
"""locked - Is the file locked? """ """locked - Is the file locked? """
which = 'aslk' which = 'aslk'
want = 'bool' want = 'bool'
class modification_date(aetools.NProperty): class _Prop_modification_date(aetools.NProperty):
"""modification date - the date on which the item was last modified """ """modification date - the date on which the item was last modified """
which = 'asmo' which = 'asmo'
want = 'ldt ' want = 'ldt '
class name(aetools.NProperty): class _Prop_name(aetools.NProperty):
"""name - the name of the item """ """name - the name of the item """
which = 'pnam' which = 'pnam'
want = 'utxt' want = 'utxt'
class name_extension(aetools.NProperty): class _Prop_name_extension(aetools.NProperty):
"""name extension - the name extension of the item (such as \xd2txt\xd3) """ """name extension - the name extension of the item (such as \xd2txt\xd3) """
which = 'nmxt' which = 'nmxt'
want = 'utxt' want = 'utxt'
class owner(aetools.NProperty): class _Prop_owner(aetools.NProperty):
"""owner - the user that owns the container """ """owner - the user that owns the container """
which = 'sown' which = 'sown'
want = 'utxt' want = 'utxt'
class owner_privileges(aetools.NProperty): class _Prop_owner_privileges(aetools.NProperty):
"""owner privileges - """ """owner privileges - """
which = 'ownr' which = 'ownr'
want = 'priv' want = 'priv'
class physical_size(aetools.NProperty): class _Prop_physical_size(aetools.NProperty):
"""physical size - the actual space used by the item on disk """ """physical size - the actual space used by the item on disk """
which = 'phys' which = 'phys'
want = 'comp' want = 'comp'
class position(aetools.NProperty): class _Prop_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) """ """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' which = 'posn'
want = 'QDpt' want = 'QDpt'
class properties(aetools.NProperty): class _Prop_properties(aetools.NProperty):
"""properties - every property of an item """ """properties - every property of an item """
which = 'pALL' which = 'pALL'
want = 'reco' want = 'reco'
class size(aetools.NProperty): class _Prop_size(aetools.NProperty):
"""size - the logical size of the item """ """size - the logical size of the item """
which = 'ptsz' which = 'ptsz'
want = 'comp' want = 'comp'
class url(aetools.NProperty): class _Prop_url(aetools.NProperty):
"""url - the url of the item """ """url - the url of the item """
which = 'pURL' which = 'pURL'
want = 'utxt' want = 'utxt'
@ -280,33 +280,33 @@ class url(aetools.NProperty):
items = item items = item
item._superclassnames = [] item._superclassnames = []
item._privpropdict = { item._privpropdict = {
'bounds' : bounds, 'bounds' : _Prop_bounds,
'comment' : comment, 'comment' : _Prop_comment,
'container' : container, 'container' : _Prop_container,
'creation_date' : creation_date, 'creation_date' : _Prop_creation_date,
'description' : description, 'description' : _Prop_description,
'disk' : disk, 'disk' : _Prop_disk,
'displayed_name' : displayed_name, 'displayed_name' : _Prop_displayed_name,
'everyones_privileges' : everyones_privileges, 'everyones_privileges' : _Prop_everyones_privileges,
'extension_hidden' : extension_hidden, 'extension_hidden' : _Prop_extension_hidden,
'group' : group, 'group' : _Prop_group,
'group_privileges' : group_privileges, 'group_privileges' : _Prop_group_privileges,
'icon' : icon, 'icon' : _Prop_icon,
'index' : index, 'index' : _Prop_index,
'information_window' : information_window, 'information_window' : _Prop_information_window,
'kind' : kind, 'kind' : _Prop_kind,
'label_index' : label_index, 'label_index' : _Prop_label_index,
'locked' : locked, 'locked' : _Prop_locked,
'modification_date' : modification_date, 'modification_date' : _Prop_modification_date,
'name' : name, 'name' : _Prop_name,
'name_extension' : name_extension, 'name_extension' : _Prop_name_extension,
'owner' : owner, 'owner' : _Prop_owner,
'owner_privileges' : owner_privileges, 'owner_privileges' : _Prop_owner_privileges,
'physical_size' : physical_size, 'physical_size' : _Prop_physical_size,
'position' : position, 'position' : _Prop_position,
'properties' : properties, 'properties' : _Prop_properties,
'size' : size, 'size' : _Prop_size,
'url' : url, 'url' : _Prop_url,
} }
item._privelemdict = { item._privelemdict = {
} }
@ -317,39 +317,3 @@ item._privelemdict = {
_classdeclarations = { _classdeclarations = {
'cobj' : item, 'cobj' : item,
} }
_propdeclarations = {
'ascd' : creation_date,
'aslk' : locked,
'asmo' : modification_date,
'cdis' : disk,
'comt' : comment,
'ctnr' : container,
'dnam' : displayed_name,
'dscr' : description,
'gppr' : group_privileges,
'gstp' : everyones_privileges,
'hidx' : extension_hidden,
'iimg' : icon,
'iwnd' : information_window,
'kind' : kind,
'labi' : label_index,
'nmxt' : name_extension,
'ownr' : owner_privileges,
'pALL' : properties,
'pURL' : url,
'pbnd' : bounds,
'phys' : physical_size,
'pidx' : index,
'pnam' : name,
'posn' : position,
'ptsz' : size,
'sgrp' : group,
'sown' : owner,
}
_compdeclarations = {
}
_enumdeclarations = {
}

View file

@ -73,7 +73,7 @@ class Legacy_suite_Events:
class application(aetools.ComponentItem): class application(aetools.ComponentItem):
"""application - The Finder """ """application - The Finder """
want = 'capp' want = 'capp'
class desktop_picture(aetools.NProperty): class _Prop_desktop_picture(aetools.NProperty):
"""desktop picture - the desktop picture of the main monitor """ """desktop picture - the desktop picture of the main monitor """
which = 'dpic' which = 'dpic'
want = 'file' want = 'file'
@ -81,11 +81,11 @@ class desktop_picture(aetools.NProperty):
class application_process(aetools.ComponentItem): class application_process(aetools.ComponentItem):
"""application process - A process launched from an application file """ """application process - A process launched from an application file """
want = 'pcap' want = 'pcap'
class _3c_Inheritance_3e_(aetools.NProperty): class _Prop__3c_Inheritance_3e_(aetools.NProperty):
"""<Inheritance> - inherits some of its properties from the process class """ """<Inheritance> - inherits some of its properties from the process class """
which = 'c@#^' which = 'c@#^'
want = 'prcs' want = 'prcs'
class application_file(aetools.NProperty): class _Prop_application_file(aetools.NProperty):
"""application file - the application file from which this process was launched """ """application file - the application file from which this process was launched """
which = 'appf' which = 'appf'
want = 'appf' want = 'appf'
@ -95,7 +95,7 @@ application_processes = application_process
class desk_accessory_process(aetools.ComponentItem): class desk_accessory_process(aetools.ComponentItem):
"""desk accessory process - A process launched from a desk accessory file """ """desk accessory process - A process launched from a desk accessory file """
want = 'pcda' want = 'pcda'
class desk_accessory_file(aetools.NProperty): class _Prop_desk_accessory_file(aetools.NProperty):
"""desk accessory file - the desk accessory file from which this process was launched """ """desk accessory file - the desk accessory file from which this process was launched """
which = 'dafi' which = 'dafi'
want = 'obj ' want = 'obj '
@ -105,47 +105,47 @@ 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 accepts_high_level_events(aetools.NProperty): class _Prop_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'
want = 'bool' want = 'bool'
class accepts_remote_events(aetools.NProperty): class _Prop_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): class _Prop_creator_type(aetools.NProperty):
"""creator type - the OSType of the creator of the process (the signature) """ """creator type - the OSType of the creator of the process (the signature) """
which = 'fcrt' which = 'fcrt'
want = 'type' want = 'type'
class file(aetools.NProperty): class _Prop_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'
want = 'obj ' want = 'obj '
class file_type(aetools.NProperty): class _Prop_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 frontmost(aetools.NProperty): class _Prop_frontmost(aetools.NProperty):
"""frontmost - Is the process the frontmost process? """ """frontmost - Is the process the frontmost process? """
which = 'pisf' which = 'pisf'
want = 'bool' want = 'bool'
class has_scripting_terminology(aetools.NProperty): class _Prop_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 name(aetools.NProperty): class _Prop_name(aetools.NProperty):
"""name - the name of the process """ """name - the name of the process """
which = 'pnam' which = 'pnam'
want = 'itxt' want = 'itxt'
class partition_space_used(aetools.NProperty): class _Prop_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): class _Prop_total_partition_size(aetools.NProperty):
"""total partition size - the size of the partition with which the process was launched """ """total partition size - the size of the partition with which the process was launched """
which = 'appt' which = 'appt'
want = 'long' want = 'long'
class visible(aetools.NProperty): class _Prop_visible(aetools.NProperty):
"""visible - Is the process' layer visible? """ """visible - Is the process' layer visible? """
which = 'pvis' which = 'pvis'
want = 'bool' want = 'bool'
@ -153,37 +153,37 @@ class visible(aetools.NProperty):
processes = process processes = process
application._superclassnames = [] application._superclassnames = []
application._privpropdict = { application._privpropdict = {
'desktop_picture' : desktop_picture, 'desktop_picture' : _Prop_desktop_picture,
} }
application._privelemdict = { application._privelemdict = {
} }
application_process._superclassnames = ['process'] application_process._superclassnames = ['process']
application_process._privpropdict = { application_process._privpropdict = {
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_, '_3c_Inheritance_3e_' : _Prop__3c_Inheritance_3e_,
'application_file' : application_file, 'application_file' : _Prop_application_file,
} }
application_process._privelemdict = { application_process._privelemdict = {
} }
desk_accessory_process._superclassnames = ['process'] desk_accessory_process._superclassnames = ['process']
desk_accessory_process._privpropdict = { desk_accessory_process._privpropdict = {
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_, '_3c_Inheritance_3e_' : _Prop__3c_Inheritance_3e_,
'desk_accessory_file' : desk_accessory_file, 'desk_accessory_file' : _Prop_desk_accessory_file,
} }
desk_accessory_process._privelemdict = { desk_accessory_process._privelemdict = {
} }
process._superclassnames = [] process._superclassnames = []
process._privpropdict = { process._privpropdict = {
'accepts_high_level_events' : accepts_high_level_events, 'accepts_high_level_events' : _Prop_accepts_high_level_events,
'accepts_remote_events' : accepts_remote_events, 'accepts_remote_events' : _Prop_accepts_remote_events,
'creator_type' : creator_type, 'creator_type' : _Prop_creator_type,
'file' : file, 'file' : _Prop_file,
'file_type' : file_type, 'file_type' : _Prop_file_type,
'frontmost' : frontmost, 'frontmost' : _Prop_frontmost,
'has_scripting_terminology' : has_scripting_terminology, 'has_scripting_terminology' : _Prop_has_scripting_terminology,
'name' : name, 'name' : _Prop_name,
'partition_space_used' : partition_space_used, 'partition_space_used' : _Prop_partition_space_used,
'total_partition_size' : total_partition_size, 'total_partition_size' : _Prop_total_partition_size,
'visible' : visible, 'visible' : _Prop_visible,
} }
process._privelemdict = { process._privelemdict = {
} }
@ -197,27 +197,3 @@ _classdeclarations = {
'pcda' : desk_accessory_process, 'pcda' : desk_accessory_process,
'prcs' : process, 'prcs' : process,
} }
_propdeclarations = {
'appf' : application_file,
'appt' : total_partition_size,
'asty' : file_type,
'c@#^' : _3c_Inheritance_3e_,
'dafi' : desk_accessory_file,
'dpic' : desktop_picture,
'fcrt' : creator_type,
'file' : file,
'hscr' : has_scripting_terminology,
'isab' : accepts_high_level_events,
'pisf' : frontmost,
'pnam' : name,
'pusd' : partition_space_used,
'pvis' : visible,
'revt' : accepts_remote_events,
}
_compdeclarations = {
}
_enumdeclarations = {
}

View file

@ -324,12 +324,3 @@ _Enum_bool = None # XXXX enum bool not found!!
# #
_classdeclarations = { _classdeclarations = {
} }
_propdeclarations = {
}
_compdeclarations = {
}
_enumdeclarations = {
}

View file

@ -22,15 +22,15 @@ class alias_list(aetools.ComponentItem):
class label(aetools.ComponentItem): class label(aetools.ComponentItem):
"""label - (NOT AVAILABLE YET) A Finder label (name and color) """ """label - (NOT AVAILABLE YET) A Finder label (name and color) """
want = 'clbl' want = 'clbl'
class color(aetools.NProperty): class _Prop_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): class _Prop_index(aetools.NProperty):
"""index - the index in the front-to-back ordering within its container """ """index - the index in the front-to-back ordering within its container """
which = 'pidx' which = 'pidx'
want = 'long' want = 'long'
class name(aetools.NProperty): class _Prop_name(aetools.NProperty):
"""name - the name associated with the label """ """name - the name associated with the label """
which = 'pnam' which = 'pnam'
want = 'utxt' want = 'utxt'
@ -38,87 +38,87 @@ class name(aetools.NProperty):
class preferences(aetools.ComponentItem): class preferences(aetools.ComponentItem):
"""preferences - (NOT AVAILABLE, SUBJECT TO CHANGE) The Finder Preferences """ """preferences - (NOT AVAILABLE, SUBJECT TO CHANGE) The Finder Preferences """
want = 'cprf' want = 'cprf'
class button_view_arrangement(aetools.NProperty): class _Prop_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'
want = 'earr' want = 'earr'
class button_view_icon_size(aetools.NProperty): class _Prop_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 calculates_folder_sizes(aetools.NProperty): class _Prop_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): class _Prop_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) """ """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' which = 'dela'
want = 'shor' want = 'shor'
class list_view_icon_size(aetools.NProperty): class _Prop_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'
want = 'long' want = 'long'
class shows_comments(aetools.NProperty): class _Prop_shows_comments(aetools.NProperty):
"""shows comments - Are comments displayed in default Finder list view windows? """ """shows comments - Are comments displayed in default Finder list view windows? """
which = 'scom' which = 'scom'
want = 'bool' want = 'bool'
class shows_creation_date(aetools.NProperty): class _Prop_shows_creation_date(aetools.NProperty):
"""shows creation date - Are creation dates displayed in default Finder list view windows? """ """shows creation date - Are creation dates displayed in default Finder list view windows? """
which = 'scda' which = 'scda'
want = 'bool' want = 'bool'
class shows_kind(aetools.NProperty): class _Prop_shows_kind(aetools.NProperty):
"""shows kind - Are document kinds displayed in default Finder list view windows? """ """shows kind - Are document kinds displayed in default Finder list view windows? """
which = 'sknd' which = 'sknd'
want = 'bool' want = 'bool'
class shows_label(aetools.NProperty): class _Prop_shows_label(aetools.NProperty):
"""shows label - Are labels displayed in default Finder list view windows? """ """shows label - Are labels displayed in default Finder list view windows? """
which = 'slbl' which = 'slbl'
want = 'bool' want = 'bool'
class shows_modification_date(aetools.NProperty): class _Prop_shows_modification_date(aetools.NProperty):
"""shows modification date - Are modification dates displayed in default Finder list view windows? """ """shows modification date - Are modification dates displayed in default Finder list view windows? """
which = 'sdat' which = 'sdat'
want = 'bool' want = 'bool'
class shows_size(aetools.NProperty): class _Prop_shows_size(aetools.NProperty):
"""shows size - Are file sizes displayed in default Finder list view windows? """ """shows size - Are file sizes displayed in default Finder list view windows? """
which = 'ssiz' which = 'ssiz'
want = 'bool' want = 'bool'
class shows_version(aetools.NProperty): class _Prop_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): class _Prop_spatial_view_arrangement(aetools.NProperty):
"""spatial view arrangement - the method of arrangement of icons in default Finder spatial view windows """ """spatial view arrangement - the method of arrangement of icons in default Finder spatial view windows """
which = 'iarr' which = 'iarr'
want = 'earr' want = 'earr'
class spatial_view_icon_size(aetools.NProperty): class _Prop_spatial_view_icon_size(aetools.NProperty):
"""spatial view icon size - the size of icons displayed in Finder spatial view windows. """ """spatial view icon size - the size of icons displayed in Finder spatial view windows. """
which = 'iisz' which = 'iisz'
want = 'long' want = 'long'
class spring_open_folders(aetools.NProperty): class _Prop_spring_open_folders(aetools.NProperty):
"""spring open folders - Spring open folders after the specified delay? """ """spring open folders - Spring open folders after the specified delay? """
which = 'sprg' which = 'sprg'
want = 'bool' want = 'bool'
class uses_relative_dates(aetools.NProperty): class _Prop_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'
want = 'bool' want = 'bool'
class uses_simple_menus(aetools.NProperty): class _Prop_uses_simple_menus(aetools.NProperty):
"""uses simple menus - Use simplified Finder menus? """ """uses simple menus - Use simplified Finder menus? """
which = 'usme' which = 'usme'
want = 'bool' want = 'bool'
class uses_wide_grid(aetools.NProperty): class _Prop_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 view_font(aetools.NProperty): class _Prop_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'
want = 'long' want = 'long'
class view_font_size(aetools.NProperty): class _Prop_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): class _Prop_window(aetools.NProperty):
"""window - the window that would open if Finder preferences was opened """ """window - the window that would open if Finder preferences was opened """
which = 'cwin' which = 'cwin'
want = 'pwnd' want = 'pwnd'
@ -128,8 +128,8 @@ class icon_view_options(aetools.ComponentItem):
"""icon view options - the icon view options """ """icon view options - the icon view options """
want = 'icop' want = 'icop'
arrangement = spatial_view_arrangement _Prop_arrangement = _Prop_spatial_view_arrangement
class icon_size(aetools.NProperty): class _Prop_icon_size(aetools.NProperty):
"""icon size - the size of icons displayed in the icon view """ """icon size - the size of icons displayed in the icon view """
which = 'lvis' which = 'lvis'
want = 'shor' want = 'shor'
@ -137,41 +137,41 @@ class icon_size(aetools.NProperty):
class icon_family(aetools.ComponentItem): class icon_family(aetools.ComponentItem):
"""icon family - (NOT AVAILABLE YET) A family of icons """ """icon family - (NOT AVAILABLE YET) A family of icons """
want = 'ifam' want = 'ifam'
class large_32_bit_icon(aetools.NProperty): class _Prop_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_4_bit_icon(aetools.NProperty): class _Prop_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 large_8_bit_icon(aetools.NProperty): class _Prop_large_8_bit_icon(aetools.NProperty):
"""large 8 bit icon - the large 8-bit color icon """ """large 8 bit icon - the large 8-bit color icon """
which = 'icl8' which = 'icl8'
want = 'icl8' want = 'icl8'
class large_8_bit_mask(aetools.NProperty): class _Prop_large_8_bit_mask(aetools.NProperty):
"""large 8 bit mask - the large 8-bit mask for large 32-bit icons """ """large 8 bit mask - the large 8-bit mask for large 32-bit icons """
which = 'l8mk' which = 'l8mk'
want = 'l8mk' want = 'l8mk'
class large_monochrome_icon_and_mask(aetools.NProperty): class _Prop_large_monochrome_icon_and_mask(aetools.NProperty):
"""large monochrome icon and mask - the large black-and-white icon and the mask for large icons """ """large monochrome icon and mask - the large black-and-white icon and the mask for large icons """
which = 'ICN#' which = 'ICN#'
want = 'ICN#' want = 'ICN#'
class small_32_bit_icon(aetools.NProperty): class _Prop_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'
class small_4_bit_icon(aetools.NProperty): class _Prop_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): class _Prop_small_8_bit_icon(aetools.NProperty):
"""small 8 bit icon - the small 8-bit color icon """ """small 8 bit icon - the small 8-bit color icon """
which = 'ics8' which = 'ics8'
want = 'ics8' want = 'ics8'
small_8_bit_mask = small_8_bit_icon _Prop_small_8_bit_mask = _Prop_small_8_bit_icon
class small_monochrome_icon_and_mask(aetools.NProperty): class _Prop_small_monochrome_icon_and_mask(aetools.NProperty):
"""small monochrome icon and mask - the small black-and-white icon and the mask for small icons """ """small monochrome icon and mask - the small black-and-white icon and the mask for small icons """
which = 'ics#' which = 'ics#'
want = 'ics#' want = 'ics#'
@ -179,15 +179,15 @@ class small_monochrome_icon_and_mask(aetools.NProperty):
class column(aetools.ComponentItem): class column(aetools.ComponentItem):
"""column - a column of a list view """ """column - a column of a list view """
want = 'lvcl' want = 'lvcl'
class sort_direction(aetools.NProperty): class _Prop_sort_direction(aetools.NProperty):
"""sort direction - The direction in which the window is sorted """ """sort direction - The direction in which the window is sorted """
which = 'sord' which = 'sord'
want = 'sodr' want = 'sodr'
class visible(aetools.NProperty): class _Prop_visible(aetools.NProperty):
"""visible - is this column visible """ """visible - is this column visible """
which = 'pvis' which = 'pvis'
want = 'bool' want = 'bool'
class width(aetools.NProperty): class _Prop_width(aetools.NProperty):
"""width - the width of this column """ """width - the width of this column """
which = 'clwd' which = 'clwd'
want = 'shor' want = 'shor'
@ -197,7 +197,7 @@ columns = column
class list_view_options(aetools.ComponentItem): class list_view_options(aetools.ComponentItem):
"""list view options - the list view options """ """list view options - the list view options """
want = 'lvop' want = 'lvop'
class sort_column(aetools.NProperty): class _Prop_sort_column(aetools.NProperty):
"""sort column - the column that the list view is sorted on """ """sort column - the column that the list view is sorted on """
which = 'srtc' which = 'srtc'
want = 'lvcl' want = 'lvcl'
@ -209,77 +209,77 @@ alias_list._privelemdict = {
} }
label._superclassnames = [] label._superclassnames = []
label._privpropdict = { label._privpropdict = {
'color' : color, 'color' : _Prop_color,
'index' : index, 'index' : _Prop_index,
'name' : name, 'name' : _Prop_name,
} }
label._privelemdict = { label._privelemdict = {
} }
preferences._superclassnames = [] preferences._superclassnames = []
preferences._privpropdict = { preferences._privpropdict = {
'button_view_arrangement' : button_view_arrangement, 'button_view_arrangement' : _Prop_button_view_arrangement,
'button_view_icon_size' : button_view_icon_size, 'button_view_icon_size' : _Prop_button_view_icon_size,
'calculates_folder_sizes' : calculates_folder_sizes, 'calculates_folder_sizes' : _Prop_calculates_folder_sizes,
'delay_before_springing' : delay_before_springing, 'delay_before_springing' : _Prop_delay_before_springing,
'list_view_icon_size' : list_view_icon_size, 'list_view_icon_size' : _Prop_list_view_icon_size,
'shows_comments' : shows_comments, 'shows_comments' : _Prop_shows_comments,
'shows_creation_date' : shows_creation_date, 'shows_creation_date' : _Prop_shows_creation_date,
'shows_kind' : shows_kind, 'shows_kind' : _Prop_shows_kind,
'shows_label' : shows_label, 'shows_label' : _Prop_shows_label,
'shows_modification_date' : shows_modification_date, 'shows_modification_date' : _Prop_shows_modification_date,
'shows_size' : shows_size, 'shows_size' : _Prop_shows_size,
'shows_version' : shows_version, 'shows_version' : _Prop_shows_version,
'spatial_view_arrangement' : spatial_view_arrangement, 'spatial_view_arrangement' : _Prop_spatial_view_arrangement,
'spatial_view_icon_size' : spatial_view_icon_size, 'spatial_view_icon_size' : _Prop_spatial_view_icon_size,
'spring_open_folders' : spring_open_folders, 'spring_open_folders' : _Prop_spring_open_folders,
'uses_relative_dates' : uses_relative_dates, 'uses_relative_dates' : _Prop_uses_relative_dates,
'uses_simple_menus' : uses_simple_menus, 'uses_simple_menus' : _Prop_uses_simple_menus,
'uses_wide_grid' : uses_wide_grid, 'uses_wide_grid' : _Prop_uses_wide_grid,
'view_font' : view_font, 'view_font' : _Prop_view_font,
'view_font_size' : view_font_size, 'view_font_size' : _Prop_view_font_size,
'window' : window, 'window' : _Prop_window,
} }
preferences._privelemdict = { preferences._privelemdict = {
'label' : label, 'label' : label,
} }
icon_view_options._superclassnames = [] icon_view_options._superclassnames = []
icon_view_options._privpropdict = { icon_view_options._privpropdict = {
'arrangement' : arrangement, 'arrangement' : _Prop_arrangement,
'icon_size' : icon_size, 'icon_size' : _Prop_icon_size,
} }
icon_view_options._privelemdict = { icon_view_options._privelemdict = {
} }
icon_family._superclassnames = [] icon_family._superclassnames = []
icon_family._privpropdict = { icon_family._privpropdict = {
'large_32_bit_icon' : large_32_bit_icon, 'large_32_bit_icon' : _Prop_large_32_bit_icon,
'large_4_bit_icon' : large_4_bit_icon, 'large_4_bit_icon' : _Prop_large_4_bit_icon,
'large_8_bit_icon' : large_8_bit_icon, 'large_8_bit_icon' : _Prop_large_8_bit_icon,
'large_8_bit_mask' : large_8_bit_mask, 'large_8_bit_mask' : _Prop_large_8_bit_mask,
'large_monochrome_icon_and_mask' : large_monochrome_icon_and_mask, 'large_monochrome_icon_and_mask' : _Prop_large_monochrome_icon_and_mask,
'small_32_bit_icon' : small_32_bit_icon, 'small_32_bit_icon' : _Prop_small_32_bit_icon,
'small_4_bit_icon' : small_4_bit_icon, 'small_4_bit_icon' : _Prop_small_4_bit_icon,
'small_8_bit_icon' : small_8_bit_icon, 'small_8_bit_icon' : _Prop_small_8_bit_icon,
'small_8_bit_mask' : small_8_bit_mask, 'small_8_bit_mask' : _Prop_small_8_bit_mask,
'small_monochrome_icon_and_mask' : small_monochrome_icon_and_mask, 'small_monochrome_icon_and_mask' : _Prop_small_monochrome_icon_and_mask,
} }
icon_family._privelemdict = { icon_family._privelemdict = {
} }
column._superclassnames = [] column._superclassnames = []
column._privpropdict = { column._privpropdict = {
'index' : index, 'index' : _Prop_index,
'name' : name, 'name' : _Prop_name,
'sort_direction' : sort_direction, 'sort_direction' : _Prop_sort_direction,
'visible' : visible, 'visible' : _Prop_visible,
'width' : width, 'width' : _Prop_width,
} }
column._privelemdict = { column._privelemdict = {
} }
list_view_options._superclassnames = [] list_view_options._superclassnames = []
list_view_options._privpropdict = { list_view_options._privpropdict = {
'calculates_folder_sizes' : calculates_folder_sizes, 'calculates_folder_sizes' : _Prop_calculates_folder_sizes,
'icon_size' : icon_size, 'icon_size' : _Prop_icon_size,
'sort_column' : sort_column, 'sort_column' : _Prop_sort_column,
'uses_relative_dates' : uses_relative_dates, 'uses_relative_dates' : _Prop_uses_relative_dates,
} }
list_view_options._privelemdict = { list_view_options._privelemdict = {
'column' : column, 'column' : column,
@ -297,50 +297,3 @@ _classdeclarations = {
'lvcl' : column, 'lvcl' : column,
'lvop' : list_view_options, 'lvop' : list_view_options,
} }
_propdeclarations = {
'ICN#' : large_monochrome_icon_and_mask,
'barr' : button_view_arrangement,
'bisz' : button_view_icon_size,
'clwd' : width,
'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,
'is32' : small_32_bit_icon,
'l8mk' : large_8_bit_mask,
'lisz' : list_view_icon_size,
'lvis' : icon_size,
'pidx' : index,
'pnam' : name,
'pvis' : visible,
'scda' : shows_creation_date,
'scom' : shows_comments,
'sdat' : shows_modification_date,
'sfsz' : calculates_folder_sizes,
'sknd' : shows_kind,
'slbl' : shows_label,
'sord' : sort_direction,
'sprg' : spring_open_folders,
'srtc' : sort_column,
'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 = {
}
_enumdeclarations = {
}

View file

@ -18,23 +18,23 @@ class Window_classes_Events:
class Finder_window(aetools.ComponentItem): class Finder_window(aetools.ComponentItem):
"""Finder window - A file viewer window """ """Finder window - A file viewer window """
want = 'brow' want = 'brow'
class _3c_Inheritance_3e_(aetools.NProperty): class _Prop__3c_Inheritance_3e_(aetools.NProperty):
"""<Inheritance> - inherits some of its properties from the window class """ """<Inheritance> - inherits some of its properties from the window class """
which = 'c@#^' which = 'c@#^'
want = 'cwin' want = 'cwin'
class current_view(aetools.NProperty): class _Prop_current_view(aetools.NProperty):
"""current view - the current view for the container window """ """current view - the current view for the container window """
which = 'pvew' which = 'pvew'
want = 'ecvw' want = 'ecvw'
class icon_view_options(aetools.NProperty): class _Prop_icon_view_options(aetools.NProperty):
"""icon view options - the icon view options for the container window """ """icon view options - the icon view options for the container window """
which = 'icop' which = 'icop'
want = 'icop' want = 'icop'
class list_view_options(aetools.NProperty): class _Prop_list_view_options(aetools.NProperty):
"""list view options - the list view options for the container window """ """list view options - the list view options for the container window """
which = 'lvop' which = 'lvop'
want = 'lvop' want = 'lvop'
class target(aetools.NProperty): class _Prop_target(aetools.NProperty):
"""target - the container at which this file viewer is targeted """ """target - the container at which this file viewer is targeted """
which = 'fvtg' which = 'fvtg'
want = 'obj ' want = 'obj '
@ -44,67 +44,67 @@ Finder_windows = Finder_window
class window(aetools.ComponentItem): class window(aetools.ComponentItem):
"""window - A window """ """window - A window """
want = 'cwin' want = 'cwin'
class bounds(aetools.NProperty): class _Prop_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 closeable(aetools.NProperty): class _Prop_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): class _Prop_collapsed(aetools.NProperty):
"""collapsed - Is the window collapsed """ """collapsed - Is the window collapsed """
which = 'wshd' which = 'wshd'
want = 'bool' want = 'bool'
class floating(aetools.NProperty): class _Prop_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 id(aetools.NProperty): class _Prop_id(aetools.NProperty):
"""id - the unique id for this window """ """id - the unique id for this window """
which = 'ID ' which = 'ID '
want = 'magn' want = 'magn'
class index(aetools.NProperty): class _Prop_index(aetools.NProperty):
"""index - the number of the window in the front-to-back layer ordering """ """index - the number of the window in the front-to-back layer ordering """
which = 'pidx' which = 'pidx'
want = 'long' want = 'long'
class modal(aetools.NProperty): class _Prop_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): class _Prop_name(aetools.NProperty):
"""name - the name of the window """ """name - the name of the window """
which = 'pnam' which = 'pnam'
want = 'utxt' want = 'utxt'
class position(aetools.NProperty): class _Prop_position(aetools.NProperty):
"""position - the upper left position of the window """ """position - the upper left position of the window """
which = 'posn' which = 'posn'
want = 'QDpt' want = 'QDpt'
class properties(aetools.NProperty): class _Prop_properties(aetools.NProperty):
"""properties - every property of a window """ """properties - every property of a window """
which = 'pALL' which = 'pALL'
want = 'reco' want = 'reco'
class resizable(aetools.NProperty): class _Prop_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): class _Prop_titled(aetools.NProperty):
"""titled - Does the window have a title bar? """ """titled - Does the window have a title bar? """
which = 'ptit' which = 'ptit'
want = 'bool' want = 'bool'
class visible(aetools.NProperty): class _Prop_visible(aetools.NProperty):
"""visible - Is the window visible (always true for open Finder windows)? """ """visible - Is the window visible (always true for open Finder windows)? """
which = 'pvis' which = 'pvis'
want = 'bool' want = 'bool'
class zoomable(aetools.NProperty): class _Prop_zoomable(aetools.NProperty):
"""zoomable - Is the window zoomable? """ """zoomable - Is the window zoomable? """
which = 'iszm' which = 'iszm'
want = 'bool' want = 'bool'
class zoomed(aetools.NProperty): class _Prop_zoomed(aetools.NProperty):
"""zoomed - Is the window zoomed? """ """zoomed - Is the window zoomed? """
which = 'pzum' which = 'pzum'
want = 'bool' want = 'bool'
class zoomed_full_size(aetools.NProperty): class _Prop_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) """ """zoomed full size - Is the window zoomed to the full size of the screen? (can only be set, not read) """
which = 'zumf' which = 'zumf'
want = 'bool' want = 'bool'
@ -114,11 +114,11 @@ windows = window
class information_window(aetools.ComponentItem): class information_window(aetools.ComponentItem):
"""information window - An inspector window (opened by \xd2Show Info\xd3) """ """information window - An inspector window (opened by \xd2Show Info\xd3) """
want = 'iwnd' want = 'iwnd'
class current_panel(aetools.NProperty): class _Prop_current_panel(aetools.NProperty):
"""current panel - the current panel in the information window """ """current panel - the current panel in the information window """
which = 'panl' which = 'panl'
want = 'ipnl' want = 'ipnl'
class item(aetools.NProperty): class _Prop_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 '
@ -134,53 +134,53 @@ class preferences_window(aetools.ComponentItem):
want = 'pwnd' want = 'pwnd'
Finder_window._superclassnames = ['window'] Finder_window._superclassnames = ['window']
Finder_window._privpropdict = { Finder_window._privpropdict = {
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_, '_3c_Inheritance_3e_' : _Prop__3c_Inheritance_3e_,
'current_view' : current_view, 'current_view' : _Prop_current_view,
'icon_view_options' : icon_view_options, 'icon_view_options' : _Prop_icon_view_options,
'list_view_options' : list_view_options, 'list_view_options' : _Prop_list_view_options,
'target' : target, 'target' : _Prop_target,
} }
Finder_window._privelemdict = { Finder_window._privelemdict = {
} }
window._superclassnames = [] window._superclassnames = []
window._privpropdict = { window._privpropdict = {
'bounds' : bounds, 'bounds' : _Prop_bounds,
'closeable' : closeable, 'closeable' : _Prop_closeable,
'collapsed' : collapsed, 'collapsed' : _Prop_collapsed,
'floating' : floating, 'floating' : _Prop_floating,
'id' : id, 'id' : _Prop_id,
'index' : index, 'index' : _Prop_index,
'modal' : modal, 'modal' : _Prop_modal,
'name' : name, 'name' : _Prop_name,
'position' : position, 'position' : _Prop_position,
'properties' : properties, 'properties' : _Prop_properties,
'resizable' : resizable, 'resizable' : _Prop_resizable,
'titled' : titled, 'titled' : _Prop_titled,
'visible' : visible, 'visible' : _Prop_visible,
'zoomable' : zoomable, 'zoomable' : _Prop_zoomable,
'zoomed' : zoomed, 'zoomed' : _Prop_zoomed,
'zoomed_full_size' : zoomed_full_size, 'zoomed_full_size' : _Prop_zoomed_full_size,
} }
window._privelemdict = { 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_' : _Prop__3c_Inheritance_3e_,
'current_panel' : current_panel, 'current_panel' : _Prop_current_panel,
'item' : item, 'item' : _Prop_item,
} }
information_window._privelemdict = { information_window._privelemdict = {
} }
clipping_window._superclassnames = ['window'] clipping_window._superclassnames = ['window']
clipping_window._privpropdict = { clipping_window._privpropdict = {
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_, '_3c_Inheritance_3e_' : _Prop__3c_Inheritance_3e_,
} }
clipping_window._privelemdict = { clipping_window._privelemdict = {
} }
preferences_window._superclassnames = ['window'] preferences_window._superclassnames = ['window']
preferences_window._privpropdict = { preferences_window._privpropdict = {
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_, '_3c_Inheritance_3e_' : _Prop__3c_Inheritance_3e_,
'current_panel' : current_panel, 'current_panel' : _Prop_current_panel,
} }
preferences_window._privelemdict = { preferences_window._privelemdict = {
} }
@ -195,35 +195,3 @@ _classdeclarations = {
'lwnd' : clipping_window, 'lwnd' : clipping_window,
'pwnd' : preferences_window, 'pwnd' : preferences_window,
} }
_propdeclarations = {
'ID ' : id,
'c@#^' : _3c_Inheritance_3e_,
'cobj' : item,
'fvtg' : target,
'hclb' : closeable,
'icop' : icon_view_options,
'isfl' : floating,
'iszm' : zoomable,
'lvop' : list_view_options,
'pALL' : properties,
'panl' : current_panel,
'pbnd' : bounds,
'pidx' : index,
'pmod' : modal,
'pnam' : name,
'posn' : position,
'prsz' : resizable,
'ptit' : titled,
'pvew' : current_view,
'pvis' : visible,
'pzum' : zoomed,
'wshd' : collapsed,
'zumf' : zoomed_full_size,
}
_compdeclarations = {
}
_enumdeclarations = {
}

View file

@ -67,13 +67,13 @@ 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(item)
getbaseclasses(application) getbaseclasses(application)
getbaseclasses(trash_2d_object) getbaseclasses(trash_2d_object)
getbaseclasses(desktop_2d_object) getbaseclasses(desktop_2d_object)
getbaseclasses(container) getbaseclasses(container)
getbaseclasses(folder) getbaseclasses(folder)
getbaseclasses(disk) getbaseclasses(disk)
getbaseclasses(item)
getbaseclasses(package) getbaseclasses(package)
getbaseclasses(file) getbaseclasses(file)
getbaseclasses(application_file) getbaseclasses(application_file)
@ -86,6 +86,10 @@ getbaseclasses(Finder_window)
getbaseclasses(window) getbaseclasses(window)
getbaseclasses(clipping_window) getbaseclasses(clipping_window)
getbaseclasses(information_window) getbaseclasses(information_window)
getbaseclasses(process)
getbaseclasses(application_process)
getbaseclasses(desk_accessory_process)
getbaseclasses(application)
getbaseclasses(icon_view_options) getbaseclasses(icon_view_options)
getbaseclasses(label) getbaseclasses(label)
getbaseclasses(column) getbaseclasses(column)
@ -93,10 +97,6 @@ getbaseclasses(preferences)
getbaseclasses(alias_list) getbaseclasses(alias_list)
getbaseclasses(icon_family) getbaseclasses(icon_family)
getbaseclasses(list_view_options) getbaseclasses(list_view_options)
getbaseclasses(process)
getbaseclasses(application_process)
getbaseclasses(desk_accessory_process)
getbaseclasses(application)
getbaseclasses(StdSuites.Type_Names_Suite.double_integer) getbaseclasses(StdSuites.Type_Names_Suite.double_integer)
getbaseclasses(StdSuites.Type_Names_Suite.version) getbaseclasses(StdSuites.Type_Names_Suite.version)
getbaseclasses(StdSuites.Type_Names_Suite.RGB16_color) getbaseclasses(StdSuites.Type_Names_Suite.RGB16_color)
@ -132,7 +132,7 @@ getbaseclasses(StdSuites.Type_Names_Suite.type_parameter_info)
getbaseclasses(StdSuites.Type_Names_Suite.extended_real) getbaseclasses(StdSuites.Type_Names_Suite.extended_real)
getbaseclasses(StdSuites.Type_Names_Suite.long_rectangle) getbaseclasses(StdSuites.Type_Names_Suite.long_rectangle)
getbaseclasses(StdSuites.Type_Names_Suite.dash_style) getbaseclasses(StdSuites.Type_Names_Suite.dash_style)
getbaseclasses(StdSuites.Type_Names_Suite.plain_text) getbaseclasses(StdSuites.Type_Names_Suite.string)
getbaseclasses(StdSuites.Type_Names_Suite.small_real) getbaseclasses(StdSuites.Type_Names_Suite.small_real)
getbaseclasses(StdSuites.Type_Names_Suite.null) getbaseclasses(StdSuites.Type_Names_Suite.null)
getbaseclasses(StdSuites.Type_Names_Suite.location_reference) getbaseclasses(StdSuites.Type_Names_Suite.location_reference)
@ -142,13 +142,13 @@ getbaseclasses(StdSuites.Type_Names_Suite.bounding_rectangle)
# Indices of types declared in this module # Indices of types declared in this module
# #
_classdeclarations = { _classdeclarations = {
'cobj' : item,
'capp' : application, 'capp' : application,
'ctrs' : trash_2d_object, 'ctrs' : trash_2d_object,
'cdsk' : desktop_2d_object, 'cdsk' : desktop_2d_object,
'ctnr' : container, 'ctnr' : container,
'cfol' : folder, 'cfol' : folder,
'cdis' : disk, 'cdis' : disk,
'cobj' : item,
'pack' : package, 'pack' : package,
'file' : file, 'file' : file,
'appf' : application_file, 'appf' : application_file,
@ -161,6 +161,10 @@ _classdeclarations = {
'cwin' : window, 'cwin' : window,
'lwnd' : clipping_window, 'lwnd' : clipping_window,
'iwnd' : information_window, 'iwnd' : information_window,
'prcs' : process,
'pcap' : application_process,
'pcda' : desk_accessory_process,
'capp' : application,
'icop' : icon_view_options, 'icop' : icon_view_options,
'clbl' : label, 'clbl' : label,
'lvcl' : column, 'lvcl' : column,
@ -168,10 +172,6 @@ _classdeclarations = {
'alst' : alias_list, 'alst' : alias_list,
'ifam' : icon_family, 'ifam' : icon_family,
'lvop' : list_view_options, 'lvop' : list_view_options,
'prcs' : process,
'pcap' : application_process,
'pcda' : desk_accessory_process,
'capp' : application,
'comp' : StdSuites.Type_Names_Suite.double_integer, 'comp' : StdSuites.Type_Names_Suite.double_integer,
'vers' : StdSuites.Type_Names_Suite.version, 'vers' : StdSuites.Type_Names_Suite.version,
'tr16' : StdSuites.Type_Names_Suite.RGB16_color, 'tr16' : StdSuites.Type_Names_Suite.RGB16_color,
@ -207,7 +207,7 @@ _classdeclarations = {
'exte' : StdSuites.Type_Names_Suite.extended_real, 'exte' : StdSuites.Type_Names_Suite.extended_real,
'lrct' : StdSuites.Type_Names_Suite.long_rectangle, 'lrct' : StdSuites.Type_Names_Suite.long_rectangle,
'tdas' : StdSuites.Type_Names_Suite.dash_style, 'tdas' : StdSuites.Type_Names_Suite.dash_style,
'TEXT' : StdSuites.Type_Names_Suite.plain_text, 'TEXT' : StdSuites.Type_Names_Suite.string,
'sing' : StdSuites.Type_Names_Suite.small_real, 'sing' : StdSuites.Type_Names_Suite.small_real,
'null' : StdSuites.Type_Names_Suite.null, 'null' : StdSuites.Type_Names_Suite.null,
'insl' : StdSuites.Type_Names_Suite.location_reference, 'insl' : StdSuites.Type_Names_Suite.location_reference,

View file

@ -255,15 +255,3 @@ _Enum_ncmd = {
# #
_classdeclarations = { _classdeclarations = {
} }
_propdeclarations = {
}
_compdeclarations = {
}
_enumdeclarations = {
'comp' : _Enum_comp,
'dire' : _Enum_dire,
'ncmd' : _Enum_ncmd,
}

View file

@ -74,13 +74,3 @@ _Enum_dbac = {
# #
_classdeclarations = { _classdeclarations = {
} }
_propdeclarations = {
}
_compdeclarations = {
}
_enumdeclarations = {
'dbac' : _Enum_dbac,
}

View file

@ -97,12 +97,3 @@ class Required_suite_Events(Required_Suite_Events):
# #
_classdeclarations = { _classdeclarations = {
} }
_propdeclarations = {
}
_compdeclarations = {
}
_enumdeclarations = {
}

View file

@ -104,11 +104,11 @@ class Standard_Suite_Events(Standard_Suite_Events):
class application(aetools.ComponentItem): class application(aetools.ComponentItem):
"""application - An application program """ """application - An application program """
want = 'capp' want = 'capp'
class alert_application(aetools.NProperty): class _Prop_alert_application(aetools.NProperty):
"""alert application - Most of the alerts will be sent to this application using yet unspecified AE interface. We need a few alert boxes: alert, confirm and notify. Any ideas on how to design this event? mailto:atotic@netscape.com. I\xd5d like to conform to the standard. """ """alert application - Most of the alerts will be sent to this application using yet unspecified AE interface. We need a few alert boxes: alert, confirm and notify. Any ideas on how to design this event? mailto:atotic@netscape.com. I\xd5d like to conform to the standard. """
which = 'ALAP' which = 'ALAP'
want = 'type' want = 'type'
class kiosk_mode(aetools.NProperty): class _Prop_kiosk_mode(aetools.NProperty):
"""kiosk mode - Kiosk mode leaves very few menus enabled """ """kiosk mode - Kiosk mode leaves very few menus enabled """
which = 'KOSK' which = 'KOSK'
want = 'long' want = 'long'
@ -117,91 +117,91 @@ 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): class _Prop_URL(aetools.NProperty):
"""URL - Current URL """ """URL - Current URL """
which = 'curl' which = 'curl'
want = 'TEXT' want = 'TEXT'
class bounds(aetools.NProperty): class _Prop_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): class _Prop_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 """ """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' which = 'busy'
want = 'long' want = 'long'
class closeable(aetools.NProperty): class _Prop_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 floating(aetools.NProperty): class _Prop_floating(aetools.NProperty):
"""floating - Does the window float? """ """floating - Does the window float? """
which = 'isfl' which = 'isfl'
want = 'bool' want = 'bool'
class index(aetools.NProperty): class _Prop_index(aetools.NProperty):
"""index - the number of the window """ """index - the number of the window """
which = 'pidx' which = 'pidx'
want = 'long' want = 'long'
class modal(aetools.NProperty): class _Prop_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): class _Prop_name(aetools.NProperty):
"""name - the title of the window """ """name - the title of the window """
which = 'pnam' which = 'pnam'
want = 'itxt' want = 'itxt'
class position(aetools.NProperty): class _Prop_position(aetools.NProperty):
"""position - upper left coordinates of window """ """position - upper left coordinates of window """
which = 'ppos' which = 'ppos'
want = 'QDpt' want = 'QDpt'
class resizable(aetools.NProperty): class _Prop_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): class _Prop_titled(aetools.NProperty):
"""titled - Does the window have a title bar? """ """titled - Does the window have a title bar? """
which = 'ptit' which = 'ptit'
want = 'bool' want = 'bool'
class unique_ID(aetools.NProperty): class _Prop_unique_ID(aetools.NProperty):
"""unique ID - Window\xd5s unique ID (a bridge between WWW! suite window id\xd5s and standard AE windows) """ """unique ID - Window\xd5s unique ID (a bridge between WWW! suite window id\xd5s and standard AE windows) """
which = 'wiid' which = 'wiid'
want = 'long' want = 'long'
class visible(aetools.NProperty): class _Prop_visible(aetools.NProperty):
"""visible - is the window visible? """ """visible - is the window visible? """
which = 'pvis' which = 'pvis'
want = 'bool' want = 'bool'
class zoomable(aetools.NProperty): class _Prop_zoomable(aetools.NProperty):
"""zoomable - Is the window zoomable? """ """zoomable - Is the window zoomable? """
which = 'iszm' which = 'iszm'
want = 'bool' want = 'bool'
class zoomed(aetools.NProperty): class _Prop_zoomed(aetools.NProperty):
"""zoomed - Is the window zoomed? """ """zoomed - Is the window zoomed? """
which = 'pzum' which = 'pzum'
want = 'bool' want = 'bool'
application._superclassnames = [] application._superclassnames = []
application._privpropdict = { application._privpropdict = {
'alert_application' : alert_application, 'alert_application' : _Prop_alert_application,
'kiosk_mode' : kiosk_mode, 'kiosk_mode' : _Prop_kiosk_mode,
} }
application._privelemdict = { application._privelemdict = {
'window' : window, 'window' : window,
} }
window._superclassnames = [] window._superclassnames = []
window._privpropdict = { window._privpropdict = {
'URL' : URL, 'URL' : _Prop_URL,
'bounds' : bounds, 'bounds' : _Prop_bounds,
'busy' : busy, 'busy' : _Prop_busy,
'closeable' : closeable, 'closeable' : _Prop_closeable,
'floating' : floating, 'floating' : _Prop_floating,
'index' : index, 'index' : _Prop_index,
'modal' : modal, 'modal' : _Prop_modal,
'name' : name, 'name' : _Prop_name,
'position' : position, 'position' : _Prop_position,
'resizable' : resizable, 'resizable' : _Prop_resizable,
'titled' : titled, 'titled' : _Prop_titled,
'unique_ID' : unique_ID, 'unique_ID' : _Prop_unique_ID,
'visible' : visible, 'visible' : _Prop_visible,
'zoomable' : zoomable, 'zoomable' : _Prop_zoomable,
'zoomed' : zoomed, 'zoomed' : _Prop_zoomed,
} }
window._privelemdict = { window._privelemdict = {
} }
@ -213,29 +213,3 @@ _classdeclarations = {
'capp' : application, 'capp' : application,
'cwin' : window, 'cwin' : window,
} }
_propdeclarations = {
'ALAP' : alert_application,
'KOSK' : kiosk_mode,
'busy' : busy,
'curl' : URL,
'hclb' : closeable,
'isfl' : floating,
'iszm' : zoomable,
'pbnd' : bounds,
'pidx' : index,
'pmod' : modal,
'pnam' : name,
'ppos' : position,
'prsz' : resizable,
'ptit' : titled,
'pvis' : visible,
'pzum' : zoomed,
'wiid' : unique_ID,
}
_compdeclarations = {
}
_enumdeclarations = {
}

View file

@ -49,12 +49,3 @@ class Standard_URL_suite_Events:
# #
_classdeclarations = { _classdeclarations = {
} }
_propdeclarations = {
}
_compdeclarations = {
}
_enumdeclarations = {
}

View file

@ -19,23 +19,23 @@ class Text_Events(Text_Suite_Events):
class text(aetools.ComponentItem): class text(aetools.ComponentItem):
"""text - independent text view objects """ """text - independent text view objects """
want = 'ctxt' want = 'ctxt'
class beginning(aetools.NProperty): class _Prop_beginning(aetools.NProperty):
"""beginning - Beginning of element """ """beginning - Beginning of element """
which = 'bgng' which = 'bgng'
want = 'obj ' want = 'obj '
class end(aetools.NProperty): class _Prop_end(aetools.NProperty):
"""end - Ending of element """ """end - Ending of element """
which = 'end ' which = 'end '
want = 'obj ' want = 'obj '
class infront(aetools.NProperty): class _Prop_infront(aetools.NProperty):
"""infront - Immediately before element """ """infront - Immediately before element """
which = 'pBef' which = 'pBef'
want = 'obj ' want = 'obj '
class justbehind(aetools.NProperty): class _Prop_justbehind(aetools.NProperty):
"""justbehind - Immediately after element """ """justbehind - Immediately after element """
which = 'pAft' which = 'pAft'
want = 'obj ' want = 'obj '
class updateLevel(aetools.NProperty): class _Prop_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. """ """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' which = 'pUpL'
want = 'long' want = 'long'
@ -44,27 +44,27 @@ class updateLevel(aetools.NProperty):
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 color(aetools.NProperty): class _Prop_color(aetools.NProperty):
"""color - the color """ """color - the color """
which = 'colr' which = 'colr'
want = 'RGB ' want = 'RGB '
class font(aetools.NProperty): class _Prop_font(aetools.NProperty):
"""font - font name """ """font - font name """
which = 'font' which = 'font'
want = 'TEXT' want = 'TEXT'
class name(aetools.NProperty): class _Prop_name(aetools.NProperty):
"""name - style name """ """name - style name """
which = 'pnam' which = 'pnam'
want = 'TEXT' want = 'TEXT'
class size(aetools.NProperty): class _Prop_size(aetools.NProperty):
"""size - the size in points """ """size - the size in points """
which = 'ptsz' which = 'ptsz'
want = 'long' want = 'long'
class style(aetools.NProperty): class _Prop_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): class _Prop_writing_code(aetools.NProperty):
"""writing code - the script system and language """ """writing code - the script system and language """
which = 'psct' which = 'psct'
want = 'tsty' want = 'tsty'
@ -72,23 +72,23 @@ class writing_code(aetools.NProperty):
stylesets = styleset stylesets = styleset
text._superclassnames = [] text._superclassnames = []
text._privpropdict = { text._privpropdict = {
'beginning' : beginning, 'beginning' : _Prop_beginning,
'end' : end, 'end' : _Prop_end,
'infront' : infront, 'infront' : _Prop_infront,
'justbehind' : justbehind, 'justbehind' : _Prop_justbehind,
'updateLevel' : updateLevel, 'updateLevel' : _Prop_updateLevel,
} }
text._privelemdict = { text._privelemdict = {
'styleset' : styleset, 'styleset' : styleset,
} }
styleset._superclassnames = [] styleset._superclassnames = []
styleset._privpropdict = { styleset._privpropdict = {
'color' : color, 'color' : _Prop_color,
'font' : font, 'font' : _Prop_font,
'name' : name, 'name' : _Prop_name,
'size' : size, 'size' : _Prop_size,
'style' : style, 'style' : _Prop_style,
'writing_code' : writing_code, 'writing_code' : _Prop_writing_code,
} }
styleset._privelemdict = { styleset._privelemdict = {
} }
@ -100,23 +100,3 @@ _classdeclarations = {
'ctxt' : text, 'ctxt' : text,
'stys' : styleset, 'stys' : styleset,
} }
_propdeclarations = {
'bgng' : beginning,
'colr' : color,
'end ' : end,
'font' : font,
'pAft' : justbehind,
'pBef' : infront,
'pUpL' : updateLevel,
'pnam' : name,
'psct' : writing_code,
'ptsz' : size,
'txst' : style,
}
_compdeclarations = {
}
_enumdeclarations = {
}

View file

@ -415,12 +415,3 @@ class WorldWideWeb_suite_Events:
# #
_classdeclarations = { _classdeclarations = {
} }
_propdeclarations = {
}
_compdeclarations = {
}
_enumdeclarations = {
}

View file

@ -61,8 +61,6 @@ import StdSuites
# #
getbaseclasses(window) getbaseclasses(window)
getbaseclasses(application) getbaseclasses(application)
getbaseclasses(text)
getbaseclasses(styleset)
getbaseclasses(StdSuites.Text_Suite.text_flow) getbaseclasses(StdSuites.Text_Suite.text_flow)
getbaseclasses(StdSuites.Text_Suite.character) getbaseclasses(StdSuites.Text_Suite.character)
getbaseclasses(StdSuites.Text_Suite.text_style_info) getbaseclasses(StdSuites.Text_Suite.text_style_info)
@ -70,6 +68,8 @@ getbaseclasses(StdSuites.Text_Suite.line)
getbaseclasses(StdSuites.Text_Suite.word) getbaseclasses(StdSuites.Text_Suite.word)
getbaseclasses(StdSuites.Text_Suite.paragraph) getbaseclasses(StdSuites.Text_Suite.paragraph)
getbaseclasses(StdSuites.Text_Suite.text) getbaseclasses(StdSuites.Text_Suite.text)
getbaseclasses(text)
getbaseclasses(styleset)
# #
# Indices of types declared in this module # Indices of types declared in this module
@ -77,8 +77,6 @@ getbaseclasses(StdSuites.Text_Suite.text)
_classdeclarations = { _classdeclarations = {
'cwin' : window, 'cwin' : window,
'capp' : application, 'capp' : application,
'ctxt' : text,
'stys' : styleset,
'cflo' : StdSuites.Text_Suite.text_flow, 'cflo' : StdSuites.Text_Suite.text_flow,
'cha ' : StdSuites.Text_Suite.character, 'cha ' : StdSuites.Text_Suite.character,
'tsty' : StdSuites.Text_Suite.text_style_info, 'tsty' : StdSuites.Text_Suite.text_style_info,
@ -86,6 +84,8 @@ _classdeclarations = {
'cwor' : StdSuites.Text_Suite.word, 'cwor' : StdSuites.Text_Suite.word,
'cpar' : StdSuites.Text_Suite.paragraph, 'cpar' : StdSuites.Text_Suite.paragraph,
'ctxt' : StdSuites.Text_Suite.text, 'ctxt' : StdSuites.Text_Suite.text,
'ctxt' : text,
'stys' : styleset,
} }

View file

@ -791,55 +791,55 @@ RGB_color = RGB_colors
class application(aetools.ComponentItem): class application(aetools.ComponentItem):
"""application - specifies global properties of AppleScript """ """application - specifies global properties of AppleScript """
want = 'capp' want = 'capp'
class AppleScript(aetools.NProperty): class _Prop_AppleScript(aetools.NProperty):
"""AppleScript - the top-level script object """ """AppleScript - the top-level script object """
which = 'ascr' which = 'ascr'
want = 'scpt' want = 'scpt'
class days(aetools.NProperty): class _Prop_days(aetools.NProperty):
"""days - the number of seconds in a day """ """days - the number of seconds in a day """
which = 'days' which = 'days'
want = 'long' want = 'long'
class hours(aetools.NProperty): class _Prop_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 minutes(aetools.NProperty): class _Prop_minutes(aetools.NProperty):
"""minutes - the number of seconds in a minute """ """minutes - the number of seconds in a minute """
which = 'min ' which = 'min '
want = 'long' want = 'long'
class pi(aetools.NProperty): class _Prop_pi(aetools.NProperty):
"""pi - the constant pi """ """pi - the constant pi """
which = 'pi ' which = 'pi '
want = 'doub' want = 'doub'
class print_depth(aetools.NProperty): class _Prop_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): class _Prop_print_length(aetools.NProperty):
"""print length - the maximum length to print """ """print length - the maximum length to print """
which = 'prln' which = 'prln'
want = 'long' want = 'long'
class result(aetools.NProperty): class _Prop_result(aetools.NProperty):
"""result - the last result of evaluation """ """result - the last result of evaluation """
which = 'rslt' which = 'rslt'
want = '****' want = '****'
class return_(aetools.NProperty): class _Prop_return_(aetools.NProperty):
"""return - a return character """ """return - a return character """
which = 'ret ' which = 'ret '
want = 'cha ' want = 'cha '
class space(aetools.NProperty): class _Prop_space(aetools.NProperty):
"""space - a space character """ """space - a space character """
which = 'spac' which = 'spac'
want = 'cha ' want = 'cha '
class tab(aetools.NProperty): class _Prop_tab(aetools.NProperty):
"""tab - a tab character """ """tab - a tab character """
which = 'tab ' which = 'tab '
want = 'cha ' want = 'cha '
class text_item_delimiters(aetools.NProperty): class _Prop_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 weeks(aetools.NProperty): class _Prop_weeks(aetools.NProperty):
"""weeks - the number of seconds in a week """ """weeks - the number of seconds in a week """
which = 'week' which = 'week'
want = 'long' want = 'long'
@ -871,11 +871,11 @@ character = characters
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 language_code(aetools.NProperty): class _Prop_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): class _Prop_script_code(aetools.NProperty):
"""script code - the script code for the text """ """script code - the script code for the text """
which = 'pscd' which = 'pscd'
want = 'shor' want = 'shor'
@ -903,7 +903,7 @@ centimetres = centimeters
class item(aetools.ComponentItem): class item(aetools.ComponentItem):
"""item - An item of any type """ """item - An item of any type """
want = 'cobj' want = 'cobj'
class id(aetools.NProperty): class _Prop_id(aetools.NProperty):
"""id - the unique ID number of this object """ """id - the unique ID number of this object """
which = 'ID ' which = 'ID '
want = 'long' want = 'long'
@ -1041,15 +1041,15 @@ kilometres = kilometers
class keystroke(aetools.ComponentItem): class keystroke(aetools.ComponentItem):
"""keystroke - a press of a key combination on a Macintosh keyboard """ """keystroke - a press of a key combination on a Macintosh keyboard """
want = 'kprs' want = 'kprs'
class key(aetools.NProperty): class _Prop_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 key_kind(aetools.NProperty): class _Prop_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): class _Prop_modifiers(aetools.NProperty):
"""modifiers - the modifier keys pressed in combination """ """modifiers - the modifier keys pressed in combination """
which = 'kMod' which = 'kMod'
want = 'eMds' want = 'eMds'
@ -1063,31 +1063,31 @@ class pounds(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 date_string(aetools.NProperty): class _Prop_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): class _Prop_day(aetools.NProperty):
"""day - the day of the month of a date """ """day - the day of the month of a date """
which = 'day ' which = 'day '
want = 'long' want = 'long'
class month(aetools.NProperty): class _Prop_month(aetools.NProperty):
"""month - the month of a date """ """month - the month of a date """
which = 'mnth' which = 'mnth'
want = 'mnth' want = 'mnth'
class time(aetools.NProperty): class _Prop_time(aetools.NProperty):
"""time - the time since midnight of a date """ """time - the time since midnight of a date """
which = 'time' which = 'time'
want = 'long' want = 'long'
class time_string(aetools.NProperty): class _Prop_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): class _Prop_weekday(aetools.NProperty):
"""weekday - the day of a week of a date """ """weekday - the day of a week of a date """
which = 'wkdy' which = 'wkdy'
want = 'wkdy' want = 'wkdy'
class year(aetools.NProperty): class _Prop_year(aetools.NProperty):
"""year - the year of a date """ """year - the year of a date """
which = 'year' which = 'year'
want = 'long' want = 'long'
@ -1097,15 +1097,15 @@ dates = date
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 length(aetools.NProperty): class _Prop_length(aetools.NProperty):
"""length - the length of a list """ """length - the length of a list """
which = 'leng' which = 'leng'
want = 'long' want = 'long'
class rest(aetools.NProperty): class _Prop_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): class _Prop_reverse(aetools.NProperty):
"""reverse - the items of the list in reverse order """ """reverse - the items of the list in reverse order """
which = 'rvse' which = 'rvse'
want = 'list' want = 'list'
@ -1221,7 +1221,7 @@ class ounces(aetools.ComponentItem):
class class_(aetools.ComponentItem): class class_(aetools.ComponentItem):
"""class - the type of a value """ """class - the type of a value """
want = 'pcls' want = 'pcls'
class _3c_Inheritance_3e_(aetools.NProperty): class _Prop__3c_Inheritance_3e_(aetools.NProperty):
"""<Inheritance> - inherits some of its properties from this class """ """<Inheritance> - inherits some of its properties from this class """
which = 'c@#^' which = 'c@#^'
want = 'type' want = 'type'
@ -1275,11 +1275,11 @@ class seconds(aetools.ComponentItem):
class script(aetools.ComponentItem): class script(aetools.ComponentItem):
"""script - An AppleScript script """ """script - An AppleScript script """
want = 'scpt' want = 'scpt'
class name(aetools.NProperty): class _Prop_name(aetools.NProperty):
"""name - the name of the script """ """name - the name of the script """
which = 'pnam' which = 'pnam'
want = 'TEXT' want = 'TEXT'
class parent(aetools.NProperty): class _Prop_parent(aetools.NProperty):
"""parent - its parent, i.e. the script that will handle events that this script doesn\xd5t """ """parent - its parent, i.e. the script that will handle events that this script doesn\xd5t """
which = 'pare' which = 'pare'
want = 'scpt' want = 'scpt'
@ -1443,19 +1443,19 @@ RGB_colors._privelemdict = {
} }
application._superclassnames = [] application._superclassnames = []
application._privpropdict = { application._privpropdict = {
'AppleScript' : AppleScript, 'AppleScript' : _Prop_AppleScript,
'days' : days, 'days' : _Prop_days,
'hours' : hours, 'hours' : _Prop_hours,
'minutes' : minutes, 'minutes' : _Prop_minutes,
'pi' : pi, 'pi' : _Prop_pi,
'print_depth' : print_depth, 'print_depth' : _Prop_print_depth,
'print_length' : print_length, 'print_length' : _Prop_print_length,
'result' : result, 'result' : _Prop_result,
'return_' : return_, 'return_' : _Prop_return_,
'space' : space, 'space' : _Prop_space,
'tab' : tab, 'tab' : _Prop_tab,
'text_item_delimiters' : text_item_delimiters, 'text_item_delimiters' : _Prop_text_item_delimiters,
'weeks' : weeks, 'weeks' : _Prop_weeks,
} }
application._privelemdict = { application._privelemdict = {
} }
@ -1481,8 +1481,8 @@ characters._privelemdict = {
} }
writing_code_info._superclassnames = [] writing_code_info._superclassnames = []
writing_code_info._privpropdict = { writing_code_info._privpropdict = {
'language_code' : language_code, 'language_code' : _Prop_language_code,
'script_code' : script_code, 'script_code' : _Prop_script_code,
} }
writing_code_info._privelemdict = { writing_code_info._privelemdict = {
} }
@ -1503,7 +1503,7 @@ centimeters._privelemdict = {
} }
item._superclassnames = [] item._superclassnames = []
item._privpropdict = { item._privpropdict = {
'id' : id, 'id' : _Prop_id,
} }
item._privelemdict = { item._privelemdict = {
} }
@ -1649,9 +1649,9 @@ kilometers._privelemdict = {
} }
keystroke._superclassnames = [] keystroke._superclassnames = []
keystroke._privpropdict = { keystroke._privpropdict = {
'key' : key, 'key' : _Prop_key,
'key_kind' : key_kind, 'key_kind' : _Prop_key_kind,
'modifiers' : modifiers, 'modifiers' : _Prop_modifiers,
} }
keystroke._privelemdict = { keystroke._privelemdict = {
} }
@ -1662,21 +1662,21 @@ pounds._privelemdict = {
} }
date._superclassnames = [] date._superclassnames = []
date._privpropdict = { date._privpropdict = {
'date_string' : date_string, 'date_string' : _Prop_date_string,
'day' : day, 'day' : _Prop_day,
'month' : month, 'month' : _Prop_month,
'time' : time, 'time' : _Prop_time,
'time_string' : time_string, 'time_string' : _Prop_time_string,
'weekday' : weekday, 'weekday' : _Prop_weekday,
'year' : year, 'year' : _Prop_year,
} }
date._privelemdict = { date._privelemdict = {
} }
list._superclassnames = [] list._superclassnames = []
list._privpropdict = { list._privpropdict = {
'length' : length, 'length' : _Prop_length,
'rest' : rest, 'rest' : _Prop_rest,
'reverse' : reverse, 'reverse' : _Prop_reverse,
} }
list._privelemdict = { list._privelemdict = {
} }
@ -1687,7 +1687,7 @@ liters._privelemdict = {
} }
linked_list._superclassnames = [] linked_list._superclassnames = []
linked_list._privpropdict = { linked_list._privpropdict = {
'length' : length, 'length' : _Prop_length,
} }
linked_list._privelemdict = { linked_list._privelemdict = {
} }
@ -1793,7 +1793,7 @@ ounces._privelemdict = {
} }
class_._superclassnames = ['type_class'] class_._superclassnames = ['type_class']
class_._privpropdict = { class_._privpropdict = {
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_, '_3c_Inheritance_3e_' : _Prop__3c_Inheritance_3e_,
} }
class_._privelemdict = { class_._privelemdict = {
} }
@ -1844,8 +1844,8 @@ seconds._privelemdict = {
} }
script._superclassnames = [] script._superclassnames = []
script._privpropdict = { script._privpropdict = {
'name' : name, 'name' : _Prop_name,
'parent' : parent, 'parent' : _Prop_parent,
} }
script._privelemdict = { script._privelemdict = {
} }
@ -1946,7 +1946,7 @@ Unicode_text._privelemdict = {
} }
vector._superclassnames = [] vector._superclassnames = []
vector._privpropdict = { vector._privpropdict = {
'length' : length, 'length' : _Prop_length,
} }
vector._privelemdict = { vector._privelemdict = {
} }
@ -2147,49 +2147,3 @@ _classdeclarations = {
'yard' : yards, 'yard' : yards,
'zone' : zones, 'zone' : zones,
} }
_propdeclarations = {
'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,
'pare' : parent,
'pi ' : pi,
'plcd' : language_code,
'pnam' : name,
'prdp' : print_depth,
'prln' : print_length,
'pscd' : script_code,
'rest' : rest,
'ret ' : return_,
'rslt' : result,
'rvse' : reverse,
'spac' : space,
'tab ' : tab,
'time' : time,
'tstr' : time_string,
'txdl' : text_item_delimiters,
'week' : weeks,
'wkdy' : weekday,
'year' : year,
}
_compdeclarations = {
}
_enumdeclarations = {
'boov' : _Enum_boov,
'cons' : _Enum_cons,
'eMds' : _Enum_eMds,
'ekst' : _Enum_ekst,
'misc' : _Enum_misc,
}

View file

@ -18,11 +18,11 @@ class Macintosh_Connectivity_Clas_Events:
class ADB_address(aetools.ComponentItem): class ADB_address(aetools.ComponentItem):
"""ADB address - Addresses a device connected via Apple Desktop Bus """ """ADB address - Addresses a device connected via Apple Desktop Bus """
want = 'cadb' want = 'cadb'
class _3c_inheritance_3e_(aetools.NProperty): class _Prop__3c_inheritance_3e_(aetools.NProperty):
"""<inheritance> - inherits some of its properties from this class """ """<inheritance> - inherits some of its properties from this class """
which = 'c@#^' which = 'c@#^'
want = 'cadr' want = 'cadr'
class ID(aetools.NProperty): class _Prop_ID(aetools.NProperty):
"""ID - the Apple Desktop Bus device ID """ """ID - the Apple Desktop Bus device ID """
which = 'ID ' which = 'ID '
want = 'shor' want = 'shor'
@ -32,15 +32,15 @@ ADB_addresses = ADB_address
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 conduit(aetools.NProperty): class _Prop_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): class _Prop_properties(aetools.NProperty):
"""properties - property that allows getting and setting of multiple properties """ """properties - property that allows getting and setting of multiple properties """
which = 'pALL' which = 'pALL'
want = 'reco' want = 'reco'
class protocol(aetools.NProperty): class _Prop_protocol(aetools.NProperty):
"""protocol - How to talk to this addressee """ """protocol - How to talk to this addressee """
which = 'pprt' which = 'pprt'
want = 'epro' want = 'epro'
@ -50,15 +50,15 @@ address_specifications = address_specification
class AppleTalk_address(aetools.ComponentItem): class AppleTalk_address(aetools.ComponentItem):
"""AppleTalk address - Addresses a device or service connected via the AppleTalk protocol """ """AppleTalk address - Addresses a device or service connected via the AppleTalk protocol """
want = 'cat ' want = 'cat '
class AppleTalk_machine(aetools.NProperty): class _Prop_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_type(aetools.NProperty): class _Prop_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): class _Prop_AppleTalk_zone(aetools.NProperty):
"""AppleTalk zone - the zone part of the address """ """AppleTalk zone - the zone part of the address """
which = 'patz' which = 'patz'
want = 'TEXT' want = 'TEXT'
@ -74,11 +74,11 @@ 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_address(aetools.NProperty): class _Prop_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): class _Prop_device_type(aetools.NProperty):
"""device type - the kind of device """ """device type - the kind of device """
which = 'pdvt' which = 'pdvt'
want = 'edvt' want = 'edvt'
@ -100,11 +100,11 @@ FireWire_addresses = FireWire_address
class IP_address(aetools.ComponentItem): class IP_address(aetools.ComponentItem):
"""IP address - Addresses a device or service via the Internet Protocol (IP) """ """IP address - Addresses a device or service via the Internet Protocol (IP) """
want = 'cip ' want = 'cip '
class DNS_form(aetools.NProperty): class _Prop_DNS_form(aetools.NProperty):
"""DNS form - the address in the form "apple.com" """ """DNS form - the address in the form "apple.com" """
which = 'pdns' which = 'pdns'
want = 'TEXT' want = 'TEXT'
class port(aetools.NProperty): class _Prop_port(aetools.NProperty):
"""port - the port number of the service or client being addressed """ """port - the port number of the service or client being addressed """
which = 'ppor' which = 'ppor'
want = 'TEXT' want = 'TEXT'
@ -114,15 +114,15 @@ IP_addresses = IP_address
class LocalTalk_address(aetools.ComponentItem): class LocalTalk_address(aetools.ComponentItem):
"""LocalTalk address - Addresses a device by its LocalTalk address """ """LocalTalk address - Addresses a device by its LocalTalk address """
want = 'clt ' want = 'clt '
class network(aetools.NProperty): class _Prop_network(aetools.NProperty):
"""network - the LocalTalk network number """ """network - the LocalTalk network number """
which = 'pnet' which = 'pnet'
want = 'shor' want = 'shor'
class node(aetools.NProperty): class _Prop_node(aetools.NProperty):
"""node - the LocalTalk node number """ """node - the LocalTalk node number """
which = 'pnod' which = 'pnod'
want = 'shor' want = 'shor'
class socket(aetools.NProperty): class _Prop_socket(aetools.NProperty):
"""socket - the LocalTalk socket number """ """socket - the LocalTalk socket number """
which = 'psoc' which = 'psoc'
want = 'shor' want = 'shor'
@ -132,11 +132,11 @@ 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 LUN(aetools.NProperty): class _Prop_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): class _Prop_SCSI_bus(aetools.NProperty):
"""SCSI bus - the SCSI bus number """ """SCSI bus - the SCSI bus number """
which = 'pscb' which = 'pscb'
want = 'shor' want = 'shor'
@ -152,7 +152,7 @@ Token_Ring_addresses = Token_Ring_address
class USB_address(aetools.ComponentItem): class USB_address(aetools.ComponentItem):
"""USB address - Addresses a device on the Universal Serial Bus """ """USB address - Addresses a device on the Universal Serial Bus """
want = 'cusb' want = 'cusb'
class name(aetools.NProperty): class _Prop_name(aetools.NProperty):
"""name - the USB device name """ """name - the USB device name """
which = 'pnam' which = 'pnam'
want = 'TEXT' want = 'TEXT'
@ -160,95 +160,95 @@ class name(aetools.NProperty):
USB_Addresses = USB_address USB_Addresses = USB_address
ADB_address._superclassnames = ['address_specification'] ADB_address._superclassnames = ['address_specification']
ADB_address._privpropdict = { ADB_address._privpropdict = {
'ID' : ID, 'ID' : _Prop_ID,
'_3c_inheritance_3e_' : _3c_inheritance_3e_, '_3c_inheritance_3e_' : _Prop__3c_inheritance_3e_,
} }
ADB_address._privelemdict = { ADB_address._privelemdict = {
} }
address_specification._superclassnames = [] address_specification._superclassnames = []
address_specification._privpropdict = { address_specification._privpropdict = {
'conduit' : conduit, 'conduit' : _Prop_conduit,
'properties' : properties, 'properties' : _Prop_properties,
'protocol' : protocol, 'protocol' : _Prop_protocol,
} }
address_specification._privelemdict = { address_specification._privelemdict = {
} }
AppleTalk_address._superclassnames = ['address_specification'] AppleTalk_address._superclassnames = ['address_specification']
AppleTalk_address._privpropdict = { AppleTalk_address._privpropdict = {
'AppleTalk_machine' : AppleTalk_machine, 'AppleTalk_machine' : _Prop_AppleTalk_machine,
'AppleTalk_type' : AppleTalk_type, 'AppleTalk_type' : _Prop_AppleTalk_type,
'AppleTalk_zone' : AppleTalk_zone, 'AppleTalk_zone' : _Prop_AppleTalk_zone,
'_3c_inheritance_3e_' : _3c_inheritance_3e_, '_3c_inheritance_3e_' : _Prop__3c_inheritance_3e_,
} }
AppleTalk_address._privelemdict = { AppleTalk_address._privelemdict = {
} }
bus_slot._superclassnames = ['address_specification'] bus_slot._superclassnames = ['address_specification']
bus_slot._privpropdict = { bus_slot._privpropdict = {
'ID' : ID, 'ID' : _Prop_ID,
'_3c_inheritance_3e_' : _3c_inheritance_3e_, '_3c_inheritance_3e_' : _Prop__3c_inheritance_3e_,
} }
bus_slot._privelemdict = { bus_slot._privelemdict = {
} }
device_specification._superclassnames = [] device_specification._superclassnames = []
device_specification._privpropdict = { device_specification._privpropdict = {
'device_address' : device_address, 'device_address' : _Prop_device_address,
'device_type' : device_type, 'device_type' : _Prop_device_type,
'properties' : properties, 'properties' : _Prop_properties,
} }
device_specification._privelemdict = { device_specification._privelemdict = {
} }
Ethernet_address._superclassnames = ['address_specification'] Ethernet_address._superclassnames = ['address_specification']
Ethernet_address._privpropdict = { Ethernet_address._privpropdict = {
'ID' : ID, 'ID' : _Prop_ID,
'_3c_inheritance_3e_' : _3c_inheritance_3e_, '_3c_inheritance_3e_' : _Prop__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 = {
'ID' : ID, 'ID' : _Prop_ID,
'_3c_inheritance_3e_' : _3c_inheritance_3e_, '_3c_inheritance_3e_' : _Prop__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 = {
'DNS_form' : DNS_form, 'DNS_form' : _Prop_DNS_form,
'ID' : ID, 'ID' : _Prop_ID,
'_3c_inheritance_3e_' : _3c_inheritance_3e_, '_3c_inheritance_3e_' : _Prop__3c_inheritance_3e_,
'port' : port, 'port' : _Prop_port,
} }
IP_address._privelemdict = { IP_address._privelemdict = {
} }
LocalTalk_address._superclassnames = ['address_specification'] LocalTalk_address._superclassnames = ['address_specification']
LocalTalk_address._privpropdict = { LocalTalk_address._privpropdict = {
'_3c_inheritance_3e_' : _3c_inheritance_3e_, '_3c_inheritance_3e_' : _Prop__3c_inheritance_3e_,
'network' : network, 'network' : _Prop_network,
'node' : node, 'node' : _Prop_node,
'socket' : socket, 'socket' : _Prop_socket,
} }
LocalTalk_address._privelemdict = { LocalTalk_address._privelemdict = {
} }
SCSI_address._superclassnames = ['address_specification'] SCSI_address._superclassnames = ['address_specification']
SCSI_address._privpropdict = { SCSI_address._privpropdict = {
'ID' : ID, 'ID' : _Prop_ID,
'LUN' : LUN, 'LUN' : _Prop_LUN,
'SCSI_bus' : SCSI_bus, 'SCSI_bus' : _Prop_SCSI_bus,
'_3c_inheritance_3e_' : _3c_inheritance_3e_, '_3c_inheritance_3e_' : _Prop__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 = {
'ID' : ID, 'ID' : _Prop_ID,
'_3c_inheritance_3e_' : _3c_inheritance_3e_, '_3c_inheritance_3e_' : _Prop__3c_inheritance_3e_,
} }
Token_Ring_address._privelemdict = { Token_Ring_address._privelemdict = {
} }
USB_address._superclassnames = ['address_specification'] USB_address._superclassnames = ['address_specification']
USB_address._privpropdict = { USB_address._privpropdict = {
'_3c_inheritance_3e_' : _3c_inheritance_3e_, '_3c_inheritance_3e_' : _Prop__3c_inheritance_3e_,
'name' : name, 'name' : _Prop_name,
} }
USB_address._privelemdict = { USB_address._privelemdict = {
} }
@ -341,33 +341,3 @@ _classdeclarations = {
'ctok' : Token_Ring_address, 'ctok' : Token_Ring_address,
'cusb' : USB_address, 'cusb' : USB_address,
} }
_propdeclarations = {
'ID ' : ID,
'c@#^' : _3c_inheritance_3e_,
'pALL' : properties,
'patm' : AppleTalk_machine,
'patt' : AppleTalk_type,
'patz' : AppleTalk_zone,
'pcon' : conduit,
'pdns' : DNS_form,
'pdva' : device_address,
'pdvt' : device_type,
'pnam' : name,
'pnet' : network,
'pnod' : node,
'ppor' : port,
'pprt' : protocol,
'pscb' : SCSI_bus,
'pslu' : LUN,
'psoc' : socket,
}
_compdeclarations = {
}
_enumdeclarations = {
'econ' : _Enum_econ,
'edvt' : _Enum_edvt,
'epro' : _Enum_epro,
}

View file

@ -18,43 +18,43 @@ class QuickDraw_Graphics_Suite_Events:
class arc(aetools.ComponentItem): class arc(aetools.ComponentItem):
"""arc - An arc """ """arc - An arc """
want = 'carc' want = 'carc'
class arc_angle(aetools.NProperty): class _Prop_arc_angle(aetools.NProperty):
"""arc angle - the angle of the arc in degrees """ """arc angle - the angle of the arc in degrees """
which = 'parc' which = 'parc'
want = 'fixd' want = 'fixd'
class bounds(aetools.NProperty): class _Prop_bounds(aetools.NProperty):
"""bounds - the smallest rectangle that contains the entire arc """ """bounds - the smallest rectangle that contains the entire arc """
which = 'pbnd' which = 'pbnd'
want = 'qdrt' want = 'qdrt'
class definition_rect(aetools.NProperty): class _Prop_definition_rect(aetools.NProperty):
"""definition rect - the rectangle that contains the circle or oval used to define the arc """ """definition rect - the rectangle that contains the circle or oval used to define the arc """
which = 'pdrt' which = 'pdrt'
want = 'qdrt' want = 'qdrt'
class fill_color(aetools.NProperty): class _Prop_fill_color(aetools.NProperty):
"""fill color - the fill color """ """fill color - the fill color """
which = 'flcl' which = 'flcl'
want = 'cRGB' want = 'cRGB'
class fill_pattern(aetools.NProperty): class _Prop_fill_pattern(aetools.NProperty):
"""fill pattern - the fill pattern """ """fill pattern - the fill pattern """
which = 'flpt' which = 'flpt'
want = 'cpix' want = 'cpix'
class pen_color(aetools.NProperty): class _Prop_pen_color(aetools.NProperty):
"""pen color - the pen color """ """pen color - the pen color """
which = 'ppcl' which = 'ppcl'
want = 'cRGB' want = 'cRGB'
class pen_pattern(aetools.NProperty): class _Prop_pen_pattern(aetools.NProperty):
"""pen pattern - the pen pattern """ """pen pattern - the pen pattern """
which = 'pppa' which = 'pppa'
want = 'cpix' want = 'cpix'
class pen_width(aetools.NProperty): class _Prop_pen_width(aetools.NProperty):
"""pen width - the pen width """ """pen width - the pen width """
which = 'ppwd' which = 'ppwd'
want = 'shor' want = 'shor'
class start_angle(aetools.NProperty): class _Prop_start_angle(aetools.NProperty):
"""start angle - the angle that defines the start of the arc, in degrees """ """start angle - the angle that defines the start of the arc, in degrees """
which = 'pang' which = 'pang'
want = 'fixd' want = 'fixd'
class transfer_mode(aetools.NProperty): class _Prop_transfer_mode(aetools.NProperty):
"""transfer mode - the transfer mode """ """transfer mode - the transfer mode """
which = 'pptm' which = 'pptm'
want = 'tran' want = 'tran'
@ -64,55 +64,55 @@ arcs = arc
class drawing_area(aetools.ComponentItem): class drawing_area(aetools.ComponentItem):
"""drawing area - Container for graphics and supporting information """ """drawing area - Container for graphics and supporting information """
want = 'cdrw' want = 'cdrw'
class background_color(aetools.NProperty): class _Prop_background_color(aetools.NProperty):
"""background color - the color used to fill in unoccupied areas """ """background color - the color used to fill in unoccupied areas """
which = 'pbcl' which = 'pbcl'
want = 'cRGB' want = 'cRGB'
class background_pattern(aetools.NProperty): class _Prop_background_pattern(aetools.NProperty):
"""background pattern - the pattern used to fill in unoccupied areas """ """background pattern - the pattern used to fill in unoccupied areas """
which = 'pbpt' which = 'pbpt'
want = 'cpix' want = 'cpix'
class color_table(aetools.NProperty): class _Prop_color_table(aetools.NProperty):
"""color table - the color table """ """color table - the color table """
which = 'cltb' which = 'cltb'
want = 'clrt' want = 'clrt'
class default_font(aetools.NProperty): class _Prop_default_font(aetools.NProperty):
"""default font - the name of the default font for text objects """ """default font - the name of the default font for text objects """
which = 'ptxf' which = 'ptxf'
want = 'itxt' want = 'itxt'
class default_location(aetools.NProperty): class _Prop_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 default_size(aetools.NProperty): class _Prop_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): class _Prop_name(aetools.NProperty):
"""name - the name """ """name - the name """
which = 'pnam' which = 'pnam'
want = 'itxt' want = 'itxt'
class ordering(aetools.NProperty): class _Prop_ordering(aetools.NProperty):
"""ordering - the ordered list of graphic objects in the drawing area """ """ordering - the ordered list of graphic objects in the drawing area """
which = 'gobs' which = 'gobs'
want = 'obj ' want = 'obj '
class pixel_depth(aetools.NProperty): class _Prop_pixel_depth(aetools.NProperty):
"""pixel depth - the number of bits per pixel """ """pixel depth - the number of bits per pixel """
which = 'pdpt' which = 'pdpt'
want = 'shor' want = 'shor'
class style(aetools.NProperty): class _Prop_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): class _Prop_text_color(aetools.NProperty):
"""text color - the default color for text objects """ """text color - the default color for text objects """
which = 'ptxc' which = 'ptxc'
want = 'cRGB' want = 'cRGB'
class update_on_change(aetools.NProperty): class _Prop_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): class _Prop_writing_code(aetools.NProperty):
"""writing code - the script system and language of text objects in the drawing area """ """writing code - the script system and language of text objects in the drawing area """
which = 'psct' which = 'psct'
want = 'intl' want = 'intl'
@ -134,19 +134,19 @@ graphic_shape = graphic_shapes
class graphic_text(aetools.ComponentItem): class graphic_text(aetools.ComponentItem):
"""graphic text - A series of characters within a drawing area """ """graphic text - A series of characters within a drawing area """
want = 'cgtx' want = 'cgtx'
class color(aetools.NProperty): class _Prop_color(aetools.NProperty):
"""color - the color of the first character """ """color - the color of the first character """
which = 'colr' which = 'colr'
want = 'cRGB' want = 'cRGB'
class font(aetools.NProperty): class _Prop_font(aetools.NProperty):
"""font - the name of the font of the first character """ """font - the name of the font of the first character """
which = 'font' which = 'font'
want = 'ctxt' want = 'ctxt'
class size(aetools.NProperty): class _Prop_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 uniform_styles(aetools.NProperty): class _Prop_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'
@ -160,7 +160,7 @@ oval = ovals
class polygon(aetools.ComponentItem): class polygon(aetools.ComponentItem):
"""polygon - A polygon """ """polygon - A polygon """
want = 'cpgn' want = 'cpgn'
class point_list(aetools.NProperty): class _Prop_point_list(aetools.NProperty):
"""point list - the list of points that define the polygon """ """point list - the list of points that define the polygon """
which = 'ptlt' which = 'ptlt'
want = 'QDpt' want = 'QDpt'
@ -194,11 +194,11 @@ rectangle = rectangles
class rounded_rectangle(aetools.ComponentItem): class rounded_rectangle(aetools.ComponentItem):
"""rounded rectangle - A rounded rectangle """ """rounded rectangle - A rounded rectangle """
want = 'crrc' want = 'crrc'
class corner_curve_height(aetools.NProperty): class _Prop_corner_curve_height(aetools.NProperty):
"""corner curve height - the height of the oval used to define the shape of the rounded corners """ """corner curve height - the height of the oval used to define the shape of the rounded corners """
which = 'pchd' which = 'pchd'
want = 'shor' want = 'shor'
class corner_curve_width(aetools.NProperty): class _Prop_corner_curve_width(aetools.NProperty):
"""corner curve width - the width of the oval used to define the shape of the rounded corners """ """corner curve width - the width of the oval used to define the shape of the rounded corners """
which = 'pcwd' which = 'pcwd'
want = 'shor' want = 'shor'
@ -208,19 +208,19 @@ rounded_rectangles = rounded_rectangle
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 arrow_style(aetools.NProperty): class _Prop_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): class _Prop_dash_style(aetools.NProperty):
"""dash style - the dash style """ """dash style - the dash style """
which = 'pdst' which = 'pdst'
want = 'tdas' want = 'tdas'
class end_point(aetools.NProperty): class _Prop_end_point(aetools.NProperty):
"""end point - the ending point of the line """ """end point - the ending point of the line """
which = 'pend' which = 'pend'
want = 'QDpt' want = 'QDpt'
class start_point(aetools.NProperty): class _Prop_start_point(aetools.NProperty):
"""start point - the starting point of the line """ """start point - the starting point of the line """
which = 'pstp' which = 'pstp'
want = 'QDpt' want = 'QDpt'
@ -228,34 +228,34 @@ class start_point(aetools.NProperty):
graphic_lines = graphic_line graphic_lines = graphic_line
arc._superclassnames = [] arc._superclassnames = []
arc._privpropdict = { arc._privpropdict = {
'arc_angle' : arc_angle, 'arc_angle' : _Prop_arc_angle,
'bounds' : bounds, 'bounds' : _Prop_bounds,
'definition_rect' : definition_rect, 'definition_rect' : _Prop_definition_rect,
'fill_color' : fill_color, 'fill_color' : _Prop_fill_color,
'fill_pattern' : fill_pattern, 'fill_pattern' : _Prop_fill_pattern,
'pen_color' : pen_color, 'pen_color' : _Prop_pen_color,
'pen_pattern' : pen_pattern, 'pen_pattern' : _Prop_pen_pattern,
'pen_width' : pen_width, 'pen_width' : _Prop_pen_width,
'start_angle' : start_angle, 'start_angle' : _Prop_start_angle,
'transfer_mode' : transfer_mode, 'transfer_mode' : _Prop_transfer_mode,
} }
arc._privelemdict = { arc._privelemdict = {
} }
drawing_area._superclassnames = [] drawing_area._superclassnames = []
drawing_area._privpropdict = { drawing_area._privpropdict = {
'background_color' : background_color, 'background_color' : _Prop_background_color,
'background_pattern' : background_pattern, 'background_pattern' : _Prop_background_pattern,
'color_table' : color_table, 'color_table' : _Prop_color_table,
'default_font' : default_font, 'default_font' : _Prop_default_font,
'default_location' : default_location, 'default_location' : _Prop_default_location,
'default_size' : default_size, 'default_size' : _Prop_default_size,
'name' : name, 'name' : _Prop_name,
'ordering' : ordering, 'ordering' : _Prop_ordering,
'pixel_depth' : pixel_depth, 'pixel_depth' : _Prop_pixel_depth,
'style' : style, 'style' : _Prop_style,
'text_color' : text_color, 'text_color' : _Prop_text_color,
'update_on_change' : update_on_change, 'update_on_change' : _Prop_update_on_change,
'writing_code' : writing_code, 'writing_code' : _Prop_writing_code,
} }
drawing_area._privelemdict = { drawing_area._privelemdict = {
} }
@ -271,10 +271,10 @@ graphic_shapes._privelemdict = {
} }
graphic_text._superclassnames = [] graphic_text._superclassnames = []
graphic_text._privpropdict = { graphic_text._privpropdict = {
'color' : color, 'color' : _Prop_color,
'font' : font, 'font' : _Prop_font,
'size' : size, 'size' : _Prop_size,
'uniform_styles' : uniform_styles, 'uniform_styles' : _Prop_uniform_styles,
} }
graphic_text._privelemdict = { graphic_text._privelemdict = {
} }
@ -285,7 +285,7 @@ ovals._privelemdict = {
} }
polygon._superclassnames = [] polygon._superclassnames = []
polygon._privpropdict = { polygon._privpropdict = {
'point_list' : point_list, 'point_list' : _Prop_point_list,
} }
polygon._privelemdict = { polygon._privelemdict = {
} }
@ -301,7 +301,7 @@ pixel_maps._privelemdict = {
} }
pixel._superclassnames = [] pixel._superclassnames = []
pixel._privpropdict = { pixel._privpropdict = {
'color' : color, 'color' : _Prop_color,
} }
pixel._privelemdict = { pixel._privelemdict = {
} }
@ -312,17 +312,17 @@ rectangles._privelemdict = {
} }
rounded_rectangle._superclassnames = [] rounded_rectangle._superclassnames = []
rounded_rectangle._privpropdict = { rounded_rectangle._privpropdict = {
'corner_curve_height' : corner_curve_height, 'corner_curve_height' : _Prop_corner_curve_height,
'corner_curve_width' : corner_curve_width, 'corner_curve_width' : _Prop_corner_curve_width,
} }
rounded_rectangle._privelemdict = { rounded_rectangle._privelemdict = {
} }
graphic_line._superclassnames = [] graphic_line._superclassnames = []
graphic_line._privpropdict = { graphic_line._privpropdict = {
'arrow_style' : arrow_style, 'arrow_style' : _Prop_arrow_style,
'dash_style' : dash_style, 'dash_style' : _Prop_dash_style,
'end_point' : end_point, 'end_point' : _Prop_end_point,
'start_point' : start_point, 'start_point' : _Prop_start_point,
} }
graphic_line._privelemdict = { graphic_line._privelemdict = {
} }
@ -370,48 +370,3 @@ _classdeclarations = {
'crrc' : rounded_rectangle, 'crrc' : rounded_rectangle,
'glin' : graphic_line, 'glin' : graphic_line,
} }
_propdeclarations = {
'arro' : arrow_style,
'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,
'ptxf' : default_font,
'pupd' : update_on_change,
'txst' : style,
'ustl' : uniform_styles,
}
_compdeclarations = {
}
_enumdeclarations = {
'arro' : _Enum_arro,
'tran' : _Enum_tran,
}

View file

@ -18,15 +18,15 @@ class QuickDraw_Graphics_Suppleme_Events:
class drawing_area(aetools.ComponentItem): class drawing_area(aetools.ComponentItem):
"""drawing area - Container for graphics and supporting information """ """drawing area - Container for graphics and supporting information """
want = 'cdrw' want = 'cdrw'
class rotation(aetools.NProperty): class _Prop_rotation(aetools.NProperty):
"""rotation - the default rotation for objects in the drawing area """ """rotation - the default rotation for objects in the drawing area """
which = 'prot' which = 'prot'
want = 'trot' want = 'trot'
class scale(aetools.NProperty): class _Prop_scale(aetools.NProperty):
"""scale - the default scaling for objects in the drawing area """ """scale - the default scaling for objects in the drawing area """
which = 'pscl' which = 'pscl'
want = 'fixd' want = 'fixd'
class translation(aetools.NProperty): class _Prop_translation(aetools.NProperty):
"""translation - the default repositioning for objects in the drawing area """ """translation - the default repositioning for objects in the drawing area """
which = 'ptrs' which = 'ptrs'
want = 'QDpt' want = 'QDpt'
@ -40,9 +40,9 @@ class graphic_groups(aetools.ComponentItem):
graphic_group = graphic_groups graphic_group = graphic_groups
drawing_area._superclassnames = [] drawing_area._superclassnames = []
drawing_area._privpropdict = { drawing_area._privpropdict = {
'rotation' : rotation, 'rotation' : _Prop_rotation,
'scale' : scale, 'scale' : _Prop_scale,
'translation' : translation, 'translation' : _Prop_translation,
} }
drawing_area._privelemdict = { drawing_area._privelemdict = {
} }
@ -59,15 +59,3 @@ _classdeclarations = {
'cdrw' : drawing_area, 'cdrw' : drawing_area,
'cpic' : graphic_groups, 'cpic' : graphic_groups,
} }
_propdeclarations = {
'prot' : rotation,
'pscl' : scale,
'ptrs' : translation,
}
_compdeclarations = {
}
_enumdeclarations = {
}

View file

@ -21,12 +21,3 @@ class Required_Suite_Events(builtin_Suite_Events):
# #
_classdeclarations = { _classdeclarations = {
} }
_propdeclarations = {
}
_compdeclarations = {
}
_enumdeclarations = {
}

View file

@ -457,23 +457,23 @@ alias = aliases
class application(aetools.ComponentItem): class application(aetools.ComponentItem):
"""application - An application program """ """application - An application program """
want = 'capp' want = 'capp'
class clipboard(aetools.NProperty): class _Prop_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): class _Prop_frontmost(aetools.NProperty):
"""frontmost - Is this the frontmost application? """ """frontmost - Is this the frontmost application? """
which = 'pisf' which = 'pisf'
want = 'bool' want = 'bool'
class name(aetools.NProperty): class _Prop_name(aetools.NProperty):
"""name - the name of the application """ """name - the name of the application """
which = 'pnam' which = 'pnam'
want = 'itxt' want = 'itxt'
class selection(aetools.NProperty): class _Prop_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. """ """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' which = 'sele'
want = 'csel' want = 'csel'
class version(aetools.NProperty): class _Prop_version(aetools.NProperty):
"""version - the version of the application """ """version - the version of the application """
which = 'vers' which = 'vers'
want = 'vers' want = 'vers'
@ -489,7 +489,7 @@ insertion_point = insertion_points
class selection_2d_object(aetools.ComponentItem): class selection_2d_object(aetools.ComponentItem):
"""selection-object - A way to refer to the state of the current of the selection. Use the \xd4select\xd5 command to make a new selection. """ """selection-object - A way to refer to the state of the current of the selection. Use the \xd4select\xd5 command to make a new selection. """
want = 'csel' want = 'csel'
class contents(aetools.NProperty): class _Prop_contents(aetools.NProperty):
"""contents - the information currently selected. Use \xd4contents of selection\xd5 to get or change information in a document. """ """contents - the information currently selected. Use \xd4contents of selection\xd5 to get or change information in a document. """
which = 'pcnt' which = 'pcnt'
want = '****' want = '****'
@ -497,43 +497,43 @@ class contents(aetools.NProperty):
class window(aetools.ComponentItem): class window(aetools.ComponentItem):
"""window - A window """ """window - A window """
want = 'cwin' want = 'cwin'
class bounds(aetools.NProperty): class _Prop_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 closeable(aetools.NProperty): class _Prop_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 floating(aetools.NProperty): class _Prop_floating(aetools.NProperty):
"""floating - Does the window float? """ """floating - Does the window float? """
which = 'isfl' which = 'isfl'
want = 'bool' want = 'bool'
class index(aetools.NProperty): class _Prop_index(aetools.NProperty):
"""index - the number of the window """ """index - the number of the window """
which = 'pidx' which = 'pidx'
want = 'long' want = 'long'
class modal(aetools.NProperty): class _Prop_modal(aetools.NProperty):
"""modal - Is the window modal? """ """modal - Is the window modal? """
which = 'pmod' which = 'pmod'
want = 'bool' want = 'bool'
class resizable(aetools.NProperty): class _Prop_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): class _Prop_titled(aetools.NProperty):
"""titled - Does the window have a title bar? """ """titled - Does the window have a title bar? """
which = 'ptit' which = 'ptit'
want = 'bool' want = 'bool'
class visible(aetools.NProperty): class _Prop_visible(aetools.NProperty):
"""visible - Is the window visible? """ """visible - Is the window visible? """
which = 'pvis' which = 'pvis'
want = 'bool' want = 'bool'
class zoomable(aetools.NProperty): class _Prop_zoomable(aetools.NProperty):
"""zoomable - Is the window zoomable? """ """zoomable - Is the window zoomable? """
which = 'iszm' which = 'iszm'
want = 'bool' want = 'bool'
class zoomed(aetools.NProperty): class _Prop_zoomed(aetools.NProperty):
"""zoomed - Is the window zoomed? """ """zoomed - Is the window zoomed? """
which = 'pzum' which = 'pzum'
want = 'bool' want = 'bool'
@ -543,7 +543,7 @@ windows = window
class document(aetools.ComponentItem): class document(aetools.ComponentItem):
"""document - A document of a scriptable application """ """document - A document of a scriptable application """
want = 'docu' want = 'docu'
class modified(aetools.NProperty): class _Prop_modified(aetools.NProperty):
"""modified - Has the document been modified since the last save? """ """modified - Has the document been modified since the last save? """
which = 'imod' which = 'imod'
want = 'bool' want = 'bool'
@ -553,7 +553,7 @@ documents = document
class file(aetools.ComponentItem): class file(aetools.ComponentItem):
"""file - a file on a disk or server """ """file - a file on a disk or server """
want = 'file' want = 'file'
class stationery(aetools.NProperty): class _Prop_stationery(aetools.NProperty):
"""stationery - Is the file a stationery file? """ """stationery - Is the file a stationery file? """
which = 'pspd' which = 'pspd'
want = 'bool' want = 'bool'
@ -566,11 +566,11 @@ aliases._privelemdict = {
} }
application._superclassnames = [] application._superclassnames = []
application._privpropdict = { application._privpropdict = {
'clipboard' : clipboard, 'clipboard' : _Prop_clipboard,
'frontmost' : frontmost, 'frontmost' : _Prop_frontmost,
'name' : name, 'name' : _Prop_name,
'selection' : selection, 'selection' : _Prop_selection,
'version' : version, 'version' : _Prop_version,
} }
application._privelemdict = { application._privelemdict = {
} }
@ -581,34 +581,34 @@ insertion_points._privelemdict = {
} }
selection_2d_object._superclassnames = [] selection_2d_object._superclassnames = []
selection_2d_object._privpropdict = { selection_2d_object._privpropdict = {
'contents' : contents, 'contents' : _Prop_contents,
} }
selection_2d_object._privelemdict = { selection_2d_object._privelemdict = {
} }
window._superclassnames = [] window._superclassnames = []
window._privpropdict = { window._privpropdict = {
'bounds' : bounds, 'bounds' : _Prop_bounds,
'closeable' : closeable, 'closeable' : _Prop_closeable,
'floating' : floating, 'floating' : _Prop_floating,
'index' : index, 'index' : _Prop_index,
'modal' : modal, 'modal' : _Prop_modal,
'resizable' : resizable, 'resizable' : _Prop_resizable,
'titled' : titled, 'titled' : _Prop_titled,
'visible' : visible, 'visible' : _Prop_visible,
'zoomable' : zoomable, 'zoomable' : _Prop_zoomable,
'zoomed' : zoomed, 'zoomed' : _Prop_zoomed,
} }
window._privelemdict = { window._privelemdict = {
} }
document._superclassnames = [] document._superclassnames = []
document._privpropdict = { document._privpropdict = {
'modified' : modified, 'modified' : _Prop_modified,
} }
document._privelemdict = { document._privelemdict = {
} }
file._superclassnames = [] file._superclassnames = []
file._privpropdict = { file._privpropdict = {
'stationery' : stationery, 'stationery' : _Prop_stationery,
} }
file._privelemdict = { file._privelemdict = {
} }
@ -671,41 +671,3 @@ _classdeclarations = {
'docu' : document, 'docu' : document,
'file' : file, 'file' : file,
} }
_propdeclarations = {
'hclb' : closeable,
'imod' : modified,
'isfl' : floating,
'iszm' : zoomable,
'pbnd' : bounds,
'pcli' : clipboard,
'pcnt' : contents,
'pidx' : index,
'pisf' : frontmost,
'pmod' : modal,
'pnam' : name,
'prsz' : resizable,
'pspd' : stationery,
'ptit' : titled,
'pvis' : visible,
'pzum' : zoomed,
'sele' : selection,
'vers' : version,
}
_compdeclarations = {
'< ' : _3c_,
'<= ' : _b2_,
'= ' : _3d_,
'> ' : _3e_,
'>= ' : _b3_,
'bgwt' : starts_with,
'cont' : contains,
'ends' : ends_with,
}
_enumdeclarations = {
'kfrm' : _Enum_kfrm,
'savo' : _Enum_savo,
'styl' : _Enum_styl,
}

View file

@ -18,11 +18,11 @@ class Table_Suite_Events:
class cell(aetools.ComponentItem): class cell(aetools.ComponentItem):
"""cell - A cell """ """cell - A cell """
want = 'ccel' want = 'ccel'
class formula(aetools.NProperty): class _Prop_formula(aetools.NProperty):
"""formula - the formula of the cell """ """formula - the formula of the cell """
which = 'pfor' which = 'pfor'
want = 'ctxt' want = 'ctxt'
class protection(aetools.NProperty): class _Prop_protection(aetools.NProperty):
"""protection - Indicates whether value or formula in the cell can be changed """ """protection - Indicates whether value or formula in the cell can be changed """
which = 'ppro' which = 'ppro'
want = 'prtn' want = 'prtn'
@ -32,7 +32,7 @@ cells = cell
class column(aetools.ComponentItem): class column(aetools.ComponentItem):
"""column - A column """ """column - A column """
want = 'ccol' want = 'ccol'
class name(aetools.NProperty): class _Prop_name(aetools.NProperty):
"""name - the name of the column """ """name - the name of the column """
which = 'pnam' which = 'pnam'
want = 'itxt' want = 'itxt'
@ -52,14 +52,14 @@ class tables(aetools.ComponentItem):
table = tables table = tables
cell._superclassnames = [] cell._superclassnames = []
cell._privpropdict = { cell._privpropdict = {
'formula' : formula, 'formula' : _Prop_formula,
'protection' : protection, 'protection' : _Prop_protection,
} }
cell._privelemdict = { cell._privelemdict = {
} }
column._superclassnames = [] column._superclassnames = []
column._privpropdict = { column._privpropdict = {
'name' : name, 'name' : _Prop_name,
} }
column._privelemdict = { column._privelemdict = {
} }
@ -89,16 +89,3 @@ _classdeclarations = {
'crow' : rows, 'crow' : rows,
'ctbl' : tables, 'ctbl' : tables,
} }
_propdeclarations = {
'pfor' : formula,
'pnam' : name,
'ppro' : protection,
}
_compdeclarations = {
}
_enumdeclarations = {
'prtn' : _Enum_prtn,
}

View file

@ -18,11 +18,11 @@ class Text_Suite_Events:
class text_flow(aetools.ComponentItem): class text_flow(aetools.ComponentItem):
"""text flow - A contiguous block of text. Page layout applications call this a \xd4story.\xd5 """ """text flow - A contiguous block of text. Page layout applications call this a \xd4story.\xd5 """
want = 'cflo' want = 'cflo'
class _3c_inheritance_3e_(aetools.NProperty): class _Prop__3c_inheritance_3e_(aetools.NProperty):
"""<inheritance> - inherits some of its properties from this class """ """<inheritance> - inherits some of its properties from this class """
which = 'c@#^' which = 'c@#^'
want = 'ctxt' want = 'ctxt'
class name(aetools.NProperty): class _Prop_name(aetools.NProperty):
"""name - the name """ """name - the name """
which = 'pnam' which = 'pnam'
want = 'itxt' want = 'itxt'
@ -36,7 +36,7 @@ class character(aetools.ComponentItem):
class line(aetools.ComponentItem): class line(aetools.ComponentItem):
"""line - A line of text """ """line - A line of text """
want = 'clin' want = 'clin'
class justification(aetools.NProperty): class _Prop_justification(aetools.NProperty):
"""justification - the justification of the text """ """justification - the justification of the text """
which = 'pjst' which = 'pjst'
want = 'just' want = 'just'
@ -52,27 +52,27 @@ paragraphs = paragraph
class text(aetools.ComponentItem): class text(aetools.ComponentItem):
"""text - Text """ """text - Text """
want = 'ctxt' want = 'ctxt'
class color(aetools.NProperty): class _Prop_color(aetools.NProperty):
"""color - the color of the first character """ """color - the color of the first character """
which = 'colr' which = 'colr'
want = 'cRGB' want = 'cRGB'
class font(aetools.NProperty): class _Prop_font(aetools.NProperty):
"""font - the name of the font of the first character """ """font - the name of the font of the first character """
which = 'font' which = 'font'
want = 'ctxt' want = 'ctxt'
class size(aetools.NProperty): class _Prop_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 style(aetools.NProperty): class _Prop_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'
want = 'tsty' want = 'tsty'
class uniform_styles(aetools.NProperty): class _Prop_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): class _Prop_writing_code(aetools.NProperty):
"""writing code - the script system and language """ """writing code - the script system and language """
which = 'psct' which = 'psct'
want = 'intl' want = 'intl'
@ -91,11 +91,11 @@ words = word
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 off_styles(aetools.NProperty): class _Prop_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): class _Prop_on_styles(aetools.NProperty):
"""on styles - the styles that are on for the text """ """on styles - the styles that are on for the text """
which = 'onst' which = 'onst'
want = 'styl' want = 'styl'
@ -103,38 +103,38 @@ class on_styles(aetools.NProperty):
text_style_infos = text_style_info text_style_infos = text_style_info
text_flow._superclassnames = ['text'] text_flow._superclassnames = ['text']
text_flow._privpropdict = { text_flow._privpropdict = {
'_3c_inheritance_3e_' : _3c_inheritance_3e_, '_3c_inheritance_3e_' : _Prop__3c_inheritance_3e_,
'name' : name, 'name' : _Prop_name,
} }
text_flow._privelemdict = { text_flow._privelemdict = {
} }
character._superclassnames = ['text'] character._superclassnames = ['text']
character._privpropdict = { character._privpropdict = {
'_3c_inheritance_3e_' : _3c_inheritance_3e_, '_3c_inheritance_3e_' : _Prop__3c_inheritance_3e_,
} }
character._privelemdict = { character._privelemdict = {
} }
line._superclassnames = ['text'] line._superclassnames = ['text']
line._privpropdict = { line._privpropdict = {
'_3c_inheritance_3e_' : _3c_inheritance_3e_, '_3c_inheritance_3e_' : _Prop__3c_inheritance_3e_,
'justification' : justification, 'justification' : _Prop_justification,
} }
line._privelemdict = { line._privelemdict = {
} }
paragraph._superclassnames = ['text'] paragraph._superclassnames = ['text']
paragraph._privpropdict = { paragraph._privpropdict = {
'_3c_inheritance_3e_' : _3c_inheritance_3e_, '_3c_inheritance_3e_' : _Prop__3c_inheritance_3e_,
} }
paragraph._privelemdict = { paragraph._privelemdict = {
} }
text._superclassnames = [] text._superclassnames = []
text._privpropdict = { text._privpropdict = {
'color' : color, 'color' : _Prop_color,
'font' : font, 'font' : _Prop_font,
'size' : size, 'size' : _Prop_size,
'style' : style, 'style' : _Prop_style,
'uniform_styles' : uniform_styles, 'uniform_styles' : _Prop_uniform_styles,
'writing_code' : writing_code, 'writing_code' : _Prop_writing_code,
} }
text._privelemdict = { text._privelemdict = {
'character' : character, 'character' : character,
@ -145,14 +145,14 @@ text._privelemdict = {
} }
word._superclassnames = ['text'] word._superclassnames = ['text']
word._privpropdict = { word._privpropdict = {
'_3c_inheritance_3e_' : _3c_inheritance_3e_, '_3c_inheritance_3e_' : _Prop__3c_inheritance_3e_,
} }
word._privelemdict = { word._privelemdict = {
} }
text_style_info._superclassnames = [] text_style_info._superclassnames = []
text_style_info._privpropdict = { text_style_info._privpropdict = {
'off_styles' : off_styles, 'off_styles' : _Prop_off_styles,
'on_styles' : on_styles, 'on_styles' : _Prop_on_styles,
} }
text_style_info._privelemdict = { text_style_info._privelemdict = {
} }
@ -194,25 +194,3 @@ _classdeclarations = {
'cwor' : word, 'cwor' : word,
'tsty' : text_style_info, 'tsty' : text_style_info,
} }
_propdeclarations = {
'c@#^' : _3c_inheritance_3e_,
'colr' : color,
'font' : font,
'ofst' : off_styles,
'onst' : on_styles,
'pjst' : justification,
'pnam' : name,
'psct' : writing_code,
'ptsz' : size,
'txst' : style,
'ustl' : uniform_styles,
}
_compdeclarations = {
}
_enumdeclarations = {
'just' : _Enum_just,
'styl' : _Enum_styl,
}

View file

@ -424,12 +424,3 @@ _classdeclarations = {
'trot' : rotation, 'trot' : rotation,
'vers' : version, 'vers' : version,
} }
_propdeclarations = {
}
_compdeclarations = {
}
_enumdeclarations = {
}

View file

@ -173,24 +173,13 @@ getbaseclasses(Saturday)
getbaseclasses(September) getbaseclasses(September)
getbaseclasses(file_specification) getbaseclasses(file_specification)
getbaseclasses(text) getbaseclasses(text)
getbaseclasses(graphic_group) getbaseclasses(window)
getbaseclasses(drawing_area) getbaseclasses(file)
getbaseclasses(cell) getbaseclasses(selection_2d_object)
getbaseclasses(column) getbaseclasses(alias)
getbaseclasses(table) getbaseclasses(application)
getbaseclasses(row) getbaseclasses(insertion_point)
getbaseclasses(AppleTalk_address) getbaseclasses(document)
getbaseclasses(address_specification)
getbaseclasses(Token_Ring_address)
getbaseclasses(FireWire_address)
getbaseclasses(bus_slot)
getbaseclasses(SCSI_address)
getbaseclasses(ADB_address)
getbaseclasses(USB_address)
getbaseclasses(device_specification)
getbaseclasses(LocalTalk_address)
getbaseclasses(IP_address)
getbaseclasses(Ethernet_address)
getbaseclasses(small_integer) getbaseclasses(small_integer)
getbaseclasses(RGB16_color) getbaseclasses(RGB16_color)
getbaseclasses(version) getbaseclasses(version)
@ -238,13 +227,6 @@ getbaseclasses(text_style_info)
getbaseclasses(line) getbaseclasses(line)
getbaseclasses(word) getbaseclasses(word)
getbaseclasses(text) getbaseclasses(text)
getbaseclasses(window)
getbaseclasses(file)
getbaseclasses(selection_2d_object)
getbaseclasses(alias)
getbaseclasses(application)
getbaseclasses(insertion_point)
getbaseclasses(document)
getbaseclasses(graphic_group) getbaseclasses(graphic_group)
getbaseclasses(oval) getbaseclasses(oval)
getbaseclasses(graphic_text) getbaseclasses(graphic_text)
@ -258,6 +240,24 @@ getbaseclasses(rounded_rectangle)
getbaseclasses(arc) getbaseclasses(arc)
getbaseclasses(pixel_map) getbaseclasses(pixel_map)
getbaseclasses(rectangle) getbaseclasses(rectangle)
getbaseclasses(graphic_group)
getbaseclasses(drawing_area)
getbaseclasses(AppleTalk_address)
getbaseclasses(address_specification)
getbaseclasses(Token_Ring_address)
getbaseclasses(FireWire_address)
getbaseclasses(bus_slot)
getbaseclasses(SCSI_address)
getbaseclasses(ADB_address)
getbaseclasses(USB_address)
getbaseclasses(device_specification)
getbaseclasses(LocalTalk_address)
getbaseclasses(IP_address)
getbaseclasses(Ethernet_address)
getbaseclasses(cell)
getbaseclasses(column)
getbaseclasses(table)
getbaseclasses(row)
# #
# Indices of types declared in this module # Indices of types declared in this module
@ -368,24 +368,13 @@ _classdeclarations = {
'sep ' : September, 'sep ' : September,
'fss ' : file_specification, 'fss ' : file_specification,
'ctxt' : text, 'ctxt' : text,
'cpic' : graphic_group, 'cwin' : window,
'cdrw' : drawing_area, 'file' : file,
'ccel' : cell, 'csel' : selection_2d_object,
'ccol' : column, 'alis' : alias,
'ctbl' : table, 'capp' : application,
'crow' : row, 'cins' : insertion_point,
'cat ' : AppleTalk_address, 'docu' : document,
'cadr' : address_specification,
'ctok' : Token_Ring_address,
'cfw ' : FireWire_address,
'cbus' : bus_slot,
'cscs' : SCSI_address,
'cadb' : ADB_address,
'cusb' : USB_address,
'cdev' : device_specification,
'clt ' : LocalTalk_address,
'cip ' : IP_address,
'cen ' : Ethernet_address,
'shor' : small_integer, 'shor' : small_integer,
'tr16' : RGB16_color, 'tr16' : RGB16_color,
'vers' : version, 'vers' : version,
@ -433,13 +422,6 @@ _classdeclarations = {
'clin' : line, 'clin' : line,
'cwor' : word, 'cwor' : word,
'ctxt' : text, 'ctxt' : text,
'cwin' : window,
'file' : file,
'csel' : selection_2d_object,
'alis' : alias,
'capp' : application,
'cins' : insertion_point,
'docu' : document,
'cpic' : graphic_group, 'cpic' : graphic_group,
'covl' : oval, 'covl' : oval,
'cgtx' : graphic_text, 'cgtx' : graphic_text,
@ -453,6 +435,24 @@ _classdeclarations = {
'carc' : arc, 'carc' : arc,
'cpix' : pixel_map, 'cpix' : pixel_map,
'crec' : rectangle, 'crec' : rectangle,
'cpic' : graphic_group,
'cdrw' : drawing_area,
'cat ' : AppleTalk_address,
'cadr' : address_specification,
'ctok' : Token_Ring_address,
'cfw ' : FireWire_address,
'cbus' : bus_slot,
'cscs' : SCSI_address,
'cadb' : ADB_address,
'cusb' : USB_address,
'cdev' : device_specification,
'clt ' : LocalTalk_address,
'cip ' : IP_address,
'cen ' : Ethernet_address,
'ccel' : cell,
'ccol' : column,
'ctbl' : table,
'crow' : row,
} }

View file

@ -42,15 +42,15 @@ class Disk_2d_Folder_2d_File_Suite_Events:
class alias(aetools.ComponentItem): class alias(aetools.ComponentItem):
"""alias - An alias in the file system """ """alias - An alias in the file system """
want = 'alis' want = 'alis'
class _3c_Inheritance_3e_(aetools.NProperty): class _Prop__3c_Inheritance_3e_(aetools.NProperty):
"""<Inheritance> - All of the properties of the superclass. """ """<Inheritance> - All of the properties of the superclass. """
which = 'c@#^' which = 'c@#^'
want = 'cobj' want = 'cobj'
class properties(aetools.NProperty): class _Prop_properties(aetools.NProperty):
"""properties - every property of the alias """ """properties - every property of the alias """
which = 'pALL' which = 'pALL'
want = '****' want = '****'
class version(aetools.NProperty): class _Prop_version(aetools.NProperty):
"""version - the version of the application bundle referenced by the alias (visible at the bottom of the "Get Info" window) """ """version - the version of the application bundle referenced by the alias (visible at the bottom of the "Get Info" window) """
which = 'vers' which = 'vers'
want = 'utxt' want = 'utxt'
@ -64,31 +64,31 @@ aliases = alias
class disk(aetools.ComponentItem): class disk(aetools.ComponentItem):
"""disk - A disk in the file system """ """disk - A disk in the file system """
want = 'cdis' want = 'cdis'
class capacity(aetools.NProperty): class _Prop_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 = 'magn' want = 'magn'
class ejectable(aetools.NProperty): class _Prop_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 format(aetools.NProperty): class _Prop_format(aetools.NProperty):
"""format - the file system format of this disk """ """format - the file system format of this disk """
which = 'dfmt' which = 'dfmt'
want = 'edfm' want = 'edfm'
class free_space(aetools.NProperty): class _Prop_free_space(aetools.NProperty):
"""free space - the number of free bytes left on the disk """ """free space - the number of free bytes left on the disk """
which = 'frsp' which = 'frsp'
want = 'magn' want = 'magn'
class ignore_privileges(aetools.NProperty): class _Prop_ignore_privileges(aetools.NProperty):
"""ignore privileges - Ignore permissions on this disk? """ """ignore privileges - Ignore permissions on this disk? """
which = 'igpr' which = 'igpr'
want = 'bool' want = 'bool'
class local_volume(aetools.NProperty): class _Prop_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'
want = 'bool' want = 'bool'
class startup(aetools.NProperty): class _Prop_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'
@ -112,51 +112,51 @@ folders = folder
class item(aetools.ComponentItem): class item(aetools.ComponentItem):
"""item - An item in the file system """ """item - An item in the file system """
want = 'cobj' want = 'cobj'
class POSIX_path(aetools.NProperty): class _Prop_POSIX_path(aetools.NProperty):
"""POSIX path - the POSIX file system path of the item """ """POSIX path - the POSIX file system path of the item """
which = 'posx' which = 'posx'
want = 'utxt' want = 'utxt'
class busy_status(aetools.NProperty): class _Prop_busy_status(aetools.NProperty):
"""busy status - Is the item busy? """ """busy status - Is the item busy? """
which = 'busy' which = 'busy'
want = 'bool' want = 'bool'
class creation_date(aetools.NProperty): class _Prop_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 = '****' want = '****'
class displayed_name(aetools.NProperty): class _Prop_displayed_name(aetools.NProperty):
"""displayed name - the name of the item as displayed in the User Interface """ """displayed name - the name of the item as displayed in the User Interface """
which = 'dnam' which = 'dnam'
want = 'utxt' want = 'utxt'
class modification_date(aetools.NProperty): class _Prop_modification_date(aetools.NProperty):
"""modification date - the date on which the item was last modified """ """modification date - the date on which the item was last modified """
which = 'asmo' which = 'asmo'
want = '****' want = '****'
class name(aetools.NProperty): class _Prop_name(aetools.NProperty):
"""name - the name of the item """ """name - the name of the item """
which = 'pnam' which = 'pnam'
want = 'utxt' want = 'utxt'
class name_extension(aetools.NProperty): class _Prop_name_extension(aetools.NProperty):
"""name extension - the extension portion of the name """ """name extension - the extension portion of the name """
which = 'extn' which = 'extn'
want = 'utxt' want = 'utxt'
class package_folder(aetools.NProperty): class _Prop_package_folder(aetools.NProperty):
"""package folder - Is the item a package? """ """package folder - Is the item a package? """
which = 'pkgf' which = 'pkgf'
want = 'bool' want = 'bool'
class path(aetools.NProperty): class _Prop_path(aetools.NProperty):
"""path - the file system path of the item """ """path - the file system path of the item """
which = 'ppth' which = 'ppth'
want = 'utxt' want = 'utxt'
class url(aetools.NProperty): class _Prop_url(aetools.NProperty):
"""url - the url of the item """ """url - the url of the item """
which = 'url ' which = 'url '
want = 'utxt' want = 'utxt'
class visible(aetools.NProperty): class _Prop_visible(aetools.NProperty):
"""visible - Is the item visible? """ """visible - Is the item visible? """
which = 'pvis' which = 'pvis'
want = 'bool' want = 'bool'
class volume(aetools.NProperty): class _Prop_volume(aetools.NProperty):
"""volume - the volume on which the item resides """ """volume - the volume on which the item resides """
which = 'volu' which = 'volu'
want = 'utxt' want = 'utxt'
@ -166,27 +166,27 @@ items = item
class file(aetools.ComponentItem): class file(aetools.ComponentItem):
"""file - A file in the file system """ """file - A file in the file system """
want = 'file' want = 'file'
class creator_type(aetools.NProperty): class _Prop_creator_type(aetools.NProperty):
"""creator type - the OSType identifying the application that created the file """ """creator type - the OSType identifying the application that created the file """
which = 'fcrt' which = 'fcrt'
want = 'utxt' want = 'utxt'
class file_type(aetools.NProperty): class _Prop_file_type(aetools.NProperty):
"""file type - the OSType identifying the type of data contained in the file """ """file type - the OSType identifying the type of data contained in the file """
which = 'asty' which = 'asty'
want = 'utxt' want = 'utxt'
class physical_size(aetools.NProperty): class _Prop_physical_size(aetools.NProperty):
"""physical size - the actual space used by the file on disk """ """physical size - the actual space used by the file on disk """
which = 'phys' which = 'phys'
want = '****' want = '****'
class product_version(aetools.NProperty): class _Prop_product_version(aetools.NProperty):
"""product version - the version of the product (visible at the top of the "Get Info" window) """ """product version - the version of the product (visible at the top of the "Get Info" window) """
which = 'ver2' which = 'ver2'
want = 'utxt' want = 'utxt'
class size(aetools.NProperty): class _Prop_size(aetools.NProperty):
"""size - the logical size of the file """ """size - the logical size of the file """
which = 'ptsz' which = 'ptsz'
want = '****' want = '****'
class stationery(aetools.NProperty): class _Prop_stationery(aetools.NProperty):
"""stationery - Is the file a stationery pad? """ """stationery - Is the file a stationery pad? """
which = 'pspd' which = 'pspd'
want = 'bool' want = 'bool'
@ -194,9 +194,9 @@ class stationery(aetools.NProperty):
files = file files = file
alias._superclassnames = ['item'] alias._superclassnames = ['item']
alias._privpropdict = { alias._privpropdict = {
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_, '_3c_Inheritance_3e_' : _Prop__3c_Inheritance_3e_,
'properties' : properties, 'properties' : _Prop_properties,
'version' : version, 'version' : _Prop_version,
} }
alias._privelemdict = { alias._privelemdict = {
'alias' : alias, 'alias' : alias,
@ -206,15 +206,15 @@ alias._privelemdict = {
} }
disk._superclassnames = ['item'] disk._superclassnames = ['item']
disk._privpropdict = { disk._privpropdict = {
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_, '_3c_Inheritance_3e_' : _Prop__3c_Inheritance_3e_,
'capacity' : capacity, 'capacity' : _Prop_capacity,
'ejectable' : ejectable, 'ejectable' : _Prop_ejectable,
'format' : format, 'format' : _Prop_format,
'free_space' : free_space, 'free_space' : _Prop_free_space,
'ignore_privileges' : ignore_privileges, 'ignore_privileges' : _Prop_ignore_privileges,
'local_volume' : local_volume, 'local_volume' : _Prop_local_volume,
'properties' : properties, 'properties' : _Prop_properties,
'startup' : startup, 'startup' : _Prop_startup,
} }
disk._privelemdict = { disk._privelemdict = {
'alias' : alias, 'alias' : alias,
@ -224,8 +224,8 @@ disk._privelemdict = {
} }
folder._superclassnames = ['item'] folder._superclassnames = ['item']
folder._privpropdict = { folder._privpropdict = {
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_, '_3c_Inheritance_3e_' : _Prop__3c_Inheritance_3e_,
'properties' : properties, 'properties' : _Prop_properties,
} }
folder._privelemdict = { folder._privelemdict = {
'alias' : alias, 'alias' : alias,
@ -235,34 +235,34 @@ folder._privelemdict = {
} }
item._superclassnames = [] item._superclassnames = []
item._privpropdict = { item._privpropdict = {
'POSIX_path' : POSIX_path, 'POSIX_path' : _Prop_POSIX_path,
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_, '_3c_Inheritance_3e_' : _Prop__3c_Inheritance_3e_,
'busy_status' : busy_status, 'busy_status' : _Prop_busy_status,
'creation_date' : creation_date, 'creation_date' : _Prop_creation_date,
'displayed_name' : displayed_name, 'displayed_name' : _Prop_displayed_name,
'modification_date' : modification_date, 'modification_date' : _Prop_modification_date,
'name' : name, 'name' : _Prop_name,
'name_extension' : name_extension, 'name_extension' : _Prop_name_extension,
'package_folder' : package_folder, 'package_folder' : _Prop_package_folder,
'path' : path, 'path' : _Prop_path,
'properties' : properties, 'properties' : _Prop_properties,
'url' : url, 'url' : _Prop_url,
'visible' : visible, 'visible' : _Prop_visible,
'volume' : volume, 'volume' : _Prop_volume,
} }
item._privelemdict = { item._privelemdict = {
} }
file._superclassnames = ['item'] file._superclassnames = ['item']
file._privpropdict = { file._privpropdict = {
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_, '_3c_Inheritance_3e_' : _Prop__3c_Inheritance_3e_,
'creator_type' : creator_type, 'creator_type' : _Prop_creator_type,
'file_type' : file_type, 'file_type' : _Prop_file_type,
'physical_size' : physical_size, 'physical_size' : _Prop_physical_size,
'product_version' : product_version, 'product_version' : _Prop_product_version,
'properties' : properties, 'properties' : _Prop_properties,
'size' : size, 'size' : _Prop_size,
'stationery' : stationery, 'stationery' : _Prop_stationery,
'version' : version, 'version' : _Prop_version,
} }
file._privelemdict = { file._privelemdict = {
} }
@ -295,41 +295,3 @@ _classdeclarations = {
'cobj' : item, 'cobj' : item,
'file' : file, 'file' : file,
} }
_propdeclarations = {
'ascd' : creation_date,
'asmo' : modification_date,
'asty' : file_type,
'busy' : busy_status,
'c@#^' : _3c_Inheritance_3e_,
'capa' : capacity,
'dfmt' : format,
'dnam' : displayed_name,
'extn' : name_extension,
'fcrt' : creator_type,
'frsp' : free_space,
'igpr' : ignore_privileges,
'isej' : ejectable,
'isrv' : local_volume,
'istd' : startup,
'pALL' : properties,
'phys' : physical_size,
'pkgf' : package_folder,
'pnam' : name,
'posx' : POSIX_path,
'ppth' : path,
'pspd' : stationery,
'ptsz' : size,
'pvis' : visible,
'url ' : url,
'ver2' : product_version,
'vers' : version,
'volu' : volume,
}
_compdeclarations = {
}
_enumdeclarations = {
'edfm' : _Enum_edfm,
}

View file

@ -150,27 +150,27 @@ class Folder_Actions_Suite_Events:
class folder_action(aetools.ComponentItem): class folder_action(aetools.ComponentItem):
"""folder action - An action attached to a folder in the file system """ """folder action - An action attached to a folder in the file system """
want = 'foac' want = 'foac'
class _3c_Inheritance_3e_(aetools.NProperty): class _Prop__3c_Inheritance_3e_(aetools.NProperty):
"""<Inheritance> - All of the properties of the superclass. """ """<Inheritance> - All of the properties of the superclass. """
which = 'c@#^' which = 'c@#^'
want = 'cobj' want = 'cobj'
class enabled(aetools.NProperty): class _Prop_enabled(aetools.NProperty):
"""enabled - Is the folder action enabled? """ """enabled - Is the folder action enabled? """
which = 'enaB' which = 'enaB'
want = 'bool' want = 'bool'
class name(aetools.NProperty): class _Prop_name(aetools.NProperty):
"""name - the name of the folder action, which is also the name of the folder """ """name - the name of the folder action, which is also the name of the folder """
which = 'pnam' which = 'pnam'
want = 'utxt' want = 'utxt'
class path(aetools.NProperty): class _Prop_path(aetools.NProperty):
"""path - the path to the folder to which the folder action applies """ """path - the path to the folder to which the folder action applies """
which = 'ppth' which = 'ppth'
want = '****' want = '****'
class properties(aetools.NProperty): class _Prop_properties(aetools.NProperty):
"""properties - every property of the folder action """ """properties - every property of the folder action """
which = 'pALL' which = 'pALL'
want = '****' want = '****'
class volume(aetools.NProperty): class _Prop_volume(aetools.NProperty):
"""volume - the volume on which the folder action resides """ """volume - the volume on which the folder action resides """
which = 'volu' which = 'volu'
want = 'utxt' want = 'utxt'
@ -181,7 +181,7 @@ folder_actions = folder_action
class script(aetools.ComponentItem): class script(aetools.ComponentItem):
"""script - A script invoked by a folder action """ """script - A script invoked by a folder action """
want = 'scpt' want = 'scpt'
class POSIX_path(aetools.NProperty): class _Prop_POSIX_path(aetools.NProperty):
"""POSIX path - the POSIX file system path of the disk """ """POSIX path - the POSIX file system path of the disk """
which = 'posx' which = 'posx'
want = 'utxt' want = 'utxt'
@ -190,23 +190,23 @@ scripts = script
import Standard_Suite import Standard_Suite
folder_action._superclassnames = ['item'] folder_action._superclassnames = ['item']
folder_action._privpropdict = { folder_action._privpropdict = {
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_, '_3c_Inheritance_3e_' : _Prop__3c_Inheritance_3e_,
'enabled' : enabled, 'enabled' : _Prop_enabled,
'name' : name, 'name' : _Prop_name,
'path' : path, 'path' : _Prop_path,
'properties' : properties, 'properties' : _Prop_properties,
'volume' : volume, 'volume' : _Prop_volume,
} }
folder_action._privelemdict = { folder_action._privelemdict = {
'script' : script, 'script' : script,
} }
script._superclassnames = ['item'] script._superclassnames = ['item']
script._privpropdict = { script._privpropdict = {
'POSIX_path' : POSIX_path, 'POSIX_path' : _Prop_POSIX_path,
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_, '_3c_Inheritance_3e_' : _Prop__3c_Inheritance_3e_,
'name' : name, 'name' : _Prop_name,
'path' : path, 'path' : _Prop_path,
'properties' : properties, 'properties' : _Prop_properties,
} }
script._privelemdict = { script._privelemdict = {
} }
@ -226,20 +226,3 @@ _classdeclarations = {
'foac' : folder_action, 'foac' : folder_action,
'scpt' : script, 'scpt' : script,
} }
_propdeclarations = {
'c@#^' : _3c_Inheritance_3e_,
'enaB' : enabled,
'pALL' : properties,
'pnam' : name,
'posx' : POSIX_path,
'ppth' : path,
'volu' : volume,
}
_compdeclarations = {
}
_enumdeclarations = {
'actn' : _Enum_actn,
}

View file

@ -39,12 +39,3 @@ class Hidden_Suite_Events(Type_Names_Suite_Events):
# #
_classdeclarations = { _classdeclarations = {
} }
_propdeclarations = {
}
_compdeclarations = {
}
_enumdeclarations = {
}

View file

@ -18,23 +18,23 @@ class Login_Items_Suite_Events:
class login_item(aetools.ComponentItem): class login_item(aetools.ComponentItem):
"""login item - an item to be launched or opened at login """ """login item - an item to be launched or opened at login """
want = 'logi' want = 'logi'
class _3c_Inheritance_3e_(aetools.NProperty): class _Prop__3c_Inheritance_3e_(aetools.NProperty):
"""<Inheritance> - All of the properties of the superclass. """ """<Inheritance> - All of the properties of the superclass. """
which = 'c@#^' which = 'c@#^'
want = 'cobj' want = 'cobj'
class hidden(aetools.NProperty): class _Prop_hidden(aetools.NProperty):
"""hidden - Is the Login Item hidden when launched? """ """hidden - Is the Login Item hidden when launched? """
which = 'hidn' which = 'hidn'
want = 'bool' want = 'bool'
class kind(aetools.NProperty): class _Prop_kind(aetools.NProperty):
"""kind - the file type of the Login Item """ """kind - the file type of the Login Item """
which = 'kind' which = 'kind'
want = 'utxt' want = 'utxt'
class name(aetools.NProperty): class _Prop_name(aetools.NProperty):
"""name - the name of the Login Item """ """name - the name of the Login Item """
which = 'pnam' which = 'pnam'
want = 'utxt' want = 'utxt'
class path(aetools.NProperty): class _Prop_path(aetools.NProperty):
"""path - the file system path to the Login Item """ """path - the file system path to the Login Item """
which = 'ppth' which = 'ppth'
want = 'utxt' want = 'utxt'
@ -43,11 +43,11 @@ login_items = login_item
import Standard_Suite import Standard_Suite
login_item._superclassnames = ['item'] login_item._superclassnames = ['item']
login_item._privpropdict = { login_item._privpropdict = {
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_, '_3c_Inheritance_3e_' : _Prop__3c_Inheritance_3e_,
'hidden' : hidden, 'hidden' : _Prop_hidden,
'kind' : kind, 'kind' : _Prop_kind,
'name' : name, 'name' : _Prop_name,
'path' : path, 'path' : _Prop_path,
} }
login_item._privelemdict = { login_item._privelemdict = {
} }
@ -58,17 +58,3 @@ login_item._privelemdict = {
_classdeclarations = { _classdeclarations = {
'logi' : login_item, 'logi' : login_item,
} }
_propdeclarations = {
'c@#^' : _3c_Inheritance_3e_,
'hidn' : hidden,
'kind' : kind,
'pnam' : name,
'ppth' : path,
}
_compdeclarations = {
}
_enumdeclarations = {
}

View file

@ -78,12 +78,3 @@ class Power_Suite_Events:
# #
_classdeclarations = { _classdeclarations = {
} }
_propdeclarations = {
}
_compdeclarations = {
}
_enumdeclarations = {
}

View file

@ -227,7 +227,7 @@ class Processes_Suite_Events:
class browser(aetools.ComponentItem): class browser(aetools.ComponentItem):
"""browser - A browser belonging to a window """ """browser - A browser belonging to a window """
want = 'broW' want = 'broW'
class _3c_Inheritance_3e_(aetools.NProperty): class _Prop__3c_Inheritance_3e_(aetools.NProperty):
"""<Inheritance> - All of the properties of the superclass. """ """<Inheritance> - All of the properties of the superclass. """
which = 'c@#^' which = 'c@#^'
want = 'uiel' want = 'uiel'
@ -1206,7 +1206,7 @@ outlines = outline
class application_process(aetools.ComponentItem): class application_process(aetools.ComponentItem):
"""application process - A process launched from an application file """ """application process - A process launched from an application file """
want = 'pcap' want = 'pcap'
class application_file(aetools.NProperty): class _Prop_application_file(aetools.NProperty):
"""application file - a reference to the application file from which this process was launched """ """application file - a reference to the application file from which this process was launched """
which = 'appf' which = 'appf'
want = '****' want = '****'
@ -1259,7 +1259,7 @@ application_processes = application_process
class desk_accessory_process(aetools.ComponentItem): class desk_accessory_process(aetools.ComponentItem):
"""desk accessory process - A process launched from an desk accessory file """ """desk accessory process - A process launched from an desk accessory file """
want = 'pcda' want = 'pcda'
class desk_accessory_file(aetools.NProperty): class _Prop_desk_accessory_file(aetools.NProperty):
"""desk accessory file - a reference to the desk accessory file from which this process was launched """ """desk accessory file - a reference to the desk accessory file from which this process was launched """
which = 'dafi' which = 'dafi'
want = '****' want = '****'
@ -1359,59 +1359,59 @@ pop_up_buttons = pop_up_button
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 Classic(aetools.NProperty): class _Prop_Classic(aetools.NProperty):
"""Classic - Is the process running in the Classic environment? """ """Classic - Is the process running in the Classic environment? """
which = 'clsc' which = 'clsc'
want = 'bool' want = 'bool'
class accepts_high_level_events(aetools.NProperty): class _Prop_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'
want = 'bool' want = 'bool'
class accepts_remote_events(aetools.NProperty): class _Prop_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): class _Prop_creator_type(aetools.NProperty):
"""creator type - the OSType of the creator of the process (the signature) """ """creator type - the OSType of the creator of the process (the signature) """
which = 'fcrt' which = 'fcrt'
want = 'utxt' want = 'utxt'
class displayed_name(aetools.NProperty): class _Prop_displayed_name(aetools.NProperty):
"""displayed name - the name of the file from which the process was launched, as displayed in the User Interface """ """displayed name - the name of the file from which the process was launched, as displayed in the User Interface """
which = 'dnam' which = 'dnam'
want = 'utxt' want = 'utxt'
class file(aetools.NProperty): class _Prop_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'
want = '****' want = '****'
class file_type(aetools.NProperty): class _Prop_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 = 'utxt' want = 'utxt'
class frontmost(aetools.NProperty): class _Prop_frontmost(aetools.NProperty):
"""frontmost - Is the process the frontmost process """ """frontmost - Is the process the frontmost process """
which = 'pisf' which = 'pisf'
want = 'bool' want = 'bool'
class has_scripting_terminology(aetools.NProperty): class _Prop_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 name(aetools.NProperty): class _Prop_name(aetools.NProperty):
"""name - the name of the process """ """name - the name of the process """
which = 'pnam' which = 'pnam'
want = 'utxt' want = 'utxt'
class partition_space_used(aetools.NProperty): class _Prop_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 = 'magn' want = 'magn'
class properties(aetools.NProperty): class _Prop_properties(aetools.NProperty):
"""properties - every property of the process """ """properties - every property of the process """
which = 'pALL' which = 'pALL'
want = '****' want = '****'
class total_partition_size(aetools.NProperty): class _Prop_total_partition_size(aetools.NProperty):
"""total partition size - the size of the partition with which the process was launched """ """total partition size - the size of the partition with which the process was launched """
which = 'appt' which = 'appt'
want = 'magn' want = 'magn'
class visible(aetools.NProperty): class _Prop_visible(aetools.NProperty):
"""visible - Is the process' layer visible? """ """visible - Is the process' layer visible? """
which = 'pvis' which = 'pvis'
want = 'bool' want = 'bool'
@ -2314,63 +2314,63 @@ text_fields = text_field
class UI_element(aetools.ComponentItem): class UI_element(aetools.ComponentItem):
"""UI element - A piece of the user interface of a process """ """UI element - A piece of the user interface of a process """
want = 'uiel' want = 'uiel'
class class_(aetools.NProperty): class _Prop_class_(aetools.NProperty):
"""class - the class of the UI Element, which identifies it function """ """class - the class of the UI Element, which identifies it function """
which = 'pcls' which = 'pcls'
want = 'type' want = 'type'
class description(aetools.NProperty): class _Prop_description(aetools.NProperty):
"""description - a more complete description of the UI element and its capabilities """ """description - a more complete description of the UI element and its capabilities """
which = 'desc' which = 'desc'
want = 'utxt' want = 'utxt'
class enabled(aetools.NProperty): class _Prop_enabled(aetools.NProperty):
"""enabled - Is the UI element enabled? ( Does it accept clicks? ) """ """enabled - Is the UI element enabled? ( Does it accept clicks? ) """
which = 'enab' which = 'enab'
want = 'bool' want = 'bool'
class focused(aetools.NProperty): class _Prop_focused(aetools.NProperty):
"""focused - Is the focus on this UI element? """ """focused - Is the focus on this UI element? """
which = 'focu' which = 'focu'
want = 'bool' want = 'bool'
class help(aetools.NProperty): class _Prop_help(aetools.NProperty):
"""help - an encoded description of the UI element and its capabilities """ """help - an encoded description of the UI element and its capabilities """
which = 'help' which = 'help'
want = 'utxt' want = 'utxt'
class maximum(aetools.NProperty): class _Prop_maximum(aetools.NProperty):
"""maximum - the maximum vale that the UI element can take on """ """maximum - the maximum vale that the UI element can take on """
which = 'maxi' which = 'maxi'
want = 'long' want = 'long'
class minimum(aetools.NProperty): class _Prop_minimum(aetools.NProperty):
"""minimum - the minimum vale that the UI element can take on """ """minimum - the minimum vale that the UI element can take on """
which = 'mini' which = 'mini'
want = 'long' want = 'long'
class orientation(aetools.NProperty): class _Prop_orientation(aetools.NProperty):
"""orientation - the orientation of the UI element """ """orientation - the orientation of the UI element """
which = 'orie' which = 'orie'
want = 'utxt' want = 'utxt'
class position(aetools.NProperty): class _Prop_position(aetools.NProperty):
"""position - the position of the UI element """ """position - the position of the UI element """
which = 'posn' which = 'posn'
want = 'QDpt' want = 'QDpt'
class role(aetools.NProperty): class _Prop_role(aetools.NProperty):
"""role - an encoded description of the UI element and its capabilities """ """role - an encoded description of the UI element and its capabilities """
which = 'role' which = 'role'
want = 'utxt' want = 'utxt'
class selected(aetools.NProperty): class _Prop_selected(aetools.NProperty):
"""selected - Is the UI element selected? """ """selected - Is the UI element selected? """
which = 'selE' which = 'selE'
want = '****' want = '****'
class size(aetools.NProperty): class _Prop_size(aetools.NProperty):
"""size - the size of the UI element """ """size - the size of the UI element """
which = 'ptsz' which = 'ptsz'
want = 'QDpt' want = 'QDpt'
class subrole(aetools.NProperty): class _Prop_subrole(aetools.NProperty):
"""subrole - an encoded description of the UI element and its capabilities """ """subrole - an encoded description of the UI element and its capabilities """
which = 'sbrl' which = 'sbrl'
want = 'utxt' want = 'utxt'
class title(aetools.NProperty): class _Prop_title(aetools.NProperty):
"""title - the title of the UI element as it appears on the screen """ """title - the title of the UI element as it appears on the screen """
which = 'titl' which = 'titl'
want = 'utxt' want = 'utxt'
class value(aetools.NProperty): class _Prop_value(aetools.NProperty):
"""value - the current value of the UI element """ """value - the current value of the UI element """
which = 'valu' which = 'valu'
want = 'long' want = 'long'
@ -2466,7 +2466,7 @@ class value_indicator(aetools.ComponentItem):
value_indicators = value_indicator value_indicators = value_indicator
browser._superclassnames = ['UI_element'] browser._superclassnames = ['UI_element']
browser._privpropdict = { browser._privpropdict = {
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_, '_3c_Inheritance_3e_' : _Prop__3c_Inheritance_3e_,
} }
browser._privelemdict = { browser._privelemdict = {
'UI_element' : UI_element, 'UI_element' : UI_element,
@ -2513,7 +2513,7 @@ browser._privelemdict = {
} }
busy_indicator._superclassnames = ['UI_element'] busy_indicator._superclassnames = ['UI_element']
busy_indicator._privpropdict = { busy_indicator._privpropdict = {
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_, '_3c_Inheritance_3e_' : _Prop__3c_Inheritance_3e_,
} }
busy_indicator._privelemdict = { busy_indicator._privelemdict = {
'UI_element' : UI_element, 'UI_element' : UI_element,
@ -2560,7 +2560,7 @@ busy_indicator._privelemdict = {
} }
button._superclassnames = ['UI_element'] button._superclassnames = ['UI_element']
button._privpropdict = { button._privpropdict = {
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_, '_3c_Inheritance_3e_' : _Prop__3c_Inheritance_3e_,
} }
button._privelemdict = { button._privelemdict = {
'UI_element' : UI_element, 'UI_element' : UI_element,
@ -2607,7 +2607,7 @@ button._privelemdict = {
} }
application._superclassnames = ['UI_element'] application._superclassnames = ['UI_element']
application._privpropdict = { application._privpropdict = {
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_, '_3c_Inheritance_3e_' : _Prop__3c_Inheritance_3e_,
} }
application._privelemdict = { application._privelemdict = {
'UI_element' : UI_element, 'UI_element' : UI_element,
@ -2654,7 +2654,7 @@ application._privelemdict = {
} }
column._superclassnames = ['UI_element'] column._superclassnames = ['UI_element']
column._privpropdict = { column._privpropdict = {
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_, '_3c_Inheritance_3e_' : _Prop__3c_Inheritance_3e_,
} }
column._privelemdict = { column._privelemdict = {
'UI_element' : UI_element, 'UI_element' : UI_element,
@ -2701,7 +2701,7 @@ column._privelemdict = {
} }
check_box._superclassnames = ['UI_element'] check_box._superclassnames = ['UI_element']
check_box._privpropdict = { check_box._privpropdict = {
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_, '_3c_Inheritance_3e_' : _Prop__3c_Inheritance_3e_,
} }
check_box._privelemdict = { check_box._privelemdict = {
'UI_element' : UI_element, 'UI_element' : UI_element,
@ -2748,7 +2748,7 @@ check_box._privelemdict = {
} }
color_well._superclassnames = ['UI_element'] color_well._superclassnames = ['UI_element']
color_well._privpropdict = { color_well._privpropdict = {
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_, '_3c_Inheritance_3e_' : _Prop__3c_Inheritance_3e_,
} }
color_well._privelemdict = { color_well._privelemdict = {
'UI_element' : UI_element, 'UI_element' : UI_element,
@ -2795,7 +2795,7 @@ color_well._privelemdict = {
} }
combo_box._superclassnames = ['UI_element'] combo_box._superclassnames = ['UI_element']
combo_box._privpropdict = { combo_box._privpropdict = {
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_, '_3c_Inheritance_3e_' : _Prop__3c_Inheritance_3e_,
} }
combo_box._privelemdict = { combo_box._privelemdict = {
'UI_element' : UI_element, 'UI_element' : UI_element,
@ -2842,7 +2842,7 @@ combo_box._privelemdict = {
} }
row._superclassnames = ['UI_element'] row._superclassnames = ['UI_element']
row._privpropdict = { row._privpropdict = {
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_, '_3c_Inheritance_3e_' : _Prop__3c_Inheritance_3e_,
} }
row._privelemdict = { row._privelemdict = {
'UI_element' : UI_element, 'UI_element' : UI_element,
@ -2889,7 +2889,7 @@ row._privelemdict = {
} }
window._superclassnames = ['UI_element'] window._superclassnames = ['UI_element']
window._privpropdict = { window._privpropdict = {
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_, '_3c_Inheritance_3e_' : _Prop__3c_Inheritance_3e_,
} }
window._privelemdict = { window._privelemdict = {
'UI_element' : UI_element, 'UI_element' : UI_element,
@ -2968,7 +2968,7 @@ window._privelemdict = {
} }
drawer._superclassnames = ['UI_element'] drawer._superclassnames = ['UI_element']
drawer._privpropdict = { drawer._privpropdict = {
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_, '_3c_Inheritance_3e_' : _Prop__3c_Inheritance_3e_,
} }
drawer._privelemdict = { drawer._privelemdict = {
'UI_element' : UI_element, 'UI_element' : UI_element,
@ -3015,7 +3015,7 @@ drawer._privelemdict = {
} }
grow_area._superclassnames = ['UI_element'] grow_area._superclassnames = ['UI_element']
grow_area._privpropdict = { grow_area._privpropdict = {
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_, '_3c_Inheritance_3e_' : _Prop__3c_Inheritance_3e_,
} }
grow_area._privelemdict = { grow_area._privelemdict = {
'UI_element' : UI_element, 'UI_element' : UI_element,
@ -3062,7 +3062,7 @@ grow_area._privelemdict = {
} }
image._superclassnames = ['UI_element'] image._superclassnames = ['UI_element']
image._privpropdict = { image._privpropdict = {
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_, '_3c_Inheritance_3e_' : _Prop__3c_Inheritance_3e_,
} }
image._privelemdict = { image._privelemdict = {
'UI_element' : UI_element, 'UI_element' : UI_element,
@ -3109,7 +3109,7 @@ image._privelemdict = {
} }
incrementor._superclassnames = ['UI_element'] incrementor._superclassnames = ['UI_element']
incrementor._privpropdict = { incrementor._privpropdict = {
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_, '_3c_Inheritance_3e_' : _Prop__3c_Inheritance_3e_,
} }
incrementor._privelemdict = { incrementor._privelemdict = {
'UI_element' : UI_element, 'UI_element' : UI_element,
@ -3156,7 +3156,7 @@ incrementor._privelemdict = {
} }
list._superclassnames = ['UI_element'] list._superclassnames = ['UI_element']
list._privpropdict = { list._privpropdict = {
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_, '_3c_Inheritance_3e_' : _Prop__3c_Inheritance_3e_,
} }
list._privelemdict = { list._privelemdict = {
'UI_element' : UI_element, 'UI_element' : UI_element,
@ -3203,7 +3203,7 @@ list._privelemdict = {
} }
menu_bar._superclassnames = ['UI_element'] menu_bar._superclassnames = ['UI_element']
menu_bar._privpropdict = { menu_bar._privpropdict = {
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_, '_3c_Inheritance_3e_' : _Prop__3c_Inheritance_3e_,
} }
menu_bar._privelemdict = { menu_bar._privelemdict = {
'UI_element' : UI_element, 'UI_element' : UI_element,
@ -3251,7 +3251,7 @@ menu_bar._privelemdict = {
} }
menu_button._superclassnames = ['UI_element'] menu_button._superclassnames = ['UI_element']
menu_button._privpropdict = { menu_button._privpropdict = {
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_, '_3c_Inheritance_3e_' : _Prop__3c_Inheritance_3e_,
} }
menu_button._privelemdict = { menu_button._privelemdict = {
'UI_element' : UI_element, 'UI_element' : UI_element,
@ -3298,7 +3298,7 @@ menu_button._privelemdict = {
} }
menu._superclassnames = ['UI_element'] menu._superclassnames = ['UI_element']
menu._privpropdict = { menu._privpropdict = {
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_, '_3c_Inheritance_3e_' : _Prop__3c_Inheritance_3e_,
} }
menu._privelemdict = { menu._privelemdict = {
'UI_element' : UI_element, 'UI_element' : UI_element,
@ -3346,7 +3346,7 @@ menu._privelemdict = {
} }
menu_item._superclassnames = ['UI_element'] menu_item._superclassnames = ['UI_element']
menu_item._privpropdict = { menu_item._privpropdict = {
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_, '_3c_Inheritance_3e_' : _Prop__3c_Inheritance_3e_,
} }
menu_item._privelemdict = { menu_item._privelemdict = {
'UI_element' : UI_element, 'UI_element' : UI_element,
@ -3394,7 +3394,7 @@ menu_item._privelemdict = {
} }
outline._superclassnames = ['UI_element'] outline._superclassnames = ['UI_element']
outline._privpropdict = { outline._privpropdict = {
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_, '_3c_Inheritance_3e_' : _Prop__3c_Inheritance_3e_,
} }
outline._privelemdict = { outline._privelemdict = {
'UI_element' : UI_element, 'UI_element' : UI_element,
@ -3441,8 +3441,8 @@ outline._privelemdict = {
} }
application_process._superclassnames = ['process'] application_process._superclassnames = ['process']
application_process._privpropdict = { application_process._privpropdict = {
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_, '_3c_Inheritance_3e_' : _Prop__3c_Inheritance_3e_,
'application_file' : application_file, 'application_file' : _Prop_application_file,
} }
application_process._privelemdict = { application_process._privelemdict = {
'UI_element' : UI_element, 'UI_element' : UI_element,
@ -3491,8 +3491,8 @@ application_process._privelemdict = {
} }
desk_accessory_process._superclassnames = ['process'] desk_accessory_process._superclassnames = ['process']
desk_accessory_process._privpropdict = { desk_accessory_process._privpropdict = {
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_, '_3c_Inheritance_3e_' : _Prop__3c_Inheritance_3e_,
'desk_accessory_file' : desk_accessory_file, 'desk_accessory_file' : _Prop_desk_accessory_file,
} }
desk_accessory_process._privelemdict = { desk_accessory_process._privelemdict = {
'UI_element' : UI_element, 'UI_element' : UI_element,
@ -3541,7 +3541,7 @@ desk_accessory_process._privelemdict = {
} }
pop_up_button._superclassnames = ['UI_element'] pop_up_button._superclassnames = ['UI_element']
pop_up_button._privpropdict = { pop_up_button._privpropdict = {
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_, '_3c_Inheritance_3e_' : _Prop__3c_Inheritance_3e_,
} }
pop_up_button._privelemdict = { pop_up_button._privelemdict = {
'UI_element' : UI_element, 'UI_element' : UI_element,
@ -3588,21 +3588,21 @@ pop_up_button._privelemdict = {
} }
process._superclassnames = ['UI_element'] process._superclassnames = ['UI_element']
process._privpropdict = { process._privpropdict = {
'Classic' : Classic, 'Classic' : _Prop_Classic,
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_, '_3c_Inheritance_3e_' : _Prop__3c_Inheritance_3e_,
'accepts_high_level_events' : accepts_high_level_events, 'accepts_high_level_events' : _Prop_accepts_high_level_events,
'accepts_remote_events' : accepts_remote_events, 'accepts_remote_events' : _Prop_accepts_remote_events,
'creator_type' : creator_type, 'creator_type' : _Prop_creator_type,
'displayed_name' : displayed_name, 'displayed_name' : _Prop_displayed_name,
'file' : file, 'file' : _Prop_file,
'file_type' : file_type, 'file_type' : _Prop_file_type,
'frontmost' : frontmost, 'frontmost' : _Prop_frontmost,
'has_scripting_terminology' : has_scripting_terminology, 'has_scripting_terminology' : _Prop_has_scripting_terminology,
'name' : name, 'name' : _Prop_name,
'partition_space_used' : partition_space_used, 'partition_space_used' : _Prop_partition_space_used,
'properties' : properties, 'properties' : _Prop_properties,
'total_partition_size' : total_partition_size, 'total_partition_size' : _Prop_total_partition_size,
'visible' : visible, 'visible' : _Prop_visible,
} }
process._privelemdict = { process._privelemdict = {
'UI_element' : UI_element, 'UI_element' : UI_element,
@ -3651,7 +3651,7 @@ process._privelemdict = {
} }
progress_indicator._superclassnames = ['UI_element'] progress_indicator._superclassnames = ['UI_element']
progress_indicator._privpropdict = { progress_indicator._privpropdict = {
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_, '_3c_Inheritance_3e_' : _Prop__3c_Inheritance_3e_,
} }
progress_indicator._privelemdict = { progress_indicator._privelemdict = {
'UI_element' : UI_element, 'UI_element' : UI_element,
@ -3698,7 +3698,7 @@ progress_indicator._privelemdict = {
} }
radio_button._superclassnames = ['UI_element'] radio_button._superclassnames = ['UI_element']
radio_button._privpropdict = { radio_button._privpropdict = {
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_, '_3c_Inheritance_3e_' : _Prop__3c_Inheritance_3e_,
} }
radio_button._privelemdict = { radio_button._privelemdict = {
'UI_element' : UI_element, 'UI_element' : UI_element,
@ -3745,7 +3745,7 @@ radio_button._privelemdict = {
} }
relevance_indicator._superclassnames = ['UI_element'] relevance_indicator._superclassnames = ['UI_element']
relevance_indicator._privpropdict = { relevance_indicator._privpropdict = {
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_, '_3c_Inheritance_3e_' : _Prop__3c_Inheritance_3e_,
} }
relevance_indicator._privelemdict = { relevance_indicator._privelemdict = {
'UI_element' : UI_element, 'UI_element' : UI_element,
@ -3792,7 +3792,7 @@ relevance_indicator._privelemdict = {
} }
radio_group._superclassnames = ['UI_element'] radio_group._superclassnames = ['UI_element']
radio_group._privpropdict = { radio_group._privpropdict = {
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_, '_3c_Inheritance_3e_' : _Prop__3c_Inheritance_3e_,
} }
radio_group._privelemdict = { radio_group._privelemdict = {
'UI_element' : UI_element, 'UI_element' : UI_element,
@ -3840,7 +3840,7 @@ radio_group._privelemdict = {
} }
scroll_area._superclassnames = ['UI_element'] scroll_area._superclassnames = ['UI_element']
scroll_area._privpropdict = { scroll_area._privpropdict = {
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_, '_3c_Inheritance_3e_' : _Prop__3c_Inheritance_3e_,
} }
scroll_area._privelemdict = { scroll_area._privelemdict = {
'UI_element' : UI_element, 'UI_element' : UI_element,
@ -3887,7 +3887,7 @@ scroll_area._privelemdict = {
} }
scroll_bar._superclassnames = ['UI_element'] scroll_bar._superclassnames = ['UI_element']
scroll_bar._privpropdict = { scroll_bar._privpropdict = {
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_, '_3c_Inheritance_3e_' : _Prop__3c_Inheritance_3e_,
} }
scroll_bar._privelemdict = { scroll_bar._privelemdict = {
'UI_element' : UI_element, 'UI_element' : UI_element,
@ -3936,7 +3936,7 @@ scroll_bar._privelemdict = {
} }
group._superclassnames = ['UI_element'] group._superclassnames = ['UI_element']
group._privpropdict = { group._privpropdict = {
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_, '_3c_Inheritance_3e_' : _Prop__3c_Inheritance_3e_,
} }
group._privelemdict = { group._privelemdict = {
'UI_element' : UI_element, 'UI_element' : UI_element,
@ -3985,7 +3985,7 @@ group._privelemdict = {
} }
sheet._superclassnames = ['UI_element'] sheet._superclassnames = ['UI_element']
sheet._privpropdict = { sheet._privpropdict = {
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_, '_3c_Inheritance_3e_' : _Prop__3c_Inheritance_3e_,
} }
sheet._privelemdict = { sheet._privelemdict = {
'UI_element' : UI_element, 'UI_element' : UI_element,
@ -4032,7 +4032,7 @@ sheet._privelemdict = {
} }
slider._superclassnames = ['UI_element'] slider._superclassnames = ['UI_element']
slider._privpropdict = { slider._privpropdict = {
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_, '_3c_Inheritance_3e_' : _Prop__3c_Inheritance_3e_,
} }
slider._privelemdict = { slider._privelemdict = {
'UI_element' : UI_element, 'UI_element' : UI_element,
@ -4079,7 +4079,7 @@ slider._privelemdict = {
} }
splitter_group._superclassnames = ['UI_element'] splitter_group._superclassnames = ['UI_element']
splitter_group._privpropdict = { splitter_group._privpropdict = {
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_, '_3c_Inheritance_3e_' : _Prop__3c_Inheritance_3e_,
} }
splitter_group._privelemdict = { splitter_group._privelemdict = {
'UI_element' : UI_element, 'UI_element' : UI_element,
@ -4126,7 +4126,7 @@ splitter_group._privelemdict = {
} }
splitter._superclassnames = ['UI_element'] splitter._superclassnames = ['UI_element']
splitter._privpropdict = { splitter._privpropdict = {
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_, '_3c_Inheritance_3e_' : _Prop__3c_Inheritance_3e_,
} }
splitter._privelemdict = { splitter._privelemdict = {
'UI_element' : UI_element, 'UI_element' : UI_element,
@ -4173,7 +4173,7 @@ splitter._privelemdict = {
} }
static_text._superclassnames = ['UI_element'] static_text._superclassnames = ['UI_element']
static_text._privpropdict = { static_text._privpropdict = {
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_, '_3c_Inheritance_3e_' : _Prop__3c_Inheritance_3e_,
} }
static_text._privelemdict = { static_text._privelemdict = {
'UI_element' : UI_element, 'UI_element' : UI_element,
@ -4221,7 +4221,7 @@ static_text._privelemdict = {
} }
system_wide_UI_element._superclassnames = ['UI_element'] system_wide_UI_element._superclassnames = ['UI_element']
system_wide_UI_element._privpropdict = { system_wide_UI_element._privpropdict = {
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_, '_3c_Inheritance_3e_' : _Prop__3c_Inheritance_3e_,
} }
system_wide_UI_element._privelemdict = { system_wide_UI_element._privelemdict = {
'UI_element' : UI_element, 'UI_element' : UI_element,
@ -4268,7 +4268,7 @@ system_wide_UI_element._privelemdict = {
} }
tab_group._superclassnames = ['UI_element'] tab_group._superclassnames = ['UI_element']
tab_group._privpropdict = { tab_group._privpropdict = {
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_, '_3c_Inheritance_3e_' : _Prop__3c_Inheritance_3e_,
} }
tab_group._privelemdict = { tab_group._privelemdict = {
'UI_element' : UI_element, 'UI_element' : UI_element,
@ -4315,7 +4315,7 @@ tab_group._privelemdict = {
} }
table._superclassnames = ['UI_element'] table._superclassnames = ['UI_element']
table._privpropdict = { table._privpropdict = {
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_, '_3c_Inheritance_3e_' : _Prop__3c_Inheritance_3e_,
} }
table._privelemdict = { table._privelemdict = {
'UI_element' : UI_element, 'UI_element' : UI_element,
@ -4362,7 +4362,7 @@ table._privelemdict = {
} }
tool_bar._superclassnames = ['UI_element'] tool_bar._superclassnames = ['UI_element']
tool_bar._privpropdict = { tool_bar._privpropdict = {
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_, '_3c_Inheritance_3e_' : _Prop__3c_Inheritance_3e_,
} }
tool_bar._privelemdict = { tool_bar._privelemdict = {
'UI_element' : UI_element, 'UI_element' : UI_element,
@ -4409,7 +4409,7 @@ tool_bar._privelemdict = {
} }
text_area._superclassnames = ['UI_element'] text_area._superclassnames = ['UI_element']
text_area._privpropdict = { text_area._privpropdict = {
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_, '_3c_Inheritance_3e_' : _Prop__3c_Inheritance_3e_,
} }
text_area._privelemdict = { text_area._privelemdict = {
'UI_element' : UI_element, 'UI_element' : UI_element,
@ -4456,7 +4456,7 @@ text_area._privelemdict = {
} }
text_field._superclassnames = ['UI_element'] text_field._superclassnames = ['UI_element']
text_field._privpropdict = { text_field._privpropdict = {
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_, '_3c_Inheritance_3e_' : _Prop__3c_Inheritance_3e_,
} }
text_field._privelemdict = { text_field._privelemdict = {
'UI_element' : UI_element, 'UI_element' : UI_element,
@ -4504,23 +4504,23 @@ text_field._privelemdict = {
import Standard_Suite import Standard_Suite
UI_element._superclassnames = ['item'] UI_element._superclassnames = ['item']
UI_element._privpropdict = { UI_element._privpropdict = {
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_, '_3c_Inheritance_3e_' : _Prop__3c_Inheritance_3e_,
'class_' : class_, 'class_' : _Prop_class_,
'description' : description, 'description' : _Prop_description,
'enabled' : enabled, 'enabled' : _Prop_enabled,
'focused' : focused, 'focused' : _Prop_focused,
'help' : help, 'help' : _Prop_help,
'maximum' : maximum, 'maximum' : _Prop_maximum,
'minimum' : minimum, 'minimum' : _Prop_minimum,
'name' : name, 'name' : _Prop_name,
'orientation' : orientation, 'orientation' : _Prop_orientation,
'position' : position, 'position' : _Prop_position,
'role' : role, 'role' : _Prop_role,
'selected' : selected, 'selected' : _Prop_selected,
'size' : size, 'size' : _Prop_size,
'subrole' : subrole, 'subrole' : _Prop_subrole,
'title' : title, 'title' : _Prop_title,
'value' : value, 'value' : _Prop_value,
} }
UI_element._privelemdict = { UI_element._privelemdict = {
'UI_element' : UI_element, 'UI_element' : UI_element,
@ -4567,7 +4567,7 @@ UI_element._privelemdict = {
} }
value_indicator._superclassnames = ['UI_element'] value_indicator._superclassnames = ['UI_element']
value_indicator._privpropdict = { value_indicator._privpropdict = {
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_, '_3c_Inheritance_3e_' : _Prop__3c_Inheritance_3e_,
} }
value_indicator._privelemdict = { value_indicator._privelemdict = {
'UI_element' : UI_element, 'UI_element' : UI_element,
@ -4676,46 +4676,3 @@ _classdeclarations = {
'uiel' : UI_element, 'uiel' : UI_element,
'vali' : value_indicator, 'vali' : value_indicator,
} }
_propdeclarations = {
'appf' : application_file,
'appt' : total_partition_size,
'asty' : file_type,
'c@#^' : _3c_Inheritance_3e_,
'clsc' : Classic,
'dafi' : desk_accessory_file,
'desc' : description,
'dnam' : displayed_name,
'enab' : enabled,
'fcrt' : creator_type,
'file' : file,
'focu' : focused,
'help' : help,
'hscr' : has_scripting_terminology,
'isab' : accepts_high_level_events,
'maxi' : maximum,
'mini' : minimum,
'orie' : orientation,
'pALL' : properties,
'pcls' : class_,
'pisf' : frontmost,
'pnam' : name,
'posn' : position,
'ptsz' : size,
'pusd' : partition_space_used,
'pvis' : visible,
'revt' : accepts_remote_events,
'role' : role,
'sbrl' : subrole,
'selE' : selected,
'titl' : title,
'valu' : value,
}
_compdeclarations = {
}
_enumdeclarations = {
'eMds' : _Enum_eMds,
'eMky' : _Enum_eMky,
}

View file

@ -333,19 +333,19 @@ class Standard_Suite_Events:
class application(aetools.ComponentItem): class application(aetools.ComponentItem):
"""application - An application's top level scripting object. """ """application - An application's top level scripting object. """
want = 'capp' want = 'capp'
class _3c_Inheritance_3e_(aetools.NProperty): class _Prop__3c_Inheritance_3e_(aetools.NProperty):
"""<Inheritance> - All of the properties of the superclass. """ """<Inheritance> - All of the properties of the superclass. """
which = 'c@#^' which = 'c@#^'
want = 'cobj' want = 'cobj'
class frontmost(aetools.NProperty): class _Prop_frontmost(aetools.NProperty):
"""frontmost - Is this the frontmost (active) application? """ """frontmost - Is this the frontmost (active) application? """
which = 'pisf' which = 'pisf'
want = 'bool' want = 'bool'
class name(aetools.NProperty): class _Prop_name(aetools.NProperty):
"""name - The name of the application. """ """name - The name of the application. """
which = 'pnam' which = 'pnam'
want = 'utxt' want = 'utxt'
class version(aetools.NProperty): class _Prop_version(aetools.NProperty):
"""version - The version of the application. """ """version - The version of the application. """
which = 'vers' which = 'vers'
want = 'utxt' want = 'utxt'
@ -357,11 +357,11 @@ applications = application
class item(aetools.ComponentItem): class item(aetools.ComponentItem):
"""item - A scriptable object. """ """item - A scriptable object. """
want = 'cobj' want = 'cobj'
class class_(aetools.NProperty): class _Prop_class_(aetools.NProperty):
"""class - The class of the object. """ """class - The class of the object. """
which = 'pcls' which = 'pcls'
want = 'type' want = 'type'
class properties(aetools.NProperty): class _Prop_properties(aetools.NProperty):
"""properties - All of the object's properties. """ """properties - All of the object's properties. """
which = 'pALL' which = 'pALL'
want = 'reco' want = 'reco'
@ -377,59 +377,59 @@ colors = color
class window(aetools.ComponentItem): class window(aetools.ComponentItem):
"""window - A window. """ """window - A window. """
want = 'cwin' want = 'cwin'
class bounds(aetools.NProperty): class _Prop_bounds(aetools.NProperty):
"""bounds - The bounding rectangle of the window. """ """bounds - The bounding rectangle of the window. """
which = 'pbnd' which = 'pbnd'
want = 'qdrt' want = 'qdrt'
class closeable(aetools.NProperty): class _Prop_closeable(aetools.NProperty):
"""closeable - Whether the window has a close box. """ """closeable - Whether the window has a close box. """
which = 'hclb' which = 'hclb'
want = 'bool' want = 'bool'
class document(aetools.NProperty): class _Prop_document(aetools.NProperty):
"""document - The document whose contents are being displayed in the window. """ """document - The document whose contents are being displayed in the window. """
which = 'docu' which = 'docu'
want = 'docu' want = 'docu'
class floating(aetools.NProperty): class _Prop_floating(aetools.NProperty):
"""floating - Whether the window floats. """ """floating - Whether the window floats. """
which = 'isfl' which = 'isfl'
want = 'bool' want = 'bool'
class id(aetools.NProperty): class _Prop_id(aetools.NProperty):
"""id - The unique identifier of the window. """ """id - The unique identifier of the window. """
which = 'ID ' which = 'ID '
want = 'long' want = 'long'
class index(aetools.NProperty): class _Prop_index(aetools.NProperty):
"""index - The index of the window in the back-to-front window ordering. """ """index - The index of the window in the back-to-front window ordering. """
which = 'pidx' which = 'pidx'
want = 'long' want = 'long'
class miniaturizable(aetools.NProperty): class _Prop_miniaturizable(aetools.NProperty):
"""miniaturizable - Whether the window can be miniaturized. """ """miniaturizable - Whether the window can be miniaturized. """
which = 'ismn' which = 'ismn'
want = 'bool' want = 'bool'
class miniaturized(aetools.NProperty): class _Prop_miniaturized(aetools.NProperty):
"""miniaturized - Whether the window is currently miniaturized. """ """miniaturized - Whether the window is currently miniaturized. """
which = 'pmnd' which = 'pmnd'
want = 'bool' want = 'bool'
class modal(aetools.NProperty): class _Prop_modal(aetools.NProperty):
"""modal - Whether the window is the application's current modal window. """ """modal - Whether the window is the application's current modal window. """
which = 'pmod' which = 'pmod'
want = 'bool' want = 'bool'
class resizable(aetools.NProperty): class _Prop_resizable(aetools.NProperty):
"""resizable - Whether the window can be resized. """ """resizable - Whether the window can be resized. """
which = 'prsz' which = 'prsz'
want = 'bool' want = 'bool'
class titled(aetools.NProperty): class _Prop_titled(aetools.NProperty):
"""titled - Whether the window has a title bar. """ """titled - Whether the window has a title bar. """
which = 'ptit' which = 'ptit'
want = 'bool' want = 'bool'
class visible(aetools.NProperty): class _Prop_visible(aetools.NProperty):
"""visible - Whether the window is currently visible. """ """visible - Whether the window is currently visible. """
which = 'pvis' which = 'pvis'
want = 'bool' want = 'bool'
class zoomable(aetools.NProperty): class _Prop_zoomable(aetools.NProperty):
"""zoomable - Whether the window can be zoomed. """ """zoomable - Whether the window can be zoomed. """
which = 'iszm' which = 'iszm'
want = 'bool' want = 'bool'
class zoomed(aetools.NProperty): class _Prop_zoomed(aetools.NProperty):
"""zoomed - Whether the window is currently zoomed. """ """zoomed - Whether the window is currently zoomed. """
which = 'pzum' which = 'pzum'
want = 'bool' want = 'bool'
@ -439,11 +439,11 @@ windows = window
class document(aetools.ComponentItem): class document(aetools.ComponentItem):
"""document - A document. """ """document - A document. """
want = 'docu' want = 'docu'
class modified(aetools.NProperty): class _Prop_modified(aetools.NProperty):
"""modified - Has the document been modified since the last save? """ """modified - Has the document been modified since the last save? """
which = 'imod' which = 'imod'
want = 'bool' want = 'bool'
class path(aetools.NProperty): class _Prop_path(aetools.NProperty):
"""path - The document's path. """ """path - The document's path. """
which = 'ppth' which = 'ppth'
want = 'utxt' want = 'utxt'
@ -451,10 +451,10 @@ class path(aetools.NProperty):
documents = document documents = document
application._superclassnames = ['item'] application._superclassnames = ['item']
application._privpropdict = { application._privpropdict = {
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_, '_3c_Inheritance_3e_' : _Prop__3c_Inheritance_3e_,
'frontmost' : frontmost, 'frontmost' : _Prop_frontmost,
'name' : name, 'name' : _Prop_name,
'version' : version, 'version' : _Prop_version,
} }
application._privelemdict = { application._privelemdict = {
'document' : document, 'document' : document,
@ -462,44 +462,44 @@ application._privelemdict = {
} }
item._superclassnames = [] item._superclassnames = []
item._privpropdict = { item._privpropdict = {
'class_' : class_, 'class_' : _Prop_class_,
'properties' : properties, 'properties' : _Prop_properties,
} }
item._privelemdict = { item._privelemdict = {
} }
color._superclassnames = ['item'] color._superclassnames = ['item']
color._privpropdict = { color._privpropdict = {
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_, '_3c_Inheritance_3e_' : _Prop__3c_Inheritance_3e_,
} }
color._privelemdict = { color._privelemdict = {
} }
window._superclassnames = ['item'] window._superclassnames = ['item']
window._privpropdict = { window._privpropdict = {
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_, '_3c_Inheritance_3e_' : _Prop__3c_Inheritance_3e_,
'bounds' : bounds, 'bounds' : _Prop_bounds,
'closeable' : closeable, 'closeable' : _Prop_closeable,
'document' : document, 'document' : _Prop_document,
'floating' : floating, 'floating' : _Prop_floating,
'id' : id, 'id' : _Prop_id,
'index' : index, 'index' : _Prop_index,
'miniaturizable' : miniaturizable, 'miniaturizable' : _Prop_miniaturizable,
'miniaturized' : miniaturized, 'miniaturized' : _Prop_miniaturized,
'modal' : modal, 'modal' : _Prop_modal,
'name' : name, 'name' : _Prop_name,
'resizable' : resizable, 'resizable' : _Prop_resizable,
'titled' : titled, 'titled' : _Prop_titled,
'visible' : visible, 'visible' : _Prop_visible,
'zoomable' : zoomable, 'zoomable' : _Prop_zoomable,
'zoomed' : zoomed, 'zoomed' : _Prop_zoomed,
} }
window._privelemdict = { window._privelemdict = {
} }
document._superclassnames = ['item'] document._superclassnames = ['item']
document._privpropdict = { document._privpropdict = {
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_, '_3c_Inheritance_3e_' : _Prop__3c_Inheritance_3e_,
'modified' : modified, 'modified' : _Prop_modified,
'name' : name, 'name' : _Prop_name,
'path' : path, 'path' : _Prop_path,
} }
document._privelemdict = { document._privelemdict = {
} }
@ -536,43 +536,3 @@ _classdeclarations = {
'cwin' : window, 'cwin' : window,
'docu' : document, 'docu' : document,
} }
_propdeclarations = {
'ID ' : id,
'c@#^' : _3c_Inheritance_3e_,
'docu' : document,
'hclb' : closeable,
'imod' : modified,
'isfl' : floating,
'ismn' : miniaturizable,
'iszm' : zoomable,
'pALL' : properties,
'pbnd' : bounds,
'pcls' : class_,
'pidx' : index,
'pisf' : frontmost,
'pmnd' : miniaturized,
'pmod' : modal,
'pnam' : name,
'ppth' : path,
'prsz' : resizable,
'ptit' : titled,
'pvis' : visible,
'pzum' : zoomed,
'vers' : version,
}
_compdeclarations = {
'< ' : _3c_,
'<= ' : _b2_,
'= ' : _3d_,
'> ' : _3e_,
'>= ' : _b3_,
'bgwt' : starts_with,
'cont' : contains,
'ends' : ends_with,
}
_enumdeclarations = {
'savo' : _Enum_savo,
}

View file

@ -18,19 +18,19 @@ class System_Events_Suite_Events:
class application(aetools.ComponentItem): class application(aetools.ComponentItem):
"""application - The System Events application """ """application - The System Events application """
want = 'capp' want = 'capp'
class _3c_Inheritance_3e_(aetools.NProperty): class _Prop__3c_Inheritance_3e_(aetools.NProperty):
"""<Inheritance> - All of the properties of the superclass. """ """<Inheritance> - All of the properties of the superclass. """
which = 'c@#^' which = 'c@#^'
want = 'capp' want = 'capp'
class folder_actions_enabled(aetools.NProperty): class _Prop_folder_actions_enabled(aetools.NProperty):
"""folder actions enabled - Are Folder Actions currently being processed? """ """folder actions enabled - Are Folder Actions currently being processed? """
which = 'faen' which = 'faen'
want = 'bool' want = 'bool'
class properties(aetools.NProperty): class _Prop_properties(aetools.NProperty):
"""properties - every property of the System Events application """ """properties - every property of the System Events application """
which = 'pALL' which = 'pALL'
want = '****' want = '****'
class system_wide_UI_element(aetools.NProperty): class _Prop_system_wide_UI_element(aetools.NProperty):
"""system wide UI element - the UI element for the entire system """ """system wide UI element - the UI element for the entire system """
which = 'swui' which = 'swui'
want = 'uiel' want = 'uiel'
@ -56,10 +56,10 @@ import Folder_Actions_Suite
import Login_Items_Suite import Login_Items_Suite
import Processes_Suite import Processes_Suite
application._privpropdict = { application._privpropdict = {
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_, '_3c_Inheritance_3e_' : _Prop__3c_Inheritance_3e_,
'folder_actions_enabled' : folder_actions_enabled, 'folder_actions_enabled' : _Prop_folder_actions_enabled,
'properties' : properties, 'properties' : _Prop_properties,
'system_wide_UI_element' : system_wide_UI_element, 'system_wide_UI_element' : _Prop_system_wide_UI_element,
} }
application._privelemdict = { application._privelemdict = {
'UI_element' : Processes_Suite.UI_element, 'UI_element' : Processes_Suite.UI_element,
@ -83,16 +83,3 @@ application._privelemdict = {
_classdeclarations = { _classdeclarations = {
'capp' : application, 'capp' : application,
} }
_propdeclarations = {
'c@#^' : _3c_Inheritance_3e_,
'faen' : folder_actions_enabled,
'pALL' : properties,
'swui' : system_wide_UI_element,
}
_compdeclarations = {
}
_enumdeclarations = {
}

View file

@ -18,11 +18,11 @@ class Text_Suite_Events:
class attachment(aetools.ComponentItem): class attachment(aetools.ComponentItem):
"""attachment - Represents an inline text attachment. This class is used mainly for make commands. """ """attachment - Represents an inline text attachment. This class is used mainly for make commands. """
want = 'atts' want = 'atts'
class _3c_Inheritance_3e_(aetools.NProperty): class _Prop__3c_Inheritance_3e_(aetools.NProperty):
"""<Inheritance> - All of the properties of the superclass. """ """<Inheritance> - All of the properties of the superclass. """
which = 'c@#^' which = 'c@#^'
want = 'ctxt' want = 'ctxt'
class file_name(aetools.NProperty): class _Prop_file_name(aetools.NProperty):
"""file name - The path to the file for the attachment """ """file name - The path to the file for the attachment """
which = 'atfn' which = 'atfn'
want = 'utxt' want = 'utxt'
@ -34,15 +34,15 @@ class file_name(aetools.NProperty):
class attribute_run(aetools.ComponentItem): class attribute_run(aetools.ComponentItem):
"""attribute run - This subdivides the text into chunks that all have the same attributes. """ """attribute run - This subdivides the text into chunks that all have the same attributes. """
want = 'catr' want = 'catr'
class color(aetools.NProperty): class _Prop_color(aetools.NProperty):
"""color - The color of the first character. """ """color - The color of the first character. """
which = 'colr' which = 'colr'
want = 'colr' want = 'colr'
class font(aetools.NProperty): class _Prop_font(aetools.NProperty):
"""font - The name of the font of the first character. """ """font - The name of the font of the first character. """
which = 'font' which = 'font'
want = 'utxt' want = 'utxt'
class size(aetools.NProperty): class _Prop_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 = 'long' want = 'long'
@ -92,8 +92,8 @@ class word(aetools.ComponentItem):
words = word words = word
attachment._superclassnames = ['text'] attachment._superclassnames = ['text']
attachment._privpropdict = { attachment._privpropdict = {
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_, '_3c_Inheritance_3e_' : _Prop__3c_Inheritance_3e_,
'file_name' : file_name, 'file_name' : _Prop_file_name,
} }
attachment._privelemdict = { attachment._privelemdict = {
'attribute_run' : attribute_run, 'attribute_run' : attribute_run,
@ -104,10 +104,10 @@ attachment._privelemdict = {
import Standard_Suite import Standard_Suite
attribute_run._superclassnames = ['item'] attribute_run._superclassnames = ['item']
attribute_run._privpropdict = { attribute_run._privpropdict = {
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_, '_3c_Inheritance_3e_' : _Prop__3c_Inheritance_3e_,
'color' : color, 'color' : _Prop_color,
'font' : font, 'font' : _Prop_font,
'size' : size, 'size' : _Prop_size,
} }
attribute_run._privelemdict = { attribute_run._privelemdict = {
'attribute_run' : attribute_run, 'attribute_run' : attribute_run,
@ -117,10 +117,10 @@ attribute_run._privelemdict = {
} }
character._superclassnames = ['item'] character._superclassnames = ['item']
character._privpropdict = { character._privpropdict = {
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_, '_3c_Inheritance_3e_' : _Prop__3c_Inheritance_3e_,
'color' : color, 'color' : _Prop_color,
'font' : font, 'font' : _Prop_font,
'size' : size, 'size' : _Prop_size,
} }
character._privelemdict = { character._privelemdict = {
'attribute_run' : attribute_run, 'attribute_run' : attribute_run,
@ -130,10 +130,10 @@ character._privelemdict = {
} }
paragraph._superclassnames = ['item'] paragraph._superclassnames = ['item']
paragraph._privpropdict = { paragraph._privpropdict = {
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_, '_3c_Inheritance_3e_' : _Prop__3c_Inheritance_3e_,
'color' : color, 'color' : _Prop_color,
'font' : font, 'font' : _Prop_font,
'size' : size, 'size' : _Prop_size,
} }
paragraph._privelemdict = { paragraph._privelemdict = {
'attribute_run' : attribute_run, 'attribute_run' : attribute_run,
@ -143,10 +143,10 @@ paragraph._privelemdict = {
} }
text._superclassnames = ['item'] text._superclassnames = ['item']
text._privpropdict = { text._privpropdict = {
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_, '_3c_Inheritance_3e_' : _Prop__3c_Inheritance_3e_,
'color' : color, 'color' : _Prop_color,
'font' : font, 'font' : _Prop_font,
'size' : size, 'size' : _Prop_size,
} }
text._privelemdict = { text._privelemdict = {
'attribute_run' : attribute_run, 'attribute_run' : attribute_run,
@ -156,10 +156,10 @@ text._privelemdict = {
} }
word._superclassnames = ['item'] word._superclassnames = ['item']
word._privpropdict = { word._privpropdict = {
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_, '_3c_Inheritance_3e_' : _Prop__3c_Inheritance_3e_,
'color' : color, 'color' : _Prop_color,
'font' : font, 'font' : _Prop_font,
'size' : size, 'size' : _Prop_size,
} }
word._privelemdict = { word._privelemdict = {
'attribute_run' : attribute_run, 'attribute_run' : attribute_run,
@ -179,17 +179,3 @@ _classdeclarations = {
'ctxt' : text, 'ctxt' : text,
'cwor' : word, 'cwor' : word,
} }
_propdeclarations = {
'atfn' : file_name,
'c@#^' : _3c_Inheritance_3e_,
'colr' : color,
'font' : font,
'ptsz' : size,
}
_compdeclarations = {
}
_enumdeclarations = {
}

View file

@ -73,8 +73,6 @@ getbaseclasses(paragraph)
getbaseclasses(word) getbaseclasses(word)
getbaseclasses(attribute_run) getbaseclasses(attribute_run)
getbaseclasses(text) getbaseclasses(text)
getbaseclasses(script)
getbaseclasses(folder_action)
getbaseclasses(file) getbaseclasses(file)
getbaseclasses(alias) getbaseclasses(alias)
getbaseclasses(item) getbaseclasses(item)
@ -85,47 +83,8 @@ getbaseclasses(window)
getbaseclasses(application) getbaseclasses(application)
getbaseclasses(item) getbaseclasses(item)
getbaseclasses(document) getbaseclasses(document)
getbaseclasses(login_item) getbaseclasses(script)
getbaseclasses(StdSuites.Type_Names_Suite.double_integer) getbaseclasses(folder_action)
getbaseclasses(StdSuites.Type_Names_Suite.version)
getbaseclasses(StdSuites.Type_Names_Suite.RGB16_color)
getbaseclasses(StdSuites.Type_Names_Suite.system_dictionary)
getbaseclasses(StdSuites.Type_Names_Suite.color_table)
getbaseclasses(StdSuites.Type_Names_Suite.fixed_point)
getbaseclasses(StdSuites.Type_Names_Suite.TIFF_picture)
getbaseclasses(StdSuites.Type_Names_Suite.type_element_info)
getbaseclasses(StdSuites.Type_Names_Suite.type_event_info)
getbaseclasses(StdSuites.Type_Names_Suite.machine_location)
getbaseclasses(StdSuites.Type_Names_Suite.PostScript_picture)
getbaseclasses(StdSuites.Type_Names_Suite.point)
getbaseclasses(StdSuites.Type_Names_Suite.long_fixed_point)
getbaseclasses(StdSuites.Type_Names_Suite.menu_item)
getbaseclasses(StdSuites.Type_Names_Suite.scrap_styles)
getbaseclasses(StdSuites.Type_Names_Suite.application_dictionary)
getbaseclasses(StdSuites.Type_Names_Suite.unsigned_integer)
getbaseclasses(StdSuites.Type_Names_Suite.menu)
getbaseclasses(StdSuites.Type_Names_Suite.fixed_rectangle)
getbaseclasses(StdSuites.Type_Names_Suite.type_property_info)
getbaseclasses(StdSuites.Type_Names_Suite.long_fixed_rectangle)
getbaseclasses(StdSuites.Type_Names_Suite.long_fixed)
getbaseclasses(StdSuites.Type_Names_Suite.type_suite_info)
getbaseclasses(StdSuites.Type_Names_Suite.rotation)
getbaseclasses(StdSuites.Type_Names_Suite.small_integer)
getbaseclasses(StdSuites.Type_Names_Suite.fixed)
getbaseclasses(StdSuites.Type_Names_Suite.long_point)
getbaseclasses(StdSuites.Type_Names_Suite.type_class_info)
getbaseclasses(StdSuites.Type_Names_Suite.RGB96_color)
getbaseclasses(StdSuites.Type_Names_Suite.target_id)
getbaseclasses(StdSuites.Type_Names_Suite.pixel_map_record)
getbaseclasses(StdSuites.Type_Names_Suite.type_parameter_info)
getbaseclasses(StdSuites.Type_Names_Suite.extended_real)
getbaseclasses(StdSuites.Type_Names_Suite.long_rectangle)
getbaseclasses(StdSuites.Type_Names_Suite.dash_style)
getbaseclasses(StdSuites.Type_Names_Suite.plain_text)
getbaseclasses(StdSuites.Type_Names_Suite.small_real)
getbaseclasses(StdSuites.Type_Names_Suite.null)
getbaseclasses(StdSuites.Type_Names_Suite.location_reference)
getbaseclasses(StdSuites.Type_Names_Suite.bounding_rectangle)
getbaseclasses(window) getbaseclasses(window)
getbaseclasses(radio_button) getbaseclasses(radio_button)
getbaseclasses(list) getbaseclasses(list)
@ -170,7 +129,48 @@ getbaseclasses(color_well)
getbaseclasses(scroll_bar) getbaseclasses(scroll_bar)
getbaseclasses(combo_box) getbaseclasses(combo_box)
getbaseclasses(browser) getbaseclasses(browser)
getbaseclasses(StdSuites.Type_Names_Suite.double_integer)
getbaseclasses(StdSuites.Type_Names_Suite.version)
getbaseclasses(StdSuites.Type_Names_Suite.RGB16_color)
getbaseclasses(StdSuites.Type_Names_Suite.system_dictionary)
getbaseclasses(StdSuites.Type_Names_Suite.color_table)
getbaseclasses(StdSuites.Type_Names_Suite.fixed_point)
getbaseclasses(StdSuites.Type_Names_Suite.TIFF_picture)
getbaseclasses(StdSuites.Type_Names_Suite.type_element_info)
getbaseclasses(StdSuites.Type_Names_Suite.type_event_info)
getbaseclasses(StdSuites.Type_Names_Suite.machine_location)
getbaseclasses(StdSuites.Type_Names_Suite.PostScript_picture)
getbaseclasses(StdSuites.Type_Names_Suite.point)
getbaseclasses(StdSuites.Type_Names_Suite.long_fixed_point)
getbaseclasses(StdSuites.Type_Names_Suite.menu_item)
getbaseclasses(StdSuites.Type_Names_Suite.scrap_styles)
getbaseclasses(StdSuites.Type_Names_Suite.application_dictionary)
getbaseclasses(StdSuites.Type_Names_Suite.unsigned_integer)
getbaseclasses(StdSuites.Type_Names_Suite.menu)
getbaseclasses(StdSuites.Type_Names_Suite.fixed_rectangle)
getbaseclasses(StdSuites.Type_Names_Suite.type_property_info)
getbaseclasses(StdSuites.Type_Names_Suite.long_fixed_rectangle)
getbaseclasses(StdSuites.Type_Names_Suite.long_fixed)
getbaseclasses(StdSuites.Type_Names_Suite.type_suite_info)
getbaseclasses(StdSuites.Type_Names_Suite.rotation)
getbaseclasses(StdSuites.Type_Names_Suite.small_integer)
getbaseclasses(StdSuites.Type_Names_Suite.fixed)
getbaseclasses(StdSuites.Type_Names_Suite.long_point)
getbaseclasses(StdSuites.Type_Names_Suite.type_class_info)
getbaseclasses(StdSuites.Type_Names_Suite.RGB96_color)
getbaseclasses(StdSuites.Type_Names_Suite.target_id)
getbaseclasses(StdSuites.Type_Names_Suite.pixel_map_record)
getbaseclasses(StdSuites.Type_Names_Suite.type_parameter_info)
getbaseclasses(StdSuites.Type_Names_Suite.extended_real)
getbaseclasses(StdSuites.Type_Names_Suite.long_rectangle)
getbaseclasses(StdSuites.Type_Names_Suite.dash_style)
getbaseclasses(StdSuites.Type_Names_Suite.string)
getbaseclasses(StdSuites.Type_Names_Suite.small_real)
getbaseclasses(StdSuites.Type_Names_Suite.null)
getbaseclasses(StdSuites.Type_Names_Suite.location_reference)
getbaseclasses(StdSuites.Type_Names_Suite.bounding_rectangle)
getbaseclasses(application) getbaseclasses(application)
getbaseclasses(login_item)
# #
# Indices of types declared in this module # Indices of types declared in this module
@ -182,8 +182,6 @@ _classdeclarations = {
'cwor' : word, 'cwor' : word,
'catr' : attribute_run, 'catr' : attribute_run,
'ctxt' : text, 'ctxt' : text,
'scpt' : script,
'foac' : folder_action,
'file' : file, 'file' : file,
'alis' : alias, 'alis' : alias,
'cobj' : item, 'cobj' : item,
@ -194,47 +192,8 @@ _classdeclarations = {
'capp' : application, 'capp' : application,
'cobj' : item, 'cobj' : item,
'docu' : document, 'docu' : document,
'logi' : login_item, 'scpt' : script,
'comp' : StdSuites.Type_Names_Suite.double_integer, 'foac' : folder_action,
'vers' : StdSuites.Type_Names_Suite.version,
'tr16' : StdSuites.Type_Names_Suite.RGB16_color,
'aeut' : StdSuites.Type_Names_Suite.system_dictionary,
'clrt' : StdSuites.Type_Names_Suite.color_table,
'fpnt' : StdSuites.Type_Names_Suite.fixed_point,
'TIFF' : StdSuites.Type_Names_Suite.TIFF_picture,
'elin' : StdSuites.Type_Names_Suite.type_element_info,
'evin' : StdSuites.Type_Names_Suite.type_event_info,
'mLoc' : StdSuites.Type_Names_Suite.machine_location,
'EPS ' : StdSuites.Type_Names_Suite.PostScript_picture,
'QDpt' : StdSuites.Type_Names_Suite.point,
'lfpt' : StdSuites.Type_Names_Suite.long_fixed_point,
'cmen' : StdSuites.Type_Names_Suite.menu_item,
'styl' : StdSuites.Type_Names_Suite.scrap_styles,
'aete' : StdSuites.Type_Names_Suite.application_dictionary,
'magn' : StdSuites.Type_Names_Suite.unsigned_integer,
'cmnu' : StdSuites.Type_Names_Suite.menu,
'frct' : StdSuites.Type_Names_Suite.fixed_rectangle,
'pinf' : StdSuites.Type_Names_Suite.type_property_info,
'lfrc' : StdSuites.Type_Names_Suite.long_fixed_rectangle,
'lfxd' : StdSuites.Type_Names_Suite.long_fixed,
'suin' : StdSuites.Type_Names_Suite.type_suite_info,
'trot' : StdSuites.Type_Names_Suite.rotation,
'shor' : StdSuites.Type_Names_Suite.small_integer,
'fixd' : StdSuites.Type_Names_Suite.fixed,
'lpnt' : StdSuites.Type_Names_Suite.long_point,
'gcli' : StdSuites.Type_Names_Suite.type_class_info,
'tr96' : StdSuites.Type_Names_Suite.RGB96_color,
'targ' : StdSuites.Type_Names_Suite.target_id,
'tpmm' : StdSuites.Type_Names_Suite.pixel_map_record,
'pmin' : StdSuites.Type_Names_Suite.type_parameter_info,
'exte' : StdSuites.Type_Names_Suite.extended_real,
'lrct' : StdSuites.Type_Names_Suite.long_rectangle,
'tdas' : StdSuites.Type_Names_Suite.dash_style,
'TEXT' : StdSuites.Type_Names_Suite.plain_text,
'sing' : StdSuites.Type_Names_Suite.small_real,
'null' : StdSuites.Type_Names_Suite.null,
'insl' : StdSuites.Type_Names_Suite.location_reference,
'qdrt' : StdSuites.Type_Names_Suite.bounding_rectangle,
'cwin' : window, 'cwin' : window,
'radB' : radio_button, 'radB' : radio_button,
'list' : list, 'list' : list,
@ -279,7 +238,48 @@ _classdeclarations = {
'scrb' : scroll_bar, 'scrb' : scroll_bar,
'comB' : combo_box, 'comB' : combo_box,
'broW' : browser, 'broW' : browser,
'comp' : StdSuites.Type_Names_Suite.double_integer,
'vers' : StdSuites.Type_Names_Suite.version,
'tr16' : StdSuites.Type_Names_Suite.RGB16_color,
'aeut' : StdSuites.Type_Names_Suite.system_dictionary,
'clrt' : StdSuites.Type_Names_Suite.color_table,
'fpnt' : StdSuites.Type_Names_Suite.fixed_point,
'TIFF' : StdSuites.Type_Names_Suite.TIFF_picture,
'elin' : StdSuites.Type_Names_Suite.type_element_info,
'evin' : StdSuites.Type_Names_Suite.type_event_info,
'mLoc' : StdSuites.Type_Names_Suite.machine_location,
'EPS ' : StdSuites.Type_Names_Suite.PostScript_picture,
'QDpt' : StdSuites.Type_Names_Suite.point,
'lfpt' : StdSuites.Type_Names_Suite.long_fixed_point,
'cmen' : StdSuites.Type_Names_Suite.menu_item,
'styl' : StdSuites.Type_Names_Suite.scrap_styles,
'aete' : StdSuites.Type_Names_Suite.application_dictionary,
'magn' : StdSuites.Type_Names_Suite.unsigned_integer,
'cmnu' : StdSuites.Type_Names_Suite.menu,
'frct' : StdSuites.Type_Names_Suite.fixed_rectangle,
'pinf' : StdSuites.Type_Names_Suite.type_property_info,
'lfrc' : StdSuites.Type_Names_Suite.long_fixed_rectangle,
'lfxd' : StdSuites.Type_Names_Suite.long_fixed,
'suin' : StdSuites.Type_Names_Suite.type_suite_info,
'trot' : StdSuites.Type_Names_Suite.rotation,
'shor' : StdSuites.Type_Names_Suite.small_integer,
'fixd' : StdSuites.Type_Names_Suite.fixed,
'lpnt' : StdSuites.Type_Names_Suite.long_point,
'gcli' : StdSuites.Type_Names_Suite.type_class_info,
'tr96' : StdSuites.Type_Names_Suite.RGB96_color,
'targ' : StdSuites.Type_Names_Suite.target_id,
'tpmm' : StdSuites.Type_Names_Suite.pixel_map_record,
'pmin' : StdSuites.Type_Names_Suite.type_parameter_info,
'exte' : StdSuites.Type_Names_Suite.extended_real,
'lrct' : StdSuites.Type_Names_Suite.long_rectangle,
'tdas' : StdSuites.Type_Names_Suite.dash_style,
'TEXT' : StdSuites.Type_Names_Suite.string,
'sing' : StdSuites.Type_Names_Suite.small_real,
'null' : StdSuites.Type_Names_Suite.null,
'insl' : StdSuites.Type_Names_Suite.location_reference,
'qdrt' : StdSuites.Type_Names_Suite.bounding_rectangle,
'capp' : application, 'capp' : application,
'logi' : login_item,
} }

View file

@ -333,19 +333,19 @@ class Standard_Suite_Events:
class application(aetools.ComponentItem): class application(aetools.ComponentItem):
"""application - An application's top level scripting object. """ """application - An application's top level scripting object. """
want = 'capp' want = 'capp'
class _3c_Inheritance_3e_(aetools.NProperty): class _Prop__3c_Inheritance_3e_(aetools.NProperty):
"""<Inheritance> - All of the properties of the superclass. """ """<Inheritance> - All of the properties of the superclass. """
which = 'c@#^' which = 'c@#^'
want = 'cobj' want = 'cobj'
class frontmost(aetools.NProperty): class _Prop_frontmost(aetools.NProperty):
"""frontmost - Is this the frontmost (active) application? """ """frontmost - Is this the frontmost (active) application? """
which = 'pisf' which = 'pisf'
want = 'bool' want = 'bool'
class name(aetools.NProperty): class _Prop_name(aetools.NProperty):
"""name - The name of the application. """ """name - The name of the application. """
which = 'pnam' which = 'pnam'
want = 'utxt' want = 'utxt'
class version(aetools.NProperty): class _Prop_version(aetools.NProperty):
"""version - The version of the application. """ """version - The version of the application. """
which = 'vers' which = 'vers'
want = 'utxt' want = 'utxt'
@ -357,11 +357,11 @@ applications = application
class item(aetools.ComponentItem): class item(aetools.ComponentItem):
"""item - A scriptable object. """ """item - A scriptable object. """
want = 'cobj' want = 'cobj'
class class_(aetools.NProperty): class _Prop_class_(aetools.NProperty):
"""class - The class of the object. """ """class - The class of the object. """
which = 'pcls' which = 'pcls'
want = 'type' want = 'type'
class properties(aetools.NProperty): class _Prop_properties(aetools.NProperty):
"""properties - All of the object's properties. """ """properties - All of the object's properties. """
which = 'pALL' which = 'pALL'
want = 'reco' want = 'reco'
@ -377,59 +377,59 @@ colors = color
class window(aetools.ComponentItem): class window(aetools.ComponentItem):
"""window - A window. """ """window - A window. """
want = 'cwin' want = 'cwin'
class bounds(aetools.NProperty): class _Prop_bounds(aetools.NProperty):
"""bounds - The bounding rectangle of the window. """ """bounds - The bounding rectangle of the window. """
which = 'pbnd' which = 'pbnd'
want = 'qdrt' want = 'qdrt'
class closeable(aetools.NProperty): class _Prop_closeable(aetools.NProperty):
"""closeable - Whether the window has a close box. """ """closeable - Whether the window has a close box. """
which = 'hclb' which = 'hclb'
want = 'bool' want = 'bool'
class document(aetools.NProperty): class _Prop_document(aetools.NProperty):
"""document - The document whose contents are being displayed in the window. """ """document - The document whose contents are being displayed in the window. """
which = 'docu' which = 'docu'
want = 'docu' want = 'docu'
class floating(aetools.NProperty): class _Prop_floating(aetools.NProperty):
"""floating - Whether the window floats. """ """floating - Whether the window floats. """
which = 'isfl' which = 'isfl'
want = 'bool' want = 'bool'
class id(aetools.NProperty): class _Prop_id(aetools.NProperty):
"""id - The unique identifier of the window. """ """id - The unique identifier of the window. """
which = 'ID ' which = 'ID '
want = 'long' want = 'long'
class index(aetools.NProperty): class _Prop_index(aetools.NProperty):
"""index - The index of the window in the back-to-front window ordering. """ """index - The index of the window in the back-to-front window ordering. """
which = 'pidx' which = 'pidx'
want = 'long' want = 'long'
class miniaturizable(aetools.NProperty): class _Prop_miniaturizable(aetools.NProperty):
"""miniaturizable - Whether the window can be miniaturized. """ """miniaturizable - Whether the window can be miniaturized. """
which = 'ismn' which = 'ismn'
want = 'bool' want = 'bool'
class miniaturized(aetools.NProperty): class _Prop_miniaturized(aetools.NProperty):
"""miniaturized - Whether the window is currently miniaturized. """ """miniaturized - Whether the window is currently miniaturized. """
which = 'pmnd' which = 'pmnd'
want = 'bool' want = 'bool'
class modal(aetools.NProperty): class _Prop_modal(aetools.NProperty):
"""modal - Whether the window is the application's current modal window. """ """modal - Whether the window is the application's current modal window. """
which = 'pmod' which = 'pmod'
want = 'bool' want = 'bool'
class resizable(aetools.NProperty): class _Prop_resizable(aetools.NProperty):
"""resizable - Whether the window can be resized. """ """resizable - Whether the window can be resized. """
which = 'prsz' which = 'prsz'
want = 'bool' want = 'bool'
class titled(aetools.NProperty): class _Prop_titled(aetools.NProperty):
"""titled - Whether the window has a title bar. """ """titled - Whether the window has a title bar. """
which = 'ptit' which = 'ptit'
want = 'bool' want = 'bool'
class visible(aetools.NProperty): class _Prop_visible(aetools.NProperty):
"""visible - Whether the window is currently visible. """ """visible - Whether the window is currently visible. """
which = 'pvis' which = 'pvis'
want = 'bool' want = 'bool'
class zoomable(aetools.NProperty): class _Prop_zoomable(aetools.NProperty):
"""zoomable - Whether the window can be zoomed. """ """zoomable - Whether the window can be zoomed. """
which = 'iszm' which = 'iszm'
want = 'bool' want = 'bool'
class zoomed(aetools.NProperty): class _Prop_zoomed(aetools.NProperty):
"""zoomed - Whether the window is currently zoomed. """ """zoomed - Whether the window is currently zoomed. """
which = 'pzum' which = 'pzum'
want = 'bool' want = 'bool'
@ -439,11 +439,11 @@ windows = window
class document(aetools.ComponentItem): class document(aetools.ComponentItem):
"""document - A document. """ """document - A document. """
want = 'docu' want = 'docu'
class modified(aetools.NProperty): class _Prop_modified(aetools.NProperty):
"""modified - Has the document been modified since the last save? """ """modified - Has the document been modified since the last save? """
which = 'imod' which = 'imod'
want = 'bool' want = 'bool'
class path(aetools.NProperty): class _Prop_path(aetools.NProperty):
"""path - The document's path. """ """path - The document's path. """
which = 'ppth' which = 'ppth'
want = 'utxt' want = 'utxt'
@ -451,10 +451,10 @@ class path(aetools.NProperty):
documents = document documents = document
application._superclassnames = ['item'] application._superclassnames = ['item']
application._privpropdict = { application._privpropdict = {
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_, '_3c_Inheritance_3e_' : _Prop__3c_Inheritance_3e_,
'frontmost' : frontmost, 'frontmost' : _Prop_frontmost,
'name' : name, 'name' : _Prop_name,
'version' : version, 'version' : _Prop_version,
} }
application._privelemdict = { application._privelemdict = {
'document' : document, 'document' : document,
@ -462,44 +462,44 @@ application._privelemdict = {
} }
item._superclassnames = [] item._superclassnames = []
item._privpropdict = { item._privpropdict = {
'class_' : class_, 'class_' : _Prop_class_,
'properties' : properties, 'properties' : _Prop_properties,
} }
item._privelemdict = { item._privelemdict = {
} }
color._superclassnames = ['item'] color._superclassnames = ['item']
color._privpropdict = { color._privpropdict = {
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_, '_3c_Inheritance_3e_' : _Prop__3c_Inheritance_3e_,
} }
color._privelemdict = { color._privelemdict = {
} }
window._superclassnames = ['item'] window._superclassnames = ['item']
window._privpropdict = { window._privpropdict = {
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_, '_3c_Inheritance_3e_' : _Prop__3c_Inheritance_3e_,
'bounds' : bounds, 'bounds' : _Prop_bounds,
'closeable' : closeable, 'closeable' : _Prop_closeable,
'document' : document, 'document' : _Prop_document,
'floating' : floating, 'floating' : _Prop_floating,
'id' : id, 'id' : _Prop_id,
'index' : index, 'index' : _Prop_index,
'miniaturizable' : miniaturizable, 'miniaturizable' : _Prop_miniaturizable,
'miniaturized' : miniaturized, 'miniaturized' : _Prop_miniaturized,
'modal' : modal, 'modal' : _Prop_modal,
'name' : name, 'name' : _Prop_name,
'resizable' : resizable, 'resizable' : _Prop_resizable,
'titled' : titled, 'titled' : _Prop_titled,
'visible' : visible, 'visible' : _Prop_visible,
'zoomable' : zoomable, 'zoomable' : _Prop_zoomable,
'zoomed' : zoomed, 'zoomed' : _Prop_zoomed,
} }
window._privelemdict = { window._privelemdict = {
} }
document._superclassnames = ['item'] document._superclassnames = ['item']
document._privpropdict = { document._privpropdict = {
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_, '_3c_Inheritance_3e_' : _Prop__3c_Inheritance_3e_,
'modified' : modified, 'modified' : _Prop_modified,
'name' : name, 'name' : _Prop_name,
'path' : path, 'path' : _Prop_path,
} }
document._privelemdict = { document._privelemdict = {
} }
@ -536,43 +536,3 @@ _classdeclarations = {
'cwin' : window, 'cwin' : window,
'docu' : document, 'docu' : document,
} }
_propdeclarations = {
'ID ' : id,
'c@#^' : _3c_Inheritance_3e_,
'docu' : document,
'hclb' : closeable,
'imod' : modified,
'isfl' : floating,
'ismn' : miniaturizable,
'iszm' : zoomable,
'pALL' : properties,
'pbnd' : bounds,
'pcls' : class_,
'pidx' : index,
'pisf' : frontmost,
'pmnd' : miniaturized,
'pmod' : modal,
'pnam' : name,
'ppth' : path,
'prsz' : resizable,
'ptit' : titled,
'pvis' : visible,
'pzum' : zoomed,
'vers' : version,
}
_compdeclarations = {
'< ' : _3c_,
'<= ' : _b2_,
'= ' : _3d_,
'> ' : _3e_,
'>= ' : _b3_,
'bgwt' : starts_with,
'cont' : contains,
'ends' : ends_with,
}
_enumdeclarations = {
'savo' : _Enum_savo,
}

View file

@ -64,11 +64,11 @@ 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 _3c_Inheritance_3e_(aetools.NProperty): class _Prop__3c_Inheritance_3e_(aetools.NProperty):
"""<Inheritance> - All of the properties of the superclass. """ """<Inheritance> - All of the properties of the superclass. """
which = 'c@#^' which = 'c@#^'
want = 'capp' want = 'capp'
class properties(aetools.NProperty): class _Prop_properties(aetools.NProperty):
"""properties - every property of the Terminal program """ """properties - every property of the Terminal program """
which = 'pALL' which = 'pALL'
want = '****' want = '****'
@ -80,91 +80,91 @@ applications = application
class window(aetools.ComponentItem): class window(aetools.ComponentItem):
"""window - A Terminal window """ """window - A Terminal window """
want = 'cwin' want = 'cwin'
class background_color(aetools.NProperty): class _Prop_background_color(aetools.NProperty):
"""background color - the background color for the window """ """background color - the background color for the window """
which = 'pbcl' which = 'pbcl'
want = '****' want = '****'
class bold_text_color(aetools.NProperty): class _Prop_bold_text_color(aetools.NProperty):
"""bold text color - the bold text color for the window """ """bold text color - the bold text color for the window """
which = 'pbtc' which = 'pbtc'
want = '****' want = '****'
class bounds(aetools.NProperty): class _Prop_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 = '****' want = '****'
class busy(aetools.NProperty): class _Prop_busy(aetools.NProperty):
"""busy - Is the window busy running a process? """ """busy - Is the window busy running a process? """
which = 'busy' which = 'busy'
want = 'bool' want = 'bool'
class contents(aetools.NProperty): class _Prop_contents(aetools.NProperty):
"""contents - the currently visible contents of the window """ """contents - the currently visible contents of the window """
which = 'pcnt' which = 'pcnt'
want = 'utxt' want = 'utxt'
class cursor_color(aetools.NProperty): class _Prop_cursor_color(aetools.NProperty):
"""cursor color - the cursor color for the window """ """cursor color - the cursor color for the window """
which = 'pcuc' which = 'pcuc'
want = '****' want = '****'
class custom_title(aetools.NProperty): class _Prop_custom_title(aetools.NProperty):
"""custom title - the custom title for the window """ """custom title - the custom title for the window """
which = 'titl' which = 'titl'
want = 'utxt' want = 'utxt'
class frame(aetools.NProperty): class _Prop_frame(aetools.NProperty):
"""frame - the origin and size of the window """ """frame - the origin and size of the window """
which = 'pfra' which = 'pfra'
want = '****' want = '****'
class frontmost(aetools.NProperty): class _Prop_frontmost(aetools.NProperty):
"""frontmost - Is the window in front of the other Terminal windows? """ """frontmost - Is the window in front of the other Terminal windows? """
which = 'pisf' which = 'pisf'
want = 'bool' want = 'bool'
class history(aetools.NProperty): class _Prop_history(aetools.NProperty):
"""history - the contents of the entire scrolling buffer of the window """ """history - the contents of the entire scrolling buffer of the window """
which = 'hist' which = 'hist'
want = 'utxt' want = 'utxt'
class normal_text_color(aetools.NProperty): class _Prop_normal_text_color(aetools.NProperty):
"""normal text color - the normal text color for the window """ """normal text color - the normal text color for the window """
which = 'ptxc' which = 'ptxc'
want = '****' want = '****'
class number_of_columns(aetools.NProperty): class _Prop_number_of_columns(aetools.NProperty):
"""number of columns - the number of columns in the window """ """number of columns - the number of columns in the window """
which = 'ccol' which = 'ccol'
want = 'long' want = 'long'
class number_of_rows(aetools.NProperty): class _Prop_number_of_rows(aetools.NProperty):
"""number of rows - the number of rows in the window """ """number of rows - the number of rows in the window """
which = 'crow' which = 'crow'
want = 'long' want = 'long'
class origin(aetools.NProperty): class _Prop_origin(aetools.NProperty):
"""origin - the lower left coordinates of the window, relative to the lower left corner of the screen """ """origin - the lower left coordinates of the window, relative to the lower left corner of the screen """
which = 'pori' which = 'pori'
want = '****' want = '****'
class position(aetools.NProperty): class _Prop_position(aetools.NProperty):
"""position - the upper left coordinates of the window, relative to the upper left corner of the screen """ """position - the upper left coordinates of the window, relative to the upper left corner of the screen """
which = 'ppos' which = 'ppos'
want = '****' want = '****'
class processes(aetools.NProperty): class _Prop_processes(aetools.NProperty):
"""processes - a list of the currently running processes """ """processes - a list of the currently running processes """
which = 'prcs' which = 'prcs'
want = 'utxt' want = 'utxt'
class size(aetools.NProperty): class _Prop_size(aetools.NProperty):
"""size - the width and height of the window """ """size - the width and height of the window """
which = 'psiz' which = 'psiz'
want = '****' want = '****'
class title_displays_custom_title(aetools.NProperty): class _Prop_title_displays_custom_title(aetools.NProperty):
"""title displays custom title - Does the title for the window contain a custom title? """ """title displays custom title - Does the title for the window contain a custom title? """
which = 'tdct' which = 'tdct'
want = 'bool' want = 'bool'
class title_displays_device_name(aetools.NProperty): class _Prop_title_displays_device_name(aetools.NProperty):
"""title displays device name - Does the title for the window contain the device name? """ """title displays device name - Does the title for the window contain the device name? """
which = 'tddn' which = 'tddn'
want = 'bool' want = 'bool'
class title_displays_file_name(aetools.NProperty): class _Prop_title_displays_file_name(aetools.NProperty):
"""title displays file name - Does the title for the window contain the file name? """ """title displays file name - Does the title for the window contain the file name? """
which = 'tdfn' which = 'tdfn'
want = 'bool' want = 'bool'
class title_displays_shell_path(aetools.NProperty): class _Prop_title_displays_shell_path(aetools.NProperty):
"""title displays shell path - Does the title for the window contain the shell path? """ """title displays shell path - Does the title for the window contain the shell path? """
which = 'tdsp' which = 'tdsp'
want = 'bool' want = 'bool'
class title_displays_window_size(aetools.NProperty): class _Prop_title_displays_window_size(aetools.NProperty):
"""title displays window size - Does the title for the window contain the window size? """ """title displays window size - Does the title for the window contain the window size? """
which = 'tdws' which = 'tdws'
want = 'bool' want = 'bool'
@ -173,8 +173,8 @@ windows = window
application._superclassnames = [] application._superclassnames = []
import Standard_Suite import Standard_Suite
application._privpropdict = { application._privpropdict = {
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_, '_3c_Inheritance_3e_' : _Prop__3c_Inheritance_3e_,
'properties' : properties, 'properties' : _Prop_properties,
} }
application._privelemdict = { application._privelemdict = {
'document' : Standard_Suite.document, 'document' : Standard_Suite.document,
@ -182,30 +182,30 @@ application._privelemdict = {
} }
window._superclassnames = [] window._superclassnames = []
window._privpropdict = { window._privpropdict = {
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_, '_3c_Inheritance_3e_' : _Prop__3c_Inheritance_3e_,
'background_color' : background_color, 'background_color' : _Prop_background_color,
'bold_text_color' : bold_text_color, 'bold_text_color' : _Prop_bold_text_color,
'bounds' : bounds, 'bounds' : _Prop_bounds,
'busy' : busy, 'busy' : _Prop_busy,
'contents' : contents, 'contents' : _Prop_contents,
'cursor_color' : cursor_color, 'cursor_color' : _Prop_cursor_color,
'custom_title' : custom_title, 'custom_title' : _Prop_custom_title,
'frame' : frame, 'frame' : _Prop_frame,
'frontmost' : frontmost, 'frontmost' : _Prop_frontmost,
'history' : history, 'history' : _Prop_history,
'normal_text_color' : normal_text_color, 'normal_text_color' : _Prop_normal_text_color,
'number_of_columns' : number_of_columns, 'number_of_columns' : _Prop_number_of_columns,
'number_of_rows' : number_of_rows, 'number_of_rows' : _Prop_number_of_rows,
'origin' : origin, 'origin' : _Prop_origin,
'position' : position, 'position' : _Prop_position,
'processes' : processes, 'processes' : _Prop_processes,
'properties' : properties, 'properties' : _Prop_properties,
'size' : size, 'size' : _Prop_size,
'title_displays_custom_title' : title_displays_custom_title, 'title_displays_custom_title' : _Prop_title_displays_custom_title,
'title_displays_device_name' : title_displays_device_name, 'title_displays_device_name' : _Prop_title_displays_device_name,
'title_displays_file_name' : title_displays_file_name, 'title_displays_file_name' : _Prop_title_displays_file_name,
'title_displays_shell_path' : title_displays_shell_path, 'title_displays_shell_path' : _Prop_title_displays_shell_path,
'title_displays_window_size' : title_displays_window_size, 'title_displays_window_size' : _Prop_title_displays_window_size,
} }
window._privelemdict = { window._privelemdict = {
} }
@ -217,36 +217,3 @@ _classdeclarations = {
'capp' : application, 'capp' : application,
'cwin' : window, 'cwin' : window,
} }
_propdeclarations = {
'busy' : busy,
'c@#^' : _3c_Inheritance_3e_,
'ccol' : number_of_columns,
'crow' : number_of_rows,
'hist' : history,
'pALL' : properties,
'pbcl' : background_color,
'pbnd' : bounds,
'pbtc' : bold_text_color,
'pcnt' : contents,
'pcuc' : cursor_color,
'pfra' : frame,
'pisf' : frontmost,
'pori' : origin,
'ppos' : position,
'prcs' : processes,
'psiz' : size,
'ptxc' : normal_text_color,
'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,
}
_compdeclarations = {
}
_enumdeclarations = {
}

View file

@ -18,11 +18,11 @@ class Text_Suite_Events:
class attachment(aetools.ComponentItem): class attachment(aetools.ComponentItem):
"""attachment - Represents an inline text attachment. This class is used mainly for make commands. """ """attachment - Represents an inline text attachment. This class is used mainly for make commands. """
want = 'atts' want = 'atts'
class _3c_Inheritance_3e_(aetools.NProperty): class _Prop__3c_Inheritance_3e_(aetools.NProperty):
"""<Inheritance> - All of the properties of the superclass. """ """<Inheritance> - All of the properties of the superclass. """
which = 'c@#^' which = 'c@#^'
want = 'ctxt' want = 'ctxt'
class file_name(aetools.NProperty): class _Prop_file_name(aetools.NProperty):
"""file name - The path to the file for the attachment """ """file name - The path to the file for the attachment """
which = 'atfn' which = 'atfn'
want = 'utxt' want = 'utxt'
@ -34,15 +34,15 @@ class file_name(aetools.NProperty):
class attribute_run(aetools.ComponentItem): class attribute_run(aetools.ComponentItem):
"""attribute run - This subdivides the text into chunks that all have the same attributes. """ """attribute run - This subdivides the text into chunks that all have the same attributes. """
want = 'catr' want = 'catr'
class color(aetools.NProperty): class _Prop_color(aetools.NProperty):
"""color - The color of the first character. """ """color - The color of the first character. """
which = 'colr' which = 'colr'
want = 'colr' want = 'colr'
class font(aetools.NProperty): class _Prop_font(aetools.NProperty):
"""font - The name of the font of the first character. """ """font - The name of the font of the first character. """
which = 'font' which = 'font'
want = 'utxt' want = 'utxt'
class size(aetools.NProperty): class _Prop_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 = 'long' want = 'long'
@ -92,8 +92,8 @@ class word(aetools.ComponentItem):
words = word words = word
attachment._superclassnames = ['text'] attachment._superclassnames = ['text']
attachment._privpropdict = { attachment._privpropdict = {
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_, '_3c_Inheritance_3e_' : _Prop__3c_Inheritance_3e_,
'file_name' : file_name, 'file_name' : _Prop_file_name,
} }
attachment._privelemdict = { attachment._privelemdict = {
'attribute_run' : attribute_run, 'attribute_run' : attribute_run,
@ -104,10 +104,10 @@ attachment._privelemdict = {
import Standard_Suite import Standard_Suite
attribute_run._superclassnames = ['item'] attribute_run._superclassnames = ['item']
attribute_run._privpropdict = { attribute_run._privpropdict = {
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_, '_3c_Inheritance_3e_' : _Prop__3c_Inheritance_3e_,
'color' : color, 'color' : _Prop_color,
'font' : font, 'font' : _Prop_font,
'size' : size, 'size' : _Prop_size,
} }
attribute_run._privelemdict = { attribute_run._privelemdict = {
'attribute_run' : attribute_run, 'attribute_run' : attribute_run,
@ -117,10 +117,10 @@ attribute_run._privelemdict = {
} }
character._superclassnames = ['item'] character._superclassnames = ['item']
character._privpropdict = { character._privpropdict = {
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_, '_3c_Inheritance_3e_' : _Prop__3c_Inheritance_3e_,
'color' : color, 'color' : _Prop_color,
'font' : font, 'font' : _Prop_font,
'size' : size, 'size' : _Prop_size,
} }
character._privelemdict = { character._privelemdict = {
'attribute_run' : attribute_run, 'attribute_run' : attribute_run,
@ -130,10 +130,10 @@ character._privelemdict = {
} }
paragraph._superclassnames = ['item'] paragraph._superclassnames = ['item']
paragraph._privpropdict = { paragraph._privpropdict = {
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_, '_3c_Inheritance_3e_' : _Prop__3c_Inheritance_3e_,
'color' : color, 'color' : _Prop_color,
'font' : font, 'font' : _Prop_font,
'size' : size, 'size' : _Prop_size,
} }
paragraph._privelemdict = { paragraph._privelemdict = {
'attribute_run' : attribute_run, 'attribute_run' : attribute_run,
@ -143,10 +143,10 @@ paragraph._privelemdict = {
} }
text._superclassnames = ['item'] text._superclassnames = ['item']
text._privpropdict = { text._privpropdict = {
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_, '_3c_Inheritance_3e_' : _Prop__3c_Inheritance_3e_,
'color' : color, 'color' : _Prop_color,
'font' : font, 'font' : _Prop_font,
'size' : size, 'size' : _Prop_size,
} }
text._privelemdict = { text._privelemdict = {
'attribute_run' : attribute_run, 'attribute_run' : attribute_run,
@ -156,10 +156,10 @@ text._privelemdict = {
} }
word._superclassnames = ['item'] word._superclassnames = ['item']
word._privpropdict = { word._privpropdict = {
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_, '_3c_Inheritance_3e_' : _Prop__3c_Inheritance_3e_,
'color' : color, 'color' : _Prop_color,
'font' : font, 'font' : _Prop_font,
'size' : size, 'size' : _Prop_size,
} }
word._privelemdict = { word._privelemdict = {
'attribute_run' : attribute_run, 'attribute_run' : attribute_run,
@ -179,17 +179,3 @@ _classdeclarations = {
'ctxt' : text, 'ctxt' : text,
'cwor' : word, 'cwor' : word,
} }
_propdeclarations = {
'atfn' : file_name,
'c@#^' : _3c_Inheritance_3e_,
'colr' : color,
'font' : font,
'ptsz' : size,
}
_compdeclarations = {
}
_enumdeclarations = {
}

View file

@ -43,14 +43,14 @@ 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(application)
getbaseclasses(character) getbaseclasses(character)
getbaseclasses(attachment) getbaseclasses(attachment)
getbaseclasses(paragraph) getbaseclasses(paragraph)
getbaseclasses(word) getbaseclasses(word)
getbaseclasses(attribute_run) getbaseclasses(attribute_run)
getbaseclasses(text) getbaseclasses(text)
getbaseclasses(window)
getbaseclasses(application)
getbaseclasses(color) getbaseclasses(color)
getbaseclasses(window) getbaseclasses(window)
getbaseclasses(application) getbaseclasses(application)
@ -61,14 +61,14 @@ getbaseclasses(document)
# Indices of types declared in this module # Indices of types declared in this module
# #
_classdeclarations = { _classdeclarations = {
'cwin' : window,
'capp' : application,
'cha ' : character, 'cha ' : character,
'atts' : attachment, 'atts' : attachment,
'cpar' : paragraph, 'cpar' : paragraph,
'cwor' : word, 'cwor' : word,
'catr' : attribute_run, 'catr' : attribute_run,
'ctxt' : text, 'ctxt' : text,
'cwin' : window,
'capp' : application,
'colr' : color, 'colr' : color,
'cwin' : window, 'cwin' : window,
'capp' : application, 'capp' : application,