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 = {
#
_classdeclarations = {
}
_propdeclarations = {
}
_compdeclarations = {
}
_enumdeclarations = {
'Conv' : _Enum_Conv,
}
......@@ -175,7 +175,7 @@ class Standard_Suite_Events(Standard_Suite_Events):
class application(aetools.ComponentItem):
"""application - an application program """
want = 'capp'
class user_interaction(aetools.NProperty):
class _Prop_user_interaction(aetools.NProperty):
"""user interaction - user interaction level """
which = 'inte'
want = 'Inte'
......@@ -185,11 +185,11 @@ class user_interaction(aetools.NProperty):
class character(aetools.ComponentItem):
"""character - a character """
want = 'cha '
class length(aetools.NProperty):
class _Prop_length(aetools.NProperty):
"""length - length in characters of this object """
which = 'pLen'
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) """
which = 'pOff'
want = 'long'
......@@ -201,7 +201,7 @@ class insertion_point(aetools.ComponentItem):
class line(aetools.ComponentItem):
"""line - lines of text """
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) """
which = 'pidx'
want = 'long'
......@@ -212,7 +212,7 @@ lines = line
class selection_2d_object(aetools.ComponentItem):
"""selection-object - the selection visible to the user """
want = 'csel'
class contents(aetools.NProperty):
class _Prop_contents(aetools.NProperty):
"""contents - the contents of the selection """
which = 'pcnt'
want = 'type'
......@@ -231,27 +231,27 @@ class text(aetools.ComponentItem):
class window(aetools.ComponentItem):
"""window - A window """
want = 'cwin'
class bounds(aetools.NProperty):
class _Prop_bounds(aetools.NProperty):
"""bounds - the boundary rectangle for the window """
which = 'pbnd'
want = 'qdrt'
class document(aetools.NProperty):
class _Prop_document(aetools.NProperty):
"""document - the document that owns this window """
which = 'docu'
want = 'docu'
class name(aetools.NProperty):
class _Prop_name(aetools.NProperty):
"""name - the title of the window """
which = 'pnam'
want = 'itxt'
class position(aetools.NProperty):
class _Prop_position(aetools.NProperty):
"""position - upper left coordinates of window """
which = 'ppos'
want = 'QDpt'
class visible(aetools.NProperty):
class _Prop_visible(aetools.NProperty):
"""visible - is the window visible? """
which = 'pvis'
want = 'bool'
class zoomed(aetools.NProperty):
class _Prop_zoomed(aetools.NProperty):
"""zoomed - Is the window zoomed? """
which = 'pzum'
want = 'bool'
......@@ -261,19 +261,19 @@ windows = window
class document(aetools.ComponentItem):
"""document - a document """
want = 'docu'
class file_permissions(aetools.NProperty):
class _Prop_file_permissions(aetools.NProperty):
"""file permissions - the file permissions for the document """
which = 'PERM'
want = 'PERM'
class kind(aetools.NProperty):
class _Prop_kind(aetools.NProperty):
"""kind - the kind of document """
which = 'DKND'
want = 'DKND'
class location(aetools.NProperty):
class _Prop_location(aetools.NProperty):
"""location - the file of the document """
which = 'FILE'
want = 'fss '
class window(aetools.NProperty):
class _Prop_window(aetools.NProperty):
"""window - the window of the document. """
which = 'cwin'
want = 'cwin'
......@@ -287,7 +287,7 @@ class files(aetools.ComponentItem):
file = files
application._superclassnames = []
application._privpropdict = {
'user_interaction' : user_interaction,
'user_interaction' : _Prop_user_interaction,
}
application._privelemdict = {
'document' : document,
......@@ -295,32 +295,32 @@ application._privelemdict = {
}
character._superclassnames = []
character._privpropdict = {
'length' : length,
'offset' : offset,
'length' : _Prop_length,
'offset' : _Prop_offset,
}
character._privelemdict = {
}
insertion_point._superclassnames = []
insertion_point._privpropdict = {
'length' : length,
'offset' : offset,
'length' : _Prop_length,
'offset' : _Prop_offset,
}
insertion_point._privelemdict = {
}
line._superclassnames = []
line._privpropdict = {
'index' : index,
'length' : length,
'offset' : offset,
'index' : _Prop_index,
'length' : _Prop_length,
'offset' : _Prop_offset,
}
line._privelemdict = {
'character' : character,
}
selection_2d_object._superclassnames = []
selection_2d_object._privpropdict = {
'contents' : contents,
'length' : length,
'offset' : offset,
'contents' : _Prop_contents,
'length' : _Prop_length,
'offset' : _Prop_offset,
}
selection_2d_object._privelemdict = {
'character' : character,
......@@ -329,8 +329,8 @@ selection_2d_object._privelemdict = {
}
text._superclassnames = []
text._privpropdict = {
'length' : length,
'offset' : offset,
'length' : _Prop_length,
'offset' : _Prop_offset,
}
text._privelemdict = {
'character' : character,
......@@ -340,24 +340,24 @@ text._privelemdict = {
}
window._superclassnames = []
window._privpropdict = {
'bounds' : bounds,
'document' : document,
'index' : index,
'name' : name,
'position' : position,
'visible' : visible,
'zoomed' : zoomed,
'bounds' : _Prop_bounds,
'document' : _Prop_document,
'index' : _Prop_index,
'name' : _Prop_name,
'position' : _Prop_position,
'visible' : _Prop_visible,
'zoomed' : _Prop_zoomed,
}
window._privelemdict = {
}
document._superclassnames = []
document._privpropdict = {
'file_permissions' : file_permissions,
'index' : index,
'kind' : kind,
'location' : location,
'name' : name,
'window' : window,
'file_permissions' : _Prop_file_permissions,
'index' : _Prop_index,
'kind' : _Prop_kind,
'location' : _Prop_location,
'name' : _Prop_name,
'window' : _Prop_window,
}
document._privelemdict = {
}
......@@ -381,27 +381,3 @@ _classdeclarations = {
'docu' : document,
'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
#
# Set property and element dictionaries now that all classes have been defined
#
getbaseclasses(character)
getbaseclasses(text)
getbaseclasses(window)
getbaseclasses(file)
getbaseclasses(line)
getbaseclasses(selection_2d_object)
getbaseclasses(application)
getbaseclasses(insertion_point)
getbaseclasses(document)
getbaseclasses(single_class_browser)
getbaseclasses(project_document)
getbaseclasses(symbol_browser)
......@@ -100,20 +109,20 @@ getbaseclasses(Font)
getbaseclasses(Target_Source_Trees)
getbaseclasses(Debugger_Display)
getbaseclasses(class_)
getbaseclasses(character)
getbaseclasses(text)
getbaseclasses(window)
getbaseclasses(file)
getbaseclasses(line)
getbaseclasses(selection_2d_object)
getbaseclasses(application)
getbaseclasses(insertion_point)
getbaseclasses(document)
#
# Indices of types declared in this module
#
_classdeclarations = {
'cha ' : character,
'ctxt' : text,
'cwin' : window,
'file' : file,
'clin' : line,
'csel' : selection_2d_object,
'capp' : application,
'cins' : insertion_point,
'docu' : document,
'1BRW' : single_class_browser,
'PRJD' : project_document,
'SYMB' : symbol_browser,
......@@ -167,15 +176,6 @@ _classdeclarations = {
'TSTs' : Target_Source_Trees,
'DbDS' : Debugger_Display,
'Clas' : class_,
'cha ' : character,
'ctxt' : text,
'cwin' : window,
'file' : file,
'clin' : line,
'csel' : selection_2d_object,
'capp' : application,
'cins' : insertion_point,
'docu' : document,
}
......
......@@ -85,12 +85,3 @@ class Microsoft_Internet_Explorer_Events:
#
_classdeclarations = {
}
_propdeclarations = {
}
_compdeclarations = {
}
_enumdeclarations = {
}
......@@ -38,12 +38,3 @@ class Netscape_Suite_Events:
#
_classdeclarations = {
}
_propdeclarations = {
}
_compdeclarations = {
}
_enumdeclarations = {
}
......@@ -97,12 +97,3 @@ class Required_Suite_Events(Required_Suite_Events):
#
_classdeclarations = {
}
_propdeclarations = {
}
_compdeclarations = {
}
_enumdeclarations = {
}
......@@ -42,13 +42,13 @@ class Standard_Suite_Events:
class application(aetools.ComponentItem):
"""application - An application program """
want = 'capp'
class selected_text(aetools.NProperty):
class _Prop_selected_text(aetools.NProperty):
"""selected text - the selected text """
which = 'stxt'
want = 'TEXT'
application._superclassnames = []
application._privpropdict = {
'selected_text' : selected_text,
'selected_text' : _Prop_selected_text,
}
application._privelemdict = {
}
......@@ -59,13 +59,3 @@ application._privelemdict = {
_classdeclarations = {
'capp' : application,
}
_propdeclarations = {
'stxt' : selected_text,
}
_compdeclarations = {
}
_enumdeclarations = {
}
......@@ -43,12 +43,3 @@ class URL_Suite_Events:
#
_classdeclarations = {
}
_propdeclarations = {
}
_compdeclarations = {
}
_enumdeclarations = {
}
......@@ -215,12 +215,3 @@ class Web_Browser_Suite_Events:
#
_classdeclarations = {
}
_propdeclarations = {
}
_compdeclarations = {
}
_enumdeclarations = {
}
......@@ -18,35 +18,35 @@ class Containers_and_folders_Events:
class disk(aetools.ComponentItem):
"""disk - A disk """
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 """
which = 'c@#^'
want = 'ctnr'
class capacity(aetools.NProperty):
class _Prop_capacity(aetools.NProperty):
"""capacity - the total number of bytes (free or used) on the disk """
which = 'capa'
want = 'comp'
class ejectable(aetools.NProperty):
class _Prop_ejectable(aetools.NProperty):
"""ejectable - Can the media be ejected (floppies, CD's, and so on)? """
which = 'isej'
want = 'bool'
class format(aetools.NProperty):
class _Prop_format(aetools.NProperty):
"""format - the filesystem format of this disk """
which = 'dfmt'
want = 'edfm'
class free_space(aetools.NProperty):
class _Prop_free_space(aetools.NProperty):
"""free space - the number of free bytes left on the disk """
which = 'frsp'
want = 'comp'
class ignore_privileges(aetools.NProperty):
class _Prop_ignore_privileges(aetools.NProperty):
"""ignore privileges - Ignore permissions on this disk? """
which = 'igpr'
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)? """
which = 'isrv'
want = 'bool'
class startup(aetools.NProperty):
class _Prop_startup(aetools.NProperty):
"""startup - Is this disk the boot disk? """
which = 'istd'
want = 'bool'
......@@ -97,23 +97,23 @@ folders = folder
class container(aetools.ComponentItem):
"""container - An item that contains other items """
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) """
which = 'pexc'
want = 'bool'
class container_window(aetools.NProperty):
class _Prop_container_window(aetools.NProperty):
"""container window - the container window for this folder """
which = 'cwnd'
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 """
which = 'ects'
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? """
which = 'pexa'
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) """
which = 'pexp'
want = 'bool'
......@@ -133,7 +133,7 @@ containers = container
class trash_2d_object(aetools.ComponentItem):
"""trash-object - Trash-object is the class of the \xd2trash\xd3 object """
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? """
which = 'warn'
want = 'bool'
......@@ -151,14 +151,14 @@ disk._superclassnames = ['container']
import Files
import Finder_items
disk._privpropdict = {
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_,
'capacity' : capacity,
'ejectable' : ejectable,
'format' : format,
'free_space' : free_space,
'ignore_privileges' : ignore_privileges,
'local_volume' : local_volume,
'startup' : startup,
'_3c_Inheritance_3e_' : _Prop__3c_Inheritance_3e_,
'capacity' : _Prop_capacity,
'ejectable' : _Prop_ejectable,
'format' : _Prop_format,
'free_space' : _Prop_free_space,
'ignore_privileges' : _Prop_ignore_privileges,
'local_volume' : _Prop_local_volume,
'startup' : _Prop_startup,
}
disk._privelemdict = {
'alias_file' : Files.alias_file,
......@@ -174,7 +174,7 @@ disk._privelemdict = {
}
desktop_2d_object._superclassnames = ['container']
desktop_2d_object._privpropdict = {
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_,
'_3c_Inheritance_3e_' : _Prop__3c_Inheritance_3e_,
}
desktop_2d_object._privelemdict = {
'alias_file' : Files.alias_file,
......@@ -191,7 +191,7 @@ desktop_2d_object._privelemdict = {
}
folder._superclassnames = ['container']
folder._privpropdict = {
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_,
'_3c_Inheritance_3e_' : _Prop__3c_Inheritance_3e_,
}
folder._privelemdict = {
'alias_file' : Files.alias_file,
......@@ -207,12 +207,12 @@ folder._privelemdict = {
}
container._superclassnames = ['item']
container._privpropdict = {
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_,
'completely_expanded' : completely_expanded,
'container_window' : container_window,
'entire_contents' : entire_contents,
'expandable' : expandable,
'expanded' : expanded,
'_3c_Inheritance_3e_' : _Prop__3c_Inheritance_3e_,
'completely_expanded' : _Prop_completely_expanded,
'container_window' : _Prop_container_window,
'entire_contents' : _Prop_entire_contents,
'expandable' : _Prop_expandable,
'expanded' : _Prop_expanded,
}
container._privelemdict = {
'alias_file' : Files.alias_file,
......@@ -228,8 +228,8 @@ container._privelemdict = {
}
trash_2d_object._superclassnames = ['container']
trash_2d_object._privpropdict = {
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_,
'warns_before_emptying' : warns_before_emptying,
'_3c_Inheritance_3e_' : _Prop__3c_Inheritance_3e_,
'warns_before_emptying' : _Prop_warns_before_emptying,
}
trash_2d_object._privelemdict = {
'alias_file' : Files.alias_file,
......@@ -254,26 +254,3 @@ _classdeclarations = {
'ctnr' : container,
'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 = {
#
_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:
class alias_file(aetools.ComponentItem):
"""alias file - An alias file (created with \xd2Make Alias\xd3) """
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 """
which = 'c@#^'
want = 'file'
class original_item(aetools.NProperty):
class _Prop_original_item(aetools.NProperty):
"""original item - the original item pointed to by the alias """
which = 'orig'
want = 'obj '
......@@ -32,27 +32,27 @@ alias_files = alias_file
class application_file(aetools.ComponentItem):
"""application file - An application's file on disk """
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) """
which = 'isab'
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? """
which = 'hscr'
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 """
which = 'mprt'
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? """
which = 'Clsc'
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 """
which = 'appt'
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 """
which = 'sprt'
want = 'long'
......@@ -62,7 +62,7 @@ application_files = application_file
class clipping(aetools.ComponentItem):
"""clipping - A clipping """
want = 'clpf'
class clipping_window(aetools.NProperty):
class _Prop_clipping_window(aetools.NProperty):
"""clipping window - (NOT AVAILABLE YET) the clipping window for this clipping """
which = 'lwnd'
want = 'obj '
......@@ -78,23 +78,23 @@ document_files = document_file
class file(aetools.ComponentItem):
"""file - A 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 """
which = 'fcrt'
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 """
which = 'asty'
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) """
which = 'ver2'
want = 'utxt'
class stationery(aetools.NProperty):
class _Prop_stationery(aetools.NProperty):
"""stationery - Is the file a stationery pad? """
which = 'pspd'
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) """
which = 'vers'
want = 'utxt'
......@@ -104,7 +104,7 @@ files = file
class internet_location_file(aetools.ComponentItem):
"""internet location file - An file containing an internet location """
want = 'inlf'
class location(aetools.NProperty):
class _Prop_location(aetools.NProperty):
"""location - the internet location """
which = 'iloc'
want = 'utxt'
......@@ -118,58 +118,58 @@ class package(aetools.ComponentItem):
packages = package
alias_file._superclassnames = ['file']
alias_file._privpropdict = {
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_,
'original_item' : original_item,
'_3c_Inheritance_3e_' : _Prop__3c_Inheritance_3e_,
'original_item' : _Prop_original_item,
}
alias_file._privelemdict = {
}
application_file._superclassnames = ['file']
application_file._privpropdict = {
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_,
'accepts_high_level_events' : accepts_high_level_events,
'has_scripting_terminology' : has_scripting_terminology,
'minimum_size' : minimum_size,
'opens_in_Classic' : opens_in_Classic,
'preferred_size' : preferred_size,
'suggested_size' : suggested_size,
'_3c_Inheritance_3e_' : _Prop__3c_Inheritance_3e_,
'accepts_high_level_events' : _Prop_accepts_high_level_events,
'has_scripting_terminology' : _Prop_has_scripting_terminology,
'minimum_size' : _Prop_minimum_size,
'opens_in_Classic' : _Prop_opens_in_Classic,
'preferred_size' : _Prop_preferred_size,
'suggested_size' : _Prop_suggested_size,
}
application_file._privelemdict = {
}
clipping._superclassnames = ['file']
clipping._privpropdict = {
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_,
'clipping_window' : clipping_window,
'_3c_Inheritance_3e_' : _Prop__3c_Inheritance_3e_,
'clipping_window' : _Prop_clipping_window,
}
clipping._privelemdict = {
}
document_file._superclassnames = ['file']
document_file._privpropdict = {
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_,
'_3c_Inheritance_3e_' : _Prop__3c_Inheritance_3e_,
}
document_file._privelemdict = {
}
import Finder_items
file._superclassnames = ['item']
file._privpropdict = {
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_,
'creator_type' : creator_type,
'file_type' : file_type,
'product_version' : product_version,
'stationery' : stationery,
'version' : version,
'_3c_Inheritance_3e_' : _Prop__3c_Inheritance_3e_,
'creator_type' : _Prop_creator_type,
'file_type' : _Prop_file_type,
'product_version' : _Prop_product_version,
'stationery' : _Prop_stationery,
'version' : _Prop_version,
}
file._privelemdict = {
}
internet_location_file._superclassnames = ['file']
internet_location_file._privpropdict = {
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_,
'location' : location,
'_3c_Inheritance_3e_' : _Prop__3c_Inheritance_3e_,
'location' : _Prop_location,
}
internet_location_file._privelemdict = {
}
package._superclassnames = ['item']
package._privpropdict = {
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_,
'_3c_Inheritance_3e_' : _Prop__3c_Inheritance_3e_,
}
package._privelemdict = {
}
......@@ -186,27 +186,3 @@ _classdeclarations = {
'inlf' : internet_location_file,
'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:
class application(aetools.ComponentItem):
"""application - The Finder """
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 """
which = 'pfrp'
want = 'cprf'
class clipboard(aetools.NProperty):
class _Prop_clipboard(aetools.NProperty):
"""clipboard - (NOT AVAILABLE YET) the Finder\xd5s clipboard window """
which = 'pcli'
want = 'obj '
class desktop(aetools.NProperty):
class _Prop_desktop(aetools.NProperty):
"""desktop - the desktop """
which = 'desk'
want = 'cdsk'
class frontmost(aetools.NProperty):
class _Prop_frontmost(aetools.NProperty):
"""frontmost - Is the Finder the frontmost process? """
which = 'pisf'
want = 'bool'
class home(aetools.NProperty):
class _Prop_home(aetools.NProperty):
"""home - the home directory """
which = 'home'
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 """
which = 'pins'
want = 'obj '
class name(aetools.NProperty):
class _Prop_name(aetools.NProperty):
"""name - the Finder\xd5s name """
which = 'pnam'
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 """
which = 'ver2'
want = 'utxt'
class selection(aetools.NProperty):
class _Prop_selection(aetools.NProperty):
"""selection - the selection in the frontmost Finder window """
which = 'sele'
want = 'obj '
class startup_disk(aetools.NProperty):
class _Prop_startup_disk(aetools.NProperty):
"""startup disk - the startup disk """
which = 'sdsk'
want = 'cdis'
class trash(aetools.NProperty):
class _Prop_trash(aetools.NProperty):
"""trash - the trash """
which = 'trsh'
want = 'ctrs'
class version(aetools.NProperty):
class _Prop_version(aetools.NProperty):
"""version - the version of the Finder """
which = 'vers'
want = 'utxt'
class visible(aetools.NProperty):
class _Prop_visible(aetools.NProperty):
"""visible - Is the Finder\xd5s layer visible? """
which = 'pvis'
want = 'bool'
......@@ -133,19 +133,19 @@ import Window_classes
import Containers_and_folders
import Finder_items
application._privpropdict = {
'Finder_preferences' : Finder_preferences,
'clipboard' : clipboard,
'desktop' : desktop,
'frontmost' : frontmost,
'home' : home,
'insertion_location' : insertion_location,
'name' : name,
'product_version' : product_version,
'selection' : selection,
'startup_disk' : startup_disk,
'trash' : trash,
'version' : version,
'visible' : visible,
'Finder_preferences' : _Prop_Finder_preferences,
'clipboard' : _Prop_clipboard,
'desktop' : _Prop_desktop,
'frontmost' : _Prop_frontmost,
'home' : _Prop_home,
'insertion_location' : _Prop_insertion_location,
'name' : _Prop_name,
'product_version' : _Prop_product_version,
'selection' : _Prop_selection,
'startup_disk' : _Prop_startup_disk,
'trash' : _Prop_trash,
'version' : _Prop_version,
'visible' : _Prop_visible,
}
application._privelemdict = {
'Finder_window' : Window_classes.Finder_window,
......@@ -170,25 +170,3 @@ application._privelemdict = {
_classdeclarations = {
'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:
class item(aetools.ComponentItem):
"""item - An item """
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) """
which = 'pbnd'
want = 'qdrt'
class comment(aetools.NProperty):
class _Prop_comment(aetools.NProperty):
"""comment - the comment of the item, displayed in the \xd2Get Info\xd3 window """
which = 'comt'
want = 'utxt'
class container(aetools.NProperty):
class _Prop_container(aetools.NProperty):
"""container - the container of the item """
which = 'ctnr'
want = 'obj '
class creation_date(aetools.NProperty):
class _Prop_creation_date(aetools.NProperty):
"""creation date - the date on which the item was created """
which = 'ascd'
want = 'ldt '
class description(aetools.NProperty):
class _Prop_description(aetools.NProperty):
"""description - a description of the item """
which = 'dscr'
want = 'utxt'
class disk(aetools.NProperty):
class _Prop_disk(aetools.NProperty):
"""disk - the disk on which the item is stored """
which = 'cdis'
want = 'obj '
class displayed_name(aetools.NProperty):
class _Prop_displayed_name(aetools.NProperty):
"""displayed name - the user-visible name of the item """
which = 'dnam'
want = 'utxt'
class everyones_privileges(aetools.NProperty):
class _Prop_everyones_privileges(aetools.NProperty):
"""everyones privileges - """
which = 'gstp'
want = 'priv'
class extension_hidden(aetools.NProperty):
class _Prop_extension_hidden(aetools.NProperty):
"""extension hidden - Is the item's extension hidden from the user? """
which = 'hidx'
want = 'bool'
class group(aetools.NProperty):
class _Prop_group(aetools.NProperty):
"""group - the user or group that has special access to the container """
which = 'sgrp'
want = 'utxt'
class group_privileges(aetools.NProperty):
class _Prop_group_privileges(aetools.NProperty):
"""group privileges - """
which = 'gppr'
want = 'priv'
class icon(aetools.NProperty):
class _Prop_icon(aetools.NProperty):
"""icon - the icon bitmap of the item """
which = 'iimg'
want = 'ifam'
class index(aetools.NProperty):
class _Prop_index(aetools.NProperty):
"""index - the index in the front-to-back ordering within its container """
which = 'pidx'
want = 'long'
class information_window(aetools.NProperty):
class _Prop_information_window(aetools.NProperty):
"""information window - the information window for the item """
which = 'iwnd'
want = 'obj '
class kind(aetools.NProperty):
class _Prop_kind(aetools.NProperty):
"""kind - the kind of the item """
which = 'kind'
want = 'utxt'
class label_index(aetools.NProperty):
class _Prop_label_index(aetools.NProperty):
"""label index - the label of the item """
which = 'labi'
want = 'long'
class locked(aetools.NProperty):
class _Prop_locked(aetools.NProperty):
"""locked - Is the file locked? """
which = 'aslk'
want = 'bool'
class modification_date(aetools.NProperty):
class _Prop_modification_date(aetools.NProperty):
"""modification date - the date on which the item was last modified """
which = 'asmo'
want = 'ldt '
class name(aetools.NProperty):
class _Prop_name(aetools.NProperty):
"""name - the name of the item """
which = 'pnam'
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) """
which = 'nmxt'
want = 'utxt'
class owner(aetools.NProperty):
class _Prop_owner(aetools.NProperty):
"""owner - the user that owns the container """
which = 'sown'
want = 'utxt'
class owner_privileges(aetools.NProperty):
class _Prop_owner_privileges(aetools.NProperty):
"""owner privileges - """
which = 'ownr'
want = 'priv'
class physical_size(aetools.NProperty):
class _Prop_physical_size(aetools.NProperty):
"""physical size - the actual space used by the item on disk """
which = 'phys'
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) """
which = 'posn'
want = 'QDpt'
class properties(aetools.NProperty):
class _Prop_properties(aetools.NProperty):
"""properties - every property of an item """
which = 'pALL'
want = 'reco'
class size(aetools.NProperty):
class _Prop_size(aetools.NProperty):
"""size - the logical size of the item """
which = 'ptsz'
want = 'comp'
class url(aetools.NProperty):
class _Prop_url(aetools.NProperty):
"""url - the url of the item """
which = 'pURL'
want = 'utxt'
......@@ -280,33 +280,33 @@ class url(aetools.NProperty):
items = item
item._superclassnames = []
item._privpropdict = {
'bounds' : bounds,
'comment' : comment,
'container' : container,
'creation_date' : creation_date,
'description' : description,
'disk' : disk,
'displayed_name' : displayed_name,
'everyones_privileges' : everyones_privileges,
'extension_hidden' : extension_hidden,
'group' : group,
'group_privileges' : group_privileges,
'icon' : icon,
'index' : index,
'information_window' : information_window,
'kind' : kind,
'label_index' : label_index,
'locked' : locked,
'modification_date' : modification_date,
'name' : name,
'name_extension' : name_extension,
'owner' : owner,
'owner_privileges' : owner_privileges,
'physical_size' : physical_size,
'position' : position,
'properties' : properties,
'size' : size,
'url' : url,
'bounds' : _Prop_bounds,
'comment' : _Prop_comment,
'container' : _Prop_container,
'creation_date' : _Prop_creation_date,
'description' : _Prop_description,
'disk' : _Prop_disk,
'displayed_name' : _Prop_displayed_name,
'everyones_privileges' : _Prop_everyones_privileges,
'extension_hidden' : _Prop_extension_hidden,
'group' : _Prop_group,
'group_privileges' : _Prop_group_privileges,
'icon' : _Prop_icon,
'index' : _Prop_index,
'information_window' : _Prop_information_window,
'kind' : _Prop_kind,
'label_index' : _Prop_label_index,
'locked' : _Prop_locked,
'modification_date' : _Prop_modification_date,
'name' : _Prop_name,
'name_extension' : _Prop_name_extension,
'owner' : _Prop_owner,
'owner_privileges' : _Prop_owner_privileges,
'physical_size' : _Prop_physical_size,
'position' : _Prop_position,
'properties' : _Prop_properties,
'size' : _Prop_size,
'url' : _Prop_url,
}
item._privelemdict = {
}
......@@ -317,39 +317,3 @@ item._privelemdict = {
_classdeclarations = {
'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:
class application(aetools.ComponentItem):
"""application - The Finder """
want = 'capp'
class desktop_picture(aetools.NProperty):
class _Prop_desktop_picture(aetools.NProperty):
"""desktop picture - the desktop picture of the main monitor """
which = 'dpic'
want = 'file'
......@@ -81,11 +81,11 @@ class desktop_picture(aetools.NProperty):
class application_process(aetools.ComponentItem):
"""application process - A process launched from an application file """
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 """
which = 'c@#^'
want = 'prcs'
class application_file(aetools.NProperty):
class _Prop_application_file(aetools.NProperty):
"""application file - the application file from which this process was launched """
which = 'appf'
want = 'appf'
......@@ -95,7 +95,7 @@ application_processes = application_process
class desk_accessory_process(aetools.ComponentItem):
"""desk accessory process - A process launched from a desk accessory file """
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 """
which = 'dafi'
want = 'obj '
......@@ -105,47 +105,47 @@ desk_accessory_processes = desk_accessory_process
class process(aetools.ComponentItem):
"""process - A process running on this computer """
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)? """
which = 'isab'
want = 'bool'
class accepts_remote_events(aetools.NProperty):
class _Prop_accepts_remote_events(aetools.NProperty):
"""accepts remote events - Does the process accept remote events? """
which = 'revt'
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) """
which = 'fcrt'
want = 'type'
class file(aetools.NProperty):
class _Prop_file(aetools.NProperty):
"""file - the file from which the process was launched """
which = 'file'
want = 'obj '
class file_type(aetools.NProperty):
class _Prop_file_type(aetools.NProperty):
"""file type - the OSType of the file type of the process """
which = 'asty'
want = 'type'
class frontmost(aetools.NProperty):
class _Prop_frontmost(aetools.NProperty):
"""frontmost - Is the process the frontmost process? """
which = 'pisf'
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? """
which = 'hscr'
want = 'bool'
class name(aetools.NProperty):
class _Prop_name(aetools.NProperty):
"""name - the name of the process """
which = 'pnam'
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 """
which = 'pusd'
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 """
which = 'appt'
want = 'long'
class visible(aetools.NProperty):
class _Prop_visible(aetools.NProperty):
"""visible - Is the process' layer visible? """
which = 'pvis'
want = 'bool'
......@@ -153,37 +153,37 @@ class visible(aetools.NProperty):
processes = process
application._superclassnames = []
application._privpropdict = {
'desktop_picture' : desktop_picture,
'desktop_picture' : _Prop_desktop_picture,
}
application._privelemdict = {
}
application_process._superclassnames = ['process']
application_process._privpropdict = {
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_,
'application_file' : application_file,
'_3c_Inheritance_3e_' : _Prop__3c_Inheritance_3e_,
'application_file' : _Prop_application_file,
}
application_process._privelemdict = {
}
desk_accessory_process._superclassnames = ['process']
desk_accessory_process._privpropdict = {
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_,
'desk_accessory_file' : desk_accessory_file,
'_3c_Inheritance_3e_' : _Prop__3c_Inheritance_3e_,
'desk_accessory_file' : _Prop_desk_accessory_file,
}
desk_accessory_process._privelemdict = {
}
process._superclassnames = []
process._privpropdict = {
'accepts_high_level_events' : accepts_high_level_events,
'accepts_remote_events' : accepts_remote_events,
'creator_type' : creator_type,
'file' : file,
'file_type' : file_type,
'frontmost' : frontmost,
'has_scripting_terminology' : has_scripting_terminology,
'name' : name,
'partition_space_used' : partition_space_used,
'total_partition_size' : total_partition_size,
'visible' : visible,
'accepts_high_level_events' : _Prop_accepts_high_level_events,
'accepts_remote_events' : _Prop_accepts_remote_events,
'creator_type' : _Prop_creator_type,
'file' : _Prop_file,
'file_type' : _Prop_file_type,
'frontmost' : _Prop_frontmost,
'has_scripting_terminology' : _Prop_has_scripting_terminology,
'name' : _Prop_name,
'partition_space_used' : _Prop_partition_space_used,
'total_partition_size' : _Prop_total_partition_size,
'visible' : _Prop_visible,
}
process._privelemdict = {
}
......@@ -197,27 +197,3 @@ _classdeclarations = {
'pcda' : desk_accessory_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!!
#
_classdeclarations = {
}
_propdeclarations = {
}
_compdeclarations = {
}
_enumdeclarations = {
}
......@@ -18,23 +18,23 @@ class Window_classes_Events:
class Finder_window(aetools.ComponentItem):
"""Finder window - A file viewer window """
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 """
which = 'c@#^'
want = 'cwin'
class current_view(aetools.NProperty):
class _Prop_current_view(aetools.NProperty):
"""current view - the current view for the container window """
which = 'pvew'
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 """
which = '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 """
which = 'lvop'
want = 'lvop'
class target(aetools.NProperty):
class _Prop_target(aetools.NProperty):
"""target - the container at which this file viewer is targeted """
which = 'fvtg'
want = 'obj '
......@@ -44,67 +44,67 @@ Finder_windows = Finder_window
class window(aetools.ComponentItem):
"""window - A window """
want = 'cwin'
class bounds(aetools.NProperty):
class _Prop_bounds(aetools.NProperty):
"""bounds - the boundary rectangle for the window """
which = 'pbnd'
want = 'qdrt'
class closeable(aetools.NProperty):
class _Prop_closeable(aetools.NProperty):
"""closeable - Does the window have a close box? """
which = 'hclb'
want = 'bool'
class collapsed(aetools.NProperty):
class _Prop_collapsed(aetools.NProperty):
"""collapsed - Is the window collapsed """
which = 'wshd'
want = 'bool'
class floating(aetools.NProperty):
class _Prop_floating(aetools.NProperty):
"""floating - Does the window have a title bar? """
which = 'isfl'
want = 'bool'
class id(aetools.NProperty):
class _Prop_id(aetools.NProperty):
"""id - the unique id for this window """
which = 'ID '
want = 'magn'
class index(aetools.NProperty):
class _Prop_index(aetools.NProperty):
"""index - the number of the window in the front-to-back layer ordering """
which = 'pidx'
want = 'long'
class modal(aetools.NProperty):
class _Prop_modal(aetools.NProperty):
"""modal - Is the window modal? """
which = 'pmod'
want = 'bool'
class name(aetools.NProperty):
class _Prop_name(aetools.NProperty):
"""name - the name of the window """
which = 'pnam'
want = 'utxt'
class position(aetools.NProperty):
class _Prop_position(aetools.NProperty):
"""position - the upper left position of the window """
which = 'posn'
want = 'QDpt'
class properties(aetools.NProperty):
class _Prop_properties(aetools.NProperty):
"""properties - every property of a window """
which = 'pALL'
want = 'reco'
class resizable(aetools.NProperty):
class _Prop_resizable(aetools.NProperty):
"""resizable - Is the window resizable? """
which = 'prsz'
want = 'bool'
class titled(aetools.NProperty):
class _Prop_titled(aetools.NProperty):
"""titled - Does the window have a title bar? """
which = 'ptit'
want = 'bool'
class visible(aetools.NProperty):
class _Prop_visible(aetools.NProperty):
"""visible - Is the window visible (always true for open Finder windows)? """
which = 'pvis'
want = 'bool'
class zoomable(aetools.NProperty):
class _Prop_zoomable(aetools.NProperty):
"""zoomable - Is the window zoomable? """
which = 'iszm'
want = 'bool'
class zoomed(aetools.NProperty):
class _Prop_zoomed(aetools.NProperty):
"""zoomed - Is the window zoomed? """
which = 'pzum'
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) """
which = 'zumf'
want = 'bool'
......@@ -114,11 +114,11 @@ windows = window
class information_window(aetools.ComponentItem):
"""information window - An inspector window (opened by \xd2Show Info\xd3) """
want = 'iwnd'
class current_panel(aetools.NProperty):
class _Prop_current_panel(aetools.NProperty):
"""current panel - the current panel in the information window """
which = 'panl'
want = 'ipnl'
class item(aetools.NProperty):
class _Prop_item(aetools.NProperty):
"""item - the item from which this window was opened """
which = 'cobj'
want = 'obj '
......@@ -134,53 +134,53 @@ class preferences_window(aetools.ComponentItem):
want = 'pwnd'
Finder_window._superclassnames = ['window']
Finder_window._privpropdict = {
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_,
'current_view' : current_view,
'icon_view_options' : icon_view_options,
'list_view_options' : list_view_options,
'target' : target,
'_3c_Inheritance_3e_' : _Prop__3c_Inheritance_3e_,
'current_view' : _Prop_current_view,
'icon_view_options' : _Prop_icon_view_options,
'list_view_options' : _Prop_list_view_options,
'target' : _Prop_target,
}
Finder_window._privelemdict = {
}
window._superclassnames = []
window._privpropdict = {
'bounds' : bounds,
'closeable' : closeable,
'collapsed' : collapsed,
'floating' : floating,
'id' : id,
'index' : index,
'modal' : modal,
'name' : name,
'position' : position,
'properties' : properties,
'resizable' : resizable,
'titled' : titled,
'visible' : visible,
'zoomable' : zoomable,
'zoomed' : zoomed,
'zoomed_full_size' : zoomed_full_size,
'bounds' : _Prop_bounds,
'closeable' : _Prop_closeable,
'collapsed' : _Prop_collapsed,
'floating' : _Prop_floating,
'id' : _Prop_id,
'index' : _Prop_index,
'modal' : _Prop_modal,
'name' : _Prop_name,
'position' : _Prop_position,
'properties' : _Prop_properties,
'resizable' : _Prop_resizable,
'titled' : _Prop_titled,
'visible' : _Prop_visible,
'zoomable' : _Prop_zoomable,
'zoomed' : _Prop_zoomed,
'zoomed_full_size' : _Prop_zoomed_full_size,
}
window._privelemdict = {
}
information_window._superclassnames = ['window']
information_window._privpropdict = {
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_,
'current_panel' : current_panel,
'item' : item,
'_3c_Inheritance_3e_' : _Prop__3c_Inheritance_3e_,
'current_panel' : _Prop_current_panel,
'item' : _Prop_item,
}
information_window._privelemdict = {
}
clipping_window._superclassnames = ['window']
clipping_window._privpropdict = {
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_,
'_3c_Inheritance_3e_' : _Prop__3c_Inheritance_3e_,
}
clipping_window._privelemdict = {
}
preferences_window._superclassnames = ['window']
preferences_window._privpropdict = {
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_,
'current_panel' : current_panel,
'_3c_Inheritance_3e_' : _Prop__3c_Inheritance_3e_,
'current_panel' : _Prop_current_panel,
}
preferences_window._privelemdict = {
}
......@@ -195,35 +195,3 @@ _classdeclarations = {
'lwnd' : clipping_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
#
# Set property and element dictionaries now that all classes have been defined
#
getbaseclasses(item)
getbaseclasses(application)
getbaseclasses(trash_2d_object)
getbaseclasses(desktop_2d_object)
getbaseclasses(container)
getbaseclasses(folder)
getbaseclasses(disk)
getbaseclasses(item)
getbaseclasses(package)
getbaseclasses(file)
getbaseclasses(application_file)
......@@ -86,6 +86,10 @@ getbaseclasses(Finder_window)
getbaseclasses(window)
getbaseclasses(clipping_window)
getbaseclasses(information_window)
getbaseclasses(process)
getbaseclasses(application_process)
getbaseclasses(desk_accessory_process)
getbaseclasses(application)
getbaseclasses(icon_view_options)
getbaseclasses(label)
getbaseclasses(column)
......@@ -93,10 +97,6 @@ getbaseclasses(preferences)
getbaseclasses(alias_list)
getbaseclasses(icon_family)
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.version)
getbaseclasses(StdSuites.Type_Names_Suite.RGB16_color)
......@@ -132,7 +132,7 @@ getbaseclasses(StdSuites.Type_Names_Suite.type_parameter_info)
getbaseclasses(StdSuites.Type_Names_Suite.extended_real)
getbaseclasses(StdSuites.Type_Names_Suite.long_rectangle)
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.null)
getbaseclasses(StdSuites.Type_Names_Suite.location_reference)
......@@ -142,13 +142,13 @@ getbaseclasses(StdSuites.Type_Names_Suite.bounding_rectangle)
# Indices of types declared in this module
#
_classdeclarations = {
'cobj' : item,
'capp' : application,
'ctrs' : trash_2d_object,
'cdsk' : desktop_2d_object,
'ctnr' : container,
'cfol' : folder,
'cdis' : disk,
'cobj' : item,
'pack' : package,
'file' : file,
'appf' : application_file,
......@@ -161,6 +161,10 @@ _classdeclarations = {
'cwin' : window,
'lwnd' : clipping_window,
'iwnd' : information_window,
'prcs' : process,
'pcap' : application_process,
'pcda' : desk_accessory_process,
'capp' : application,
'icop' : icon_view_options,
'clbl' : label,
'lvcl' : column,
......@@ -168,10 +172,6 @@ _classdeclarations = {
'alst' : alias_list,
'ifam' : icon_family,
'lvop' : list_view_options,
'prcs' : process,
'pcap' : application_process,
'pcda' : desk_accessory_process,
'capp' : application,
'comp' : StdSuites.Type_Names_Suite.double_integer,
'vers' : StdSuites.Type_Names_Suite.version,
'tr16' : StdSuites.Type_Names_Suite.RGB16_color,
......@@ -207,7 +207,7 @@ _classdeclarations = {
'exte' : StdSuites.Type_Names_Suite.extended_real,
'lrct' : StdSuites.Type_Names_Suite.long_rectangle,
'tdas' : StdSuites.Type_Names_Suite.dash_style,
'TEXT' : StdSuites.Type_Names_Suite.plain_text,
'TEXT' : StdSuites.Type_Names_Suite.string,
'sing' : StdSuites.Type_Names_Suite.small_real,
'null' : StdSuites.Type_Names_Suite.null,
'insl' : StdSuites.Type_Names_Suite.location_reference,
......
......@@ -255,15 +255,3 @@ _Enum_ncmd = {
#
_classdeclarations = {
}
_propdeclarations = {
}
_compdeclarations = {
}
_enumdeclarations = {
'comp' : _Enum_comp,
'dire' : _Enum_dire,
'ncmd' : _Enum_ncmd,
}
......@@ -74,13 +74,3 @@ _Enum_dbac = {
#
_classdeclarations = {
}
_propdeclarations = {
}
_compdeclarations = {
}
_enumdeclarations = {
'dbac' : _Enum_dbac,
}
......@@ -97,12 +97,3 @@ class Required_suite_Events(Required_Suite_Events):
#
_classdeclarations = {
}
_propdeclarations = {
}
_compdeclarations = {
}
_enumdeclarations = {
}
......@@ -104,11 +104,11 @@ class Standard_Suite_Events(Standard_Suite_Events):
class application(aetools.ComponentItem):
"""application - An application program """
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. """
which = 'ALAP'
want = 'type'
class kiosk_mode(aetools.NProperty):
class _Prop_kiosk_mode(aetools.NProperty):
"""kiosk mode - Kiosk mode leaves very few menus enabled """
which = 'KOSK'
want = 'long'
......@@ -117,91 +117,91 @@ class kiosk_mode(aetools.NProperty):
class window(aetools.ComponentItem):
"""window - A Window """
want = 'cwin'
class URL(aetools.NProperty):
class _Prop_URL(aetools.NProperty):
"""URL - Current URL """
which = 'curl'
want = 'TEXT'
class bounds(aetools.NProperty):
class _Prop_bounds(aetools.NProperty):
"""bounds - the boundary rectangle for the window """
which = 'pbnd'
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 """
which = 'busy'
want = 'long'
class closeable(aetools.NProperty):
class _Prop_closeable(aetools.NProperty):
"""closeable - Does the window have a close box? """
which = 'hclb'
want = 'bool'
class floating(aetools.NProperty):
class _Prop_floating(aetools.NProperty):
"""floating - Does the window float? """
which = 'isfl'
want = 'bool'
class index(aetools.NProperty):
class _Prop_index(aetools.NProperty):
"""index - the number of the window """
which = 'pidx'
want = 'long'
class modal(aetools.NProperty):
class _Prop_modal(aetools.NProperty):
"""modal - Is the window modal? """
which = 'pmod'
want = 'bool'
class name(aetools.NProperty):
class _Prop_name(aetools.NProperty):
"""name - the title of the window """
which = 'pnam'
want = 'itxt'
class position(aetools.NProperty):
class _Prop_position(aetools.NProperty):
"""position - upper left coordinates of window """
which = 'ppos'
want = 'QDpt'
class resizable(aetools.NProperty):
class _Prop_resizable(aetools.NProperty):
"""resizable - Is the window resizable? """
which = 'prsz'
want = 'bool'
class titled(aetools.NProperty):
class _Prop_titled(aetools.NProperty):
"""titled - Does the window have a title bar? """
which = 'ptit'
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) """
which = 'wiid'
want = 'long'
class visible(aetools.NProperty):
class _Prop_visible(aetools.NProperty):
"""visible - is the window visible? """
which = 'pvis'
want = 'bool'
class zoomable(aetools.NProperty):
class _Prop_zoomable(aetools.NProperty):
"""zoomable - Is the window zoomable? """
which = 'iszm'
want = 'bool'
class zoomed(aetools.NProperty):
class _Prop_zoomed(aetools.NProperty):
"""zoomed - Is the window zoomed? """
which = 'pzum'
want = 'bool'
application._superclassnames = []
application._privpropdict = {
'alert_application' : alert_application,
'kiosk_mode' : kiosk_mode,
'alert_application' : _Prop_alert_application,
'kiosk_mode' : _Prop_kiosk_mode,
}
application._privelemdict = {
'window' : window,
}
window._superclassnames = []
window._privpropdict = {
'URL' : URL,
'bounds' : bounds,
'busy' : busy,
'closeable' : closeable,
'floating' : floating,
'index' : index,
'modal' : modal,
'name' : name,
'position' : position,
'resizable' : resizable,
'titled' : titled,
'unique_ID' : unique_ID,
'visible' : visible,
'zoomable' : zoomable,
'zoomed' : zoomed,
'URL' : _Prop_URL,
'bounds' : _Prop_bounds,
'busy' : _Prop_busy,
'closeable' : _Prop_closeable,
'floating' : _Prop_floating,
'index' : _Prop_index,
'modal' : _Prop_modal,
'name' : _Prop_name,
'position' : _Prop_position,
'resizable' : _Prop_resizable,
'titled' : _Prop_titled,
'unique_ID' : _Prop_unique_ID,
'visible' : _Prop_visible,
'zoomable' : _Prop_zoomable,
'zoomed' : _Prop_zoomed,
}
window._privelemdict = {
}
......@@ -213,29 +213,3 @@ _classdeclarations = {
'capp' : application,
'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:
#
_classdeclarations = {
}
_propdeclarations = {
}
_compdeclarations = {
}
_enumdeclarations = {
}
......@@ -19,23 +19,23 @@ class Text_Events(Text_Suite_Events):
class text(aetools.ComponentItem):
"""text - independent text view objects """
want = 'ctxt'
class beginning(aetools.NProperty):
class _Prop_beginning(aetools.NProperty):
"""beginning - Beginning of element """
which = 'bgng'
want = 'obj '
class end(aetools.NProperty):
class _Prop_end(aetools.NProperty):
"""end - Ending of element """
which = 'end '
want = 'obj '
class infront(aetools.NProperty):
class _Prop_infront(aetools.NProperty):
"""infront - Immediately before element """
which = 'pBef'
want = 'obj '
class justbehind(aetools.NProperty):
class _Prop_justbehind(aetools.NProperty):
"""justbehind - Immediately after element """
which = 'pAft'
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. """
which = 'pUpL'
want = 'long'
......@@ -44,27 +44,27 @@ class updateLevel(aetools.NProperty):
class styleset(aetools.ComponentItem):
"""styleset - A style \xd2set\xd3 that may be used repeatedly in text objects. """
want = 'stys'
class color(aetools.NProperty):
class _Prop_color(aetools.NProperty):
"""color - the color """
which = 'colr'
want = 'RGB '
class font(aetools.NProperty):
class _Prop_font(aetools.NProperty):
"""font - font name """
which = 'font'
want = 'TEXT'
class name(aetools.NProperty):
class _Prop_name(aetools.NProperty):
"""name - style name """
which = 'pnam'
want = 'TEXT'
class size(aetools.NProperty):
class _Prop_size(aetools.NProperty):
"""size - the size in points """
which = 'ptsz'
want = 'long'
class style(aetools.NProperty):
class _Prop_style(aetools.NProperty):
"""style - the text styles or face attributes """
which = 'txst'
want = 'tsty'
class writing_code(aetools.NProperty):
class _Prop_writing_code(aetools.NProperty):
"""writing code - the script system and language """
which = 'psct'
want = 'tsty'
......@@ -72,23 +72,23 @@ class writing_code(aetools.NProperty):
stylesets = styleset
text._superclassnames = []
text._privpropdict = {
'beginning' : beginning,
'end' : end,
'infront' : infront,
'justbehind' : justbehind,
'updateLevel' : updateLevel,
'beginning' : _Prop_beginning,
'end' : _Prop_end,
'infront' : _Prop_infront,
'justbehind' : _Prop_justbehind,
'updateLevel' : _Prop_updateLevel,
}
text._privelemdict = {
'styleset' : styleset,
}
styleset._superclassnames = []
styleset._privpropdict = {
'color' : color,
'font' : font,
'name' : name,
'size' : size,
'style' : style,
'writing_code' : writing_code,
'color' : _Prop_color,
'font' : _Prop_font,
'name' : _Prop_name,
'size' : _Prop_size,
'style' : _Prop_style,
'writing_code' : _Prop_writing_code,
}
styleset._privelemdict = {
}
......@@ -100,23 +100,3 @@ _classdeclarations = {
'ctxt' : text,
'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:
#
_classdeclarations = {
}
_propdeclarations = {
}
_compdeclarations = {
}
_enumdeclarations = {
}
......@@ -61,8 +61,6 @@ import StdSuites
#
getbaseclasses(window)
getbaseclasses(application)
getbaseclasses(text)
getbaseclasses(styleset)
getbaseclasses(StdSuites.Text_Suite.text_flow)
getbaseclasses(StdSuites.Text_Suite.character)
getbaseclasses(StdSuites.Text_Suite.text_style_info)
......@@ -70,6 +68,8 @@ getbaseclasses(StdSuites.Text_Suite.line)
getbaseclasses(StdSuites.Text_Suite.word)
getbaseclasses(StdSuites.Text_Suite.paragraph)
getbaseclasses(StdSuites.Text_Suite.text)
getbaseclasses(text)
getbaseclasses(styleset)
#
# Indices of types declared in this module
......@@ -77,8 +77,6 @@ getbaseclasses(StdSuites.Text_Suite.text)
_classdeclarations = {
'cwin' : window,
'capp' : application,
'ctxt' : text,
'stys' : styleset,
'cflo' : StdSuites.Text_Suite.text_flow,
'cha ' : StdSuites.Text_Suite.character,
'tsty' : StdSuites.Text_Suite.text_style_info,
......@@ -86,6 +84,8 @@ _classdeclarations = {
'cwor' : StdSuites.Text_Suite.word,
'cpar' : StdSuites.Text_Suite.paragraph,
'ctxt' : StdSuites.Text_Suite.text,
'ctxt' : text,
'stys' : styleset,
}
......
......@@ -18,15 +18,15 @@ class QuickDraw_Graphics_Suppleme_Events:
class drawing_area(aetools.ComponentItem):
"""drawing area - Container for graphics and supporting information """
want = 'cdrw'
class rotation(aetools.NProperty):
class _Prop_rotation(aetools.NProperty):
"""rotation - the default rotation for objects in the drawing area """
which = 'prot'
want = 'trot'
class scale(aetools.NProperty):
class _Prop_scale(aetools.NProperty):
"""scale - the default scaling for objects in the drawing area """
which = 'pscl'
want = 'fixd'
class translation(aetools.NProperty):
class _Prop_translation(aetools.NProperty):
"""translation - the default repositioning for objects in the drawing area """
which = 'ptrs'
want = 'QDpt'
......@@ -40,9 +40,9 @@ class graphic_groups(aetools.ComponentItem):
graphic_group = graphic_groups
drawing_area._superclassnames = []
drawing_area._privpropdict = {
'rotation' : rotation,
'scale' : scale,
'translation' : translation,
'rotation' : _Prop_rotation,
'scale' : _Prop_scale,
'translation' : _Prop_translation,
}
drawing_area._privelemdict = {
}
......@@ -59,15 +59,3 @@ _classdeclarations = {
'cdrw' : drawing_area,
'cpic' : graphic_groups,
}
_propdeclarations = {
'prot' : rotation,
'pscl' : scale,
'ptrs' : translation,
}
_compdeclarations = {
}
_enumdeclarations = {
}
......@@ -21,12 +21,3 @@ class Required_Suite_Events(builtin_Suite_Events):
#
_classdeclarations = {
}
_propdeclarations = {
}
_compdeclarations = {
}
_enumdeclarations = {
}
......@@ -18,11 +18,11 @@ class Table_Suite_Events:
class cell(aetools.ComponentItem):
"""cell - A cell """
want = 'ccel'
class formula(aetools.NProperty):
class _Prop_formula(aetools.NProperty):
"""formula - the formula of the cell """
which = 'pfor'
want = 'ctxt'
class protection(aetools.NProperty):
class _Prop_protection(aetools.NProperty):
"""protection - Indicates whether value or formula in the cell can be changed """
which = 'ppro'
want = 'prtn'
......@@ -32,7 +32,7 @@ cells = cell
class column(aetools.ComponentItem):
"""column - A column """
want = 'ccol'
class name(aetools.NProperty):
class _Prop_name(aetools.NProperty):
"""name - the name of the column """
which = 'pnam'
want = 'itxt'
......@@ -52,14 +52,14 @@ class tables(aetools.ComponentItem):
table = tables
cell._superclassnames = []
cell._privpropdict = {
'formula' : formula,
'protection' : protection,
'formula' : _Prop_formula,
'protection' : _Prop_protection,
}
cell._privelemdict = {
}
column._superclassnames = []
column._privpropdict = {
'name' : name,
'name' : _Prop_name,
}
column._privelemdict = {
}
......@@ -89,16 +89,3 @@ _classdeclarations = {
'crow' : rows,
'ctbl' : tables,
}
_propdeclarations = {
'pfor' : formula,
'pnam' : name,
'ppro' : protection,
}
_compdeclarations = {
}
_enumdeclarations = {
'prtn' : _Enum_prtn,
}
......@@ -424,12 +424,3 @@ _classdeclarations = {
'trot' : rotation,
'vers' : version,
}
_propdeclarations = {
}
_compdeclarations = {
}
_enumdeclarations = {
}
......@@ -39,12 +39,3 @@ class Hidden_Suite_Events(Type_Names_Suite_Events):
#
_classdeclarations = {
}
_propdeclarations = {
}
_compdeclarations = {
}
_enumdeclarations = {
}
......@@ -78,12 +78,3 @@ class Power_Suite_Events:
#
_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