Commit 842273bc authored by Jack Jansen's avatar Jack Jansen

Regenerated with property names with _Prop_ prepended.

parent bc956056
...@@ -50,13 +50,3 @@ _Enum_Conv = { ...@@ -50,13 +50,3 @@ _Enum_Conv = {
# #
_classdeclarations = { _classdeclarations = {
} }
_propdeclarations = {
}
_compdeclarations = {
}
_enumdeclarations = {
'Conv' : _Enum_Conv,
}
...@@ -175,7 +175,7 @@ class Standard_Suite_Events(Standard_Suite_Events): ...@@ -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): ...@@ -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): ...@@ -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 ...@@ -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): ...@@ -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 ...@@ -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): ...@@ -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 = { ...@@ -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 = { ...@@ -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 = { ...@@ -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 = { ...@@ -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 = {
}
...@@ -47,6 +47,15 @@ import StdSuites ...@@ -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) ...@@ -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 = { ...@@ -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,
} }
......
...@@ -85,12 +85,3 @@ class Microsoft_Internet_Explorer_Events: ...@@ -85,12 +85,3 @@ class Microsoft_Internet_Explorer_Events:
# #
_classdeclarations = { _classdeclarations = {
} }
_propdeclarations = {
}
_compdeclarations = {
}
_enumdeclarations = {
}
...@@ -38,12 +38,3 @@ class Netscape_Suite_Events: ...@@ -38,12 +38,3 @@ class Netscape_Suite_Events:
# #
_classdeclarations = { _classdeclarations = {
} }
_propdeclarations = {
}
_compdeclarations = {
}
_enumdeclarations = {
}
...@@ -97,12 +97,3 @@ class Required_Suite_Events(Required_Suite_Events): ...@@ -97,12 +97,3 @@ class Required_Suite_Events(Required_Suite_Events):
# #
_classdeclarations = { _classdeclarations = {
} }
_propdeclarations = {
}
_compdeclarations = {
}
_enumdeclarations = {
}
...@@ -42,13 +42,13 @@ class Standard_Suite_Events: ...@@ -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 = { ...@@ -59,13 +59,3 @@ application._privelemdict = {
_classdeclarations = { _classdeclarations = {
'capp' : application, 'capp' : application,
} }
_propdeclarations = {
'stxt' : selected_text,
}
_compdeclarations = {
}
_enumdeclarations = {
}
...@@ -43,12 +43,3 @@ class URL_Suite_Events: ...@@ -43,12 +43,3 @@ class URL_Suite_Events:
# #
_classdeclarations = { _classdeclarations = {
} }
_propdeclarations = {
}
_compdeclarations = {
}
_enumdeclarations = {
}
...@@ -215,12 +215,3 @@ class Web_Browser_Suite_Events: ...@@ -215,12 +215,3 @@ class Web_Browser_Suite_Events:
# #
_classdeclarations = { _classdeclarations = {
} }
_propdeclarations = {
}
_compdeclarations = {
}
_enumdeclarations = {
}
...@@ -18,35 +18,35 @@ class Containers_and_folders_Events: ...@@ -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 ...@@ -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 ...@@ -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'] ...@@ -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 = { ...@@ -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 = { ...@@ -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 = { ...@@ -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 = { ...@@ -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 = { ...@@ -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 = {
}
...@@ -124,22 +124,3 @@ _Enum_vwby = { ...@@ -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,
}
...@@ -18,11 +18,11 @@ class Files_Events: ...@@ -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 ...@@ -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 ...@@ -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 ...@@ -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 ...@@ -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): ...@@ -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 = { ...@@ -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 = {
}
...@@ -61,55 +61,55 @@ class Finder_Basics_Events: ...@@ -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 ...@@ -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 = { ...@@ -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 = {
}
...@@ -168,111 +168,111 @@ class Finder_items_Events: ...@@ -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): ...@@ -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 = { ...@@ -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 = {
}
...@@ -73,7 +73,7 @@ class Legacy_suite_Events: ...@@ -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): ...@@ -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 ...@@ -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 ...@@ -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): ...@@ -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 = { ...@@ -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 = {
}
...@@ -324,12 +324,3 @@ _Enum_bool = None # XXXX enum bool not found!! ...@@ -324,12 +324,3 @@ _Enum_bool = None # XXXX enum bool not found!!
# #
_classdeclarations = { _classdeclarations = {
} }
_propdeclarations = {
}
_compdeclarations = {
}
_enumdeclarations = {
}
...@@ -18,23 +18,23 @@ class Window_classes_Events: ...@@ -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 ...@@ -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 ...@@ -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): ...@@ -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 = { ...@@ -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 = {
}
...@@ -67,13 +67,13 @@ import StdSuites ...@@ -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) ...@@ -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) ...@@ -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) ...@@ -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) ...@@ -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 = { ...@@ -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 = { ...@@ -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 = { ...@@ -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,
......
...@@ -255,15 +255,3 @@ _Enum_ncmd = { ...@@ -255,15 +255,3 @@ _Enum_ncmd = {
# #
_classdeclarations = { _classdeclarations = {
} }
_propdeclarations = {
}
_compdeclarations = {
}
_enumdeclarations = {
'comp' : _Enum_comp,
'dire' : _Enum_dire,
'ncmd' : _Enum_ncmd,
}
...@@ -74,13 +74,3 @@ _Enum_dbac = { ...@@ -74,13 +74,3 @@ _Enum_dbac = {
# #
_classdeclarations = { _classdeclarations = {
} }
_propdeclarations = {
}
_compdeclarations = {
}
_enumdeclarations = {
'dbac' : _Enum_dbac,
}
...@@ -97,12 +97,3 @@ class Required_suite_Events(Required_Suite_Events): ...@@ -97,12 +97,3 @@ class Required_suite_Events(Required_Suite_Events):
# #
_classdeclarations = { _classdeclarations = {
} }
_propdeclarations = {
}
_compdeclarations = {
}
_enumdeclarations = {
}
...@@ -104,11 +104,11 @@ class Standard_Suite_Events(Standard_Suite_Events): ...@@ -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): ...@@ -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 = { ...@@ -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 = {
}
...@@ -49,12 +49,3 @@ class Standard_URL_suite_Events: ...@@ -49,12 +49,3 @@ class Standard_URL_suite_Events:
# #
_classdeclarations = { _classdeclarations = {
} }
_propdeclarations = {
}
_compdeclarations = {
}
_enumdeclarations = {
}
...@@ -19,23 +19,23 @@ class Text_Events(Text_Suite_Events): ...@@ -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): ...@@ -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): ...@@ -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 = { ...@@ -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 = {
}
...@@ -415,12 +415,3 @@ class WorldWideWeb_suite_Events: ...@@ -415,12 +415,3 @@ class WorldWideWeb_suite_Events:
# #
_classdeclarations = { _classdeclarations = {
} }
_propdeclarations = {
}
_compdeclarations = {
}
_enumdeclarations = {
}
...@@ -61,8 +61,6 @@ import StdSuites ...@@ -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) ...@@ -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) ...@@ -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 = { ...@@ -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,
} }
......
...@@ -18,15 +18,15 @@ class QuickDraw_Graphics_Suppleme_Events: ...@@ -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): ...@@ -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 = { ...@@ -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 = {
}
...@@ -21,12 +21,3 @@ class Required_Suite_Events(builtin_Suite_Events): ...@@ -21,12 +21,3 @@ class Required_Suite_Events(builtin_Suite_Events):
# #
_classdeclarations = { _classdeclarations = {
} }
_propdeclarations = {
}
_compdeclarations = {
}
_enumdeclarations = {
}
...@@ -18,11 +18,11 @@ class Table_Suite_Events: ...@@ -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 ...@@ -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): ...@@ -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 = { ...@@ -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,
}
...@@ -424,12 +424,3 @@ _classdeclarations = { ...@@ -424,12 +424,3 @@ _classdeclarations = {
'trot' : rotation, 'trot' : rotation,
'vers' : version, 'vers' : version,
} }
_propdeclarations = {
}
_compdeclarations = {
}
_enumdeclarations = {
}
...@@ -39,12 +39,3 @@ class Hidden_Suite_Events(Type_Names_Suite_Events): ...@@ -39,12 +39,3 @@ class Hidden_Suite_Events(Type_Names_Suite_Events):
# #
_classdeclarations = { _classdeclarations = {
} }
_propdeclarations = {
}
_compdeclarations = {
}
_enumdeclarations = {
}
...@@ -78,12 +78,3 @@ class Power_Suite_Events: ...@@ -78,12 +78,3 @@ class Power_Suite_Events:
# #
_classdeclarations = { _classdeclarations = {
} }
_propdeclarations = {
}
_compdeclarations = {
}
_enumdeclarations = {
}
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment