Commit 068a1e20 authored by Jack Jansen's avatar Jack Jansen

Regenerated again, now clases are sorted by code, and with synonyms after

the primary name.
parent 2dc16f2a
...@@ -194,42 +194,6 @@ class offset(aetools.NProperty): ...@@ -194,42 +194,6 @@ class offset(aetools.NProperty):
which = 'pOff' which = 'pOff'
want = 'long' want = 'long'
class document(aetools.ComponentItem):
"""document - a document """
want = 'docu'
class file_permissions(aetools.NProperty):
"""file permissions - the file permissions for the document """
which = 'PERM'
want = 'PERM'
class index(aetools.NProperty):
"""index - the number of the document """
which = 'pidx'
want = 'long'
class kind(aetools.NProperty):
"""kind - the kind of document """
which = 'DKND'
want = 'DKND'
class location(aetools.NProperty):
"""location - the file of the document """
which = 'FILE'
want = 'fss '
class name(aetools.NProperty):
"""name - the title of the document """
which = 'pnam'
want = 'itxt'
class window(aetools.NProperty):
"""window - the window of the document. """
which = 'cwin'
want = 'cwin'
documents = document
class file(aetools.ComponentItem):
"""file - A file """
want = 'file'
files = file
class insertion_point(aetools.ComponentItem): class insertion_point(aetools.ComponentItem):
"""insertion point - An insertion location between two objects """ """insertion point - An insertion location between two objects """
want = 'cins' want = 'cins'
...@@ -237,6 +201,10 @@ class insertion_point(aetools.ComponentItem): ...@@ -237,6 +201,10 @@ 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):
"""index - index of a line object from the beginning of the document (first line has index 1) """
which = 'pidx'
want = 'long'
# element 'cha ' as ['indx', 'rang', 'rele'] # element 'cha ' as ['indx', 'rang', 'rele']
lines = line lines = line
...@@ -271,6 +239,10 @@ class document(aetools.NProperty): ...@@ -271,6 +239,10 @@ class 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):
"""name - the title of the window """
which = 'pnam'
want = 'itxt'
class position(aetools.NProperty): class position(aetools.NProperty):
"""position - upper left coordinates of window """ """position - upper left coordinates of window """
which = 'ppos' which = 'ppos'
...@@ -285,6 +257,34 @@ class zoomed(aetools.NProperty): ...@@ -285,6 +257,34 @@ class zoomed(aetools.NProperty):
want = 'bool' want = 'bool'
windows = window windows = window
class document(aetools.ComponentItem):
"""document - a document """
want = 'docu'
class file_permissions(aetools.NProperty):
"""file permissions - the file permissions for the document """
which = 'PERM'
want = 'PERM'
class kind(aetools.NProperty):
"""kind - the kind of document """
which = 'DKND'
want = 'DKND'
class location(aetools.NProperty):
"""location - the file of the document """
which = 'FILE'
want = 'fss '
class window(aetools.NProperty):
"""window - the window of the document. """
which = 'cwin'
want = 'cwin'
documents = document
class files(aetools.ComponentItem):
"""files - Every file """
want = 'file'
file = files
application._superclassnames = [] application._superclassnames = []
application._privpropdict = { application._privpropdict = {
'user_interaction' : user_interaction, 'user_interaction' : user_interaction,
...@@ -300,22 +300,6 @@ character._privpropdict = { ...@@ -300,22 +300,6 @@ character._privpropdict = {
} }
character._privelemdict = { character._privelemdict = {
} }
document._superclassnames = []
document._privpropdict = {
'file_permissions' : file_permissions,
'index' : index,
'kind' : kind,
'location' : location,
'name' : name,
'window' : window,
}
document._privelemdict = {
}
file._superclassnames = []
file._privpropdict = {
}
file._privelemdict = {
}
insertion_point._superclassnames = [] insertion_point._superclassnames = []
insertion_point._privpropdict = { insertion_point._privpropdict = {
'length' : length, 'length' : length,
...@@ -366,6 +350,22 @@ window._privpropdict = { ...@@ -366,6 +350,22 @@ window._privpropdict = {
} }
window._privelemdict = { window._privelemdict = {
} }
document._superclassnames = []
document._privpropdict = {
'file_permissions' : file_permissions,
'index' : index,
'kind' : kind,
'location' : location,
'name' : name,
'window' : window,
}
document._privelemdict = {
}
files._superclassnames = []
files._privpropdict = {
}
files._privelemdict = {
}
# #
# Indices of types declared in this module # Indices of types declared in this module
...@@ -379,7 +379,7 @@ _classdeclarations = { ...@@ -379,7 +379,7 @@ _classdeclarations = {
'ctxt' : text, 'ctxt' : text,
'cwin' : window, 'cwin' : window,
'docu' : document, 'docu' : document,
'file' : file, 'file' : files,
} }
_propdeclarations = { _propdeclarations = {
......
...@@ -47,15 +47,23 @@ import StdSuites ...@@ -47,15 +47,23 @@ 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(single_class_browser)
getbaseclasses(text) getbaseclasses(project_document)
getbaseclasses(window) getbaseclasses(symbol_browser)
getbaseclasses(file) getbaseclasses(editor_document)
getbaseclasses(line) getbaseclasses(file_compare_document)
getbaseclasses(selection_2d_object) getbaseclasses(class_browser)
getbaseclasses(application) getbaseclasses(subtarget)
getbaseclasses(insertion_point) getbaseclasses(message_document)
getbaseclasses(document) getbaseclasses(project_inspector)
getbaseclasses(text_document)
getbaseclasses(catalog_document)
getbaseclasses(class_hierarchy)
getbaseclasses(target)
getbaseclasses(build_progress_document)
getbaseclasses(target_file)
getbaseclasses(ToolServer_worksheet)
getbaseclasses(single_class_hierarchy)
getbaseclasses(File_Mapping) getbaseclasses(File_Mapping)
getbaseclasses(browser_catalog) getbaseclasses(browser_catalog)
getbaseclasses(Build_Settings) getbaseclasses(Build_Settings)
...@@ -92,37 +100,37 @@ getbaseclasses(Font) ...@@ -92,37 +100,37 @@ getbaseclasses(Font)
getbaseclasses(Target_Source_Trees) getbaseclasses(Target_Source_Trees)
getbaseclasses(Debugger_Display) getbaseclasses(Debugger_Display)
getbaseclasses(class_) getbaseclasses(class_)
getbaseclasses(single_class_browser) getbaseclasses(character)
getbaseclasses(project_document) getbaseclasses(text)
getbaseclasses(symbol_browser) getbaseclasses(window)
getbaseclasses(editor_document) getbaseclasses(file)
getbaseclasses(file_compare_document) getbaseclasses(line)
getbaseclasses(class_browser) getbaseclasses(selection_2d_object)
getbaseclasses(subtarget) getbaseclasses(application)
getbaseclasses(message_document) getbaseclasses(insertion_point)
getbaseclasses(project_inspector) getbaseclasses(document)
getbaseclasses(text_document)
getbaseclasses(catalog_document)
getbaseclasses(class_hierarchy)
getbaseclasses(target)
getbaseclasses(build_progress_document)
getbaseclasses(target_file)
getbaseclasses(ToolServer_worksheet)
getbaseclasses(single_class_hierarchy)
# #
# Indices of types declared in this module # Indices of types declared in this module
# #
_classdeclarations = { _classdeclarations = {
'cha ' : character, '1BRW' : single_class_browser,
'ctxt' : text, 'PRJD' : project_document,
'cwin' : window, 'SYMB' : symbol_browser,
'file' : file, 'EDIT' : editor_document,
'clin' : line, 'COMP' : file_compare_document,
'csel' : selection_2d_object, 'BROW' : class_browser,
'capp' : application, 'SBTG' : subtarget,
'cins' : insertion_point, 'MSSG' : message_document,
'docu' : document, 'INSP' : project_inspector,
'TXTD' : text_document,
'CTLG' : catalog_document,
'HIER' : class_hierarchy,
'TRGT' : target,
'PRGS' : build_progress_document,
'SRCF' : target_file,
'TOOL' : ToolServer_worksheet,
'1HIR' : single_class_hierarchy,
'FMap' : File_Mapping, 'FMap' : File_Mapping,
'Cata' : browser_catalog, 'Cata' : browser_catalog,
'BSTG' : Build_Settings, 'BSTG' : Build_Settings,
...@@ -159,23 +167,15 @@ _classdeclarations = { ...@@ -159,23 +167,15 @@ _classdeclarations = {
'TSTs' : Target_Source_Trees, 'TSTs' : Target_Source_Trees,
'DbDS' : Debugger_Display, 'DbDS' : Debugger_Display,
'Clas' : class_, 'Clas' : class_,
'1BRW' : single_class_browser, 'cha ' : character,
'PRJD' : project_document, 'ctxt' : text,
'SYMB' : symbol_browser, 'cwin' : window,
'EDIT' : editor_document, 'file' : file,
'COMP' : file_compare_document, 'clin' : line,
'BROW' : class_browser, 'csel' : selection_2d_object,
'SBTG' : subtarget, 'capp' : application,
'MSSG' : message_document, 'cins' : insertion_point,
'INSP' : project_inspector, 'docu' : document,
'TXTD' : text_document,
'CTLG' : catalog_document,
'HIER' : class_hierarchy,
'TRGT' : target,
'PRGS' : build_progress_document,
'SRCF' : target_file,
'TOOL' : ToolServer_worksheet,
'1HIR' : single_class_hierarchy,
} }
......
...@@ -15,64 +15,13 @@ class Containers_and_folders_Events: ...@@ -15,64 +15,13 @@ class Containers_and_folders_Events:
pass pass
class container(aetools.ComponentItem):
"""container - An item that contains other items """
want = 'ctnr'
class _3c_Inheritance_3e_(aetools.NProperty):
"""<Inheritance> - inherits some of its properties from the item class """
which = 'c@#^'
want = 'cobj'
class 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):
"""container window - the container window for this folder """
which = 'cwnd'
want = 'obj '
class 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):
"""expandable - (NOT AVAILABLE YET) Is the container capable of being expanded as an outline? """
which = 'pexa'
want = 'bool'
class 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'
# element 'alia' as ['indx', 'name']
# element 'appf' as ['indx', 'name', 'ID ']
# element 'cfol' as ['indx', 'name', 'ID ']
# element 'clpf' as ['indx', 'name']
# element 'cobj' as ['indx', 'name']
# element 'ctnr' as ['indx', 'name']
# element 'docf' as ['indx', 'name']
# element 'file' as ['indx', 'name']
# element 'inlf' as ['indx', 'name']
# element 'pack' as ['indx', 'name']
containers = container
class desktop_2d_object(aetools.ComponentItem):
"""desktop-object - Desktop-object is the class of the \xd2desktop\xd3 object """
want = 'cdsk'
# element 'alia' as ['indx', 'name']
# element 'appf' as ['indx', 'name', 'ID ']
# element 'cdis' as ['indx', 'name']
# element 'cfol' as ['indx', 'name', 'ID ']
# element 'clpf' as ['indx', 'name']
# element 'cobj' as ['indx', 'name']
# element 'ctnr' as ['indx', 'name']
# element 'docf' as ['indx', 'name']
# element 'file' as ['indx', 'name']
# element 'inlf' as ['indx', 'name']
# element 'pack' as ['indx', 'name']
class disk(aetools.ComponentItem): class disk(aetools.ComponentItem):
"""disk - A disk """ """disk - A disk """
want = 'cdis' want = 'cdis'
class _3c_Inheritance_3e_(aetools.NProperty):
"""<Inheritance> - inherits some of its properties from the container class """
which = 'c@#^'
want = 'ctnr'
class capacity(aetools.NProperty): class capacity(aetools.NProperty):
"""capacity - the total number of bytes (free or used) on the disk """ """capacity - the total number of bytes (free or used) on the disk """
which = 'capa' which = 'capa'
...@@ -114,6 +63,21 @@ class startup(aetools.NProperty): ...@@ -114,6 +63,21 @@ class startup(aetools.NProperty):
disks = disk disks = disk
class desktop_2d_object(aetools.ComponentItem):
"""desktop-object - Desktop-object is the class of the \xd2desktop\xd3 object """
want = 'cdsk'
# element 'alia' as ['indx', 'name']
# element 'appf' as ['indx', 'name', 'ID ']
# element 'cdis' as ['indx', 'name']
# element 'cfol' as ['indx', 'name', 'ID ']
# element 'clpf' as ['indx', 'name']
# element 'cobj' as ['indx', 'name']
# element 'ctnr' as ['indx', 'name']
# element 'docf' as ['indx', 'name']
# element 'file' as ['indx', 'name']
# element 'inlf' as ['indx', 'name']
# element 'pack' as ['indx', 'name']
class folder(aetools.ComponentItem): class folder(aetools.ComponentItem):
"""folder - A folder """ """folder - A folder """
want = 'cfol' want = 'cfol'
...@@ -130,6 +94,42 @@ class folder(aetools.ComponentItem): ...@@ -130,6 +94,42 @@ class folder(aetools.ComponentItem):
folders = folder folders = folder
class container(aetools.ComponentItem):
"""container - An item that contains other items """
want = 'ctnr'
class 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):
"""container window - the container window for this folder """
which = 'cwnd'
want = 'obj '
class 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):
"""expandable - (NOT AVAILABLE YET) Is the container capable of being expanded as an outline? """
which = 'pexa'
want = 'bool'
class 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'
# element 'alia' as ['indx', 'name']
# element 'appf' as ['indx', 'name', 'ID ']
# element 'cfol' as ['indx', 'name', 'ID ']
# element 'clpf' as ['indx', 'name']
# element 'cobj' as ['indx', 'name']
# element 'ctnr' as ['indx', 'name']
# element 'docf' as ['indx', 'name']
# element 'file' as ['indx', 'name']
# element 'inlf' as ['indx', 'name']
# element 'pack' as ['indx', 'name']
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'
...@@ -147,18 +147,20 @@ class warns_before_emptying(aetools.NProperty): ...@@ -147,18 +147,20 @@ class warns_before_emptying(aetools.NProperty):
# element 'file' as ['indx', 'name'] # element 'file' as ['indx', 'name']
# element 'inlf' as ['indx', 'name'] # element 'inlf' as ['indx', 'name']
# element 'pack' as ['indx', 'name'] # element 'pack' as ['indx', 'name']
import Finder_items disk._superclassnames = ['container']
container._superclassnames = ['item']
import Files import Files
container._privpropdict = { import Finder_items
disk._privpropdict = {
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_, '_3c_Inheritance_3e_' : _3c_Inheritance_3e_,
'completely_expanded' : completely_expanded, 'capacity' : capacity,
'container_window' : container_window, 'ejectable' : ejectable,
'entire_contents' : entire_contents, 'format' : format,
'expandable' : expandable, 'free_space' : free_space,
'expanded' : expanded, 'ignore_privileges' : ignore_privileges,
'local_volume' : local_volume,
'startup' : startup,
} }
container._privelemdict = { disk._privelemdict = {
'alias_file' : Files.alias_file, 'alias_file' : Files.alias_file,
'application_file' : Files.application_file, 'application_file' : Files.application_file,
'clipping' : Files.clipping, 'clipping' : Files.clipping,
...@@ -187,18 +189,11 @@ desktop_2d_object._privelemdict = { ...@@ -187,18 +189,11 @@ desktop_2d_object._privelemdict = {
'item' : Finder_items.item, 'item' : Finder_items.item,
'package' : Files.package, 'package' : Files.package,
} }
disk._superclassnames = ['container'] folder._superclassnames = ['container']
disk._privpropdict = { folder._privpropdict = {
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_, '_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,
} }
disk._privelemdict = { folder._privelemdict = {
'alias_file' : Files.alias_file, 'alias_file' : Files.alias_file,
'application_file' : Files.application_file, 'application_file' : Files.application_file,
'clipping' : Files.clipping, 'clipping' : Files.clipping,
...@@ -210,11 +205,16 @@ disk._privelemdict = { ...@@ -210,11 +205,16 @@ disk._privelemdict = {
'item' : Finder_items.item, 'item' : Finder_items.item,
'package' : Files.package, 'package' : Files.package,
} }
folder._superclassnames = ['container'] container._superclassnames = ['item']
folder._privpropdict = { container._privpropdict = {
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_, '_3c_Inheritance_3e_' : _3c_Inheritance_3e_,
'completely_expanded' : completely_expanded,
'container_window' : container_window,
'entire_contents' : entire_contents,
'expandable' : expandable,
'expanded' : expanded,
} }
folder._privelemdict = { container._privelemdict = {
'alias_file' : Files.alias_file, 'alias_file' : Files.alias_file,
'application_file' : Files.application_file, 'application_file' : Files.application_file,
'clipping' : Files.clipping, 'clipping' : Files.clipping,
......
...@@ -41,28 +41,6 @@ class target(aetools.NProperty): ...@@ -41,28 +41,6 @@ class target(aetools.NProperty):
Finder_windows = Finder_window Finder_windows = Finder_window
class clipping_window(aetools.ComponentItem):
"""clipping window - The window containing a clipping """
want = 'lwnd'
clipping_windows = clipping_window
class information_window(aetools.ComponentItem):
"""information window - An inspector window (opened by \xd2Show Info\xd3) """
want = 'iwnd'
class current_panel(aetools.NProperty):
"""current panel - the current panel in the information window """
which = 'panl'
want = 'ipnl'
class item(aetools.NProperty):
"""item - the item from which this window was opened """
which = 'cobj'
want = 'obj '
class preferences_window(aetools.ComponentItem):
"""preferences window - (NOT AVAILABLE YET) The Finder Preferences window """
want = 'pwnd'
class window(aetools.ComponentItem): class window(aetools.ComponentItem):
"""window - A window """ """window - A window """
want = 'cwin' want = 'cwin'
...@@ -132,6 +110,28 @@ class zoomed_full_size(aetools.NProperty): ...@@ -132,6 +110,28 @@ class zoomed_full_size(aetools.NProperty):
want = 'bool' want = 'bool'
windows = window windows = window
class information_window(aetools.ComponentItem):
"""information window - An inspector window (opened by \xd2Show Info\xd3) """
want = 'iwnd'
class current_panel(aetools.NProperty):
"""current panel - the current panel in the information window """
which = 'panl'
want = 'ipnl'
class item(aetools.NProperty):
"""item - the item from which this window was opened """
which = 'cobj'
want = 'obj '
class clipping_window(aetools.ComponentItem):
"""clipping window - The window containing a clipping """
want = 'lwnd'
clipping_windows = clipping_window
class preferences_window(aetools.ComponentItem):
"""preferences window - (NOT AVAILABLE YET) The Finder Preferences window """
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_' : _3c_Inheritance_3e_,
...@@ -142,27 +142,6 @@ Finder_window._privpropdict = { ...@@ -142,27 +142,6 @@ Finder_window._privpropdict = {
} }
Finder_window._privelemdict = { Finder_window._privelemdict = {
} }
clipping_window._superclassnames = ['window']
clipping_window._privpropdict = {
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_,
}
clipping_window._privelemdict = {
}
information_window._superclassnames = ['window']
information_window._privpropdict = {
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_,
'current_panel' : current_panel,
'item' : item,
}
information_window._privelemdict = {
}
preferences_window._superclassnames = ['window']
preferences_window._privpropdict = {
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_,
'current_panel' : current_panel,
}
preferences_window._privelemdict = {
}
window._superclassnames = [] window._superclassnames = []
window._privpropdict = { window._privpropdict = {
'bounds' : bounds, 'bounds' : bounds,
...@@ -184,6 +163,27 @@ window._privpropdict = { ...@@ -184,6 +163,27 @@ window._privpropdict = {
} }
window._privelemdict = { window._privelemdict = {
} }
information_window._superclassnames = ['window']
information_window._privpropdict = {
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_,
'current_panel' : current_panel,
'item' : item,
}
information_window._privelemdict = {
}
clipping_window._superclassnames = ['window']
clipping_window._privpropdict = {
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_,
}
clipping_window._privelemdict = {
}
preferences_window._superclassnames = ['window']
preferences_window._privpropdict = {
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_,
'current_panel' : current_panel,
}
preferences_window._privelemdict = {
}
# #
# Indices of types declared in this module # Indices of types declared in this module
......
...@@ -69,6 +69,11 @@ import StdSuites ...@@ -69,6 +69,11 @@ import StdSuites
# #
getbaseclasses(item) getbaseclasses(item)
getbaseclasses(application) getbaseclasses(application)
getbaseclasses(trash_2d_object)
getbaseclasses(desktop_2d_object)
getbaseclasses(container)
getbaseclasses(folder)
getbaseclasses(disk)
getbaseclasses(package) getbaseclasses(package)
getbaseclasses(file) getbaseclasses(file)
getbaseclasses(application_file) getbaseclasses(application_file)
...@@ -76,20 +81,11 @@ getbaseclasses(alias_file) ...@@ -76,20 +81,11 @@ getbaseclasses(alias_file)
getbaseclasses(internet_location_file) getbaseclasses(internet_location_file)
getbaseclasses(document_file) getbaseclasses(document_file)
getbaseclasses(clipping) getbaseclasses(clipping)
getbaseclasses(process)
getbaseclasses(application_process)
getbaseclasses(desk_accessory_process)
getbaseclasses(application)
getbaseclasses(preferences_window) getbaseclasses(preferences_window)
getbaseclasses(Finder_window) getbaseclasses(Finder_window)
getbaseclasses(window) getbaseclasses(window)
getbaseclasses(clipping_window) getbaseclasses(clipping_window)
getbaseclasses(information_window) getbaseclasses(information_window)
getbaseclasses(trash_2d_object)
getbaseclasses(desktop_2d_object)
getbaseclasses(container)
getbaseclasses(folder)
getbaseclasses(disk)
getbaseclasses(icon_view_options) getbaseclasses(icon_view_options)
getbaseclasses(label) getbaseclasses(label)
getbaseclasses(column) getbaseclasses(column)
...@@ -97,6 +93,10 @@ getbaseclasses(preferences) ...@@ -97,6 +93,10 @@ 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)
...@@ -144,6 +144,11 @@ getbaseclasses(StdSuites.Type_Names_Suite.bounding_rectangle) ...@@ -144,6 +144,11 @@ getbaseclasses(StdSuites.Type_Names_Suite.bounding_rectangle)
_classdeclarations = { _classdeclarations = {
'cobj' : item, 'cobj' : item,
'capp' : application, 'capp' : application,
'ctrs' : trash_2d_object,
'cdsk' : desktop_2d_object,
'ctnr' : container,
'cfol' : folder,
'cdis' : disk,
'pack' : package, 'pack' : package,
'file' : file, 'file' : file,
'appf' : application_file, 'appf' : application_file,
...@@ -151,20 +156,11 @@ _classdeclarations = { ...@@ -151,20 +156,11 @@ _classdeclarations = {
'inlf' : internet_location_file, 'inlf' : internet_location_file,
'docf' : document_file, 'docf' : document_file,
'clpf' : clipping, 'clpf' : clipping,
'prcs' : process,
'pcap' : application_process,
'pcda' : desk_accessory_process,
'capp' : application,
'pwnd' : preferences_window, 'pwnd' : preferences_window,
'brow' : Finder_window, 'brow' : Finder_window,
'cwin' : window, 'cwin' : window,
'lwnd' : clipping_window, 'lwnd' : clipping_window,
'iwnd' : information_window, 'iwnd' : information_window,
'ctrs' : trash_2d_object,
'cdsk' : desktop_2d_object,
'ctnr' : container,
'cfol' : folder,
'cdis' : disk,
'icop' : icon_view_options, 'icop' : icon_view_options,
'clbl' : label, 'clbl' : label,
'lvcl' : column, 'lvcl' : column,
...@@ -172,6 +168,10 @@ _classdeclarations = { ...@@ -172,6 +168,10 @@ _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,
......
...@@ -16,6 +16,31 @@ class Text_Events(Text_Suite_Events): ...@@ -16,6 +16,31 @@ class Text_Events(Text_Suite_Events):
pass pass
class text(aetools.ComponentItem):
"""text - independent text view objects """
want = 'ctxt'
class beginning(aetools.NProperty):
"""beginning - Beginning of element """
which = 'bgng'
want = 'obj '
class end(aetools.NProperty):
"""end - Ending of element """
which = 'end '
want = 'obj '
class infront(aetools.NProperty):
"""infront - Immediately before element """
which = 'pBef'
want = 'obj '
class justbehind(aetools.NProperty):
"""justbehind - Immediately after element """
which = 'pAft'
want = 'obj '
class updateLevel(aetools.NProperty):
"""updateLevel - updating level. Can only be incremented or decremented. Do so only in a try block -- if the level is greater than zero, visual text updating will cease. """
which = 'pUpL'
want = 'long'
# element 'stys' as ['indx', 'name']
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'
...@@ -45,42 +70,6 @@ class writing_code(aetools.NProperty): ...@@ -45,42 +70,6 @@ class writing_code(aetools.NProperty):
want = 'tsty' want = 'tsty'
stylesets = styleset stylesets = styleset
class text(aetools.ComponentItem):
"""text - independent text view objects """
want = 'ctxt'
class beginning(aetools.NProperty):
"""beginning - Beginning of element """
which = 'bgng'
want = 'obj '
class end(aetools.NProperty):
"""end - Ending of element """
which = 'end '
want = 'obj '
class infront(aetools.NProperty):
"""infront - Immediately before element """
which = 'pBef'
want = 'obj '
class justbehind(aetools.NProperty):
"""justbehind - Immediately after element """
which = 'pAft'
want = 'obj '
class updateLevel(aetools.NProperty):
"""updateLevel - updating level. Can only be incremented or decremented. Do so only in a try block -- if the level is greater than zero, visual text updating will cease. """
which = 'pUpL'
want = 'long'
# element 'stys' as ['indx', 'name']
styleset._superclassnames = []
styleset._privpropdict = {
'color' : color,
'font' : font,
'name' : name,
'size' : size,
'style' : style,
'writing_code' : writing_code,
}
styleset._privelemdict = {
}
text._superclassnames = [] text._superclassnames = []
text._privpropdict = { text._privpropdict = {
'beginning' : beginning, 'beginning' : beginning,
...@@ -92,6 +81,17 @@ text._privpropdict = { ...@@ -92,6 +81,17 @@ text._privpropdict = {
text._privelemdict = { text._privelemdict = {
'styleset' : styleset, 'styleset' : styleset,
} }
styleset._superclassnames = []
styleset._privpropdict = {
'color' : color,
'font' : font,
'name' : name,
'size' : size,
'style' : style,
'writing_code' : writing_code,
}
styleset._privelemdict = {
}
# #
# Indices of types declared in this module # Indices of types declared in this module
......
...@@ -61,6 +61,8 @@ import StdSuites ...@@ -61,6 +61,8 @@ 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)
...@@ -68,8 +70,6 @@ getbaseclasses(StdSuites.Text_Suite.line) ...@@ -68,8 +70,6 @@ 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,6 +77,8 @@ getbaseclasses(styleset) ...@@ -77,6 +77,8 @@ getbaseclasses(styleset)
_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,
...@@ -84,8 +86,6 @@ _classdeclarations = { ...@@ -84,8 +86,6 @@ _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,
} }
......
...@@ -29,6 +29,24 @@ class ID(aetools.NProperty): ...@@ -29,6 +29,24 @@ class ID(aetools.NProperty):
ADB_addresses = ADB_address ADB_addresses = ADB_address
class address_specification(aetools.ComponentItem):
"""address specification - Unique designation of a device or service connected to this computer """
want = 'cadr'
class conduit(aetools.NProperty):
"""conduit - How the addressee is physically connected """
which = 'pcon'
want = 'econ'
class properties(aetools.NProperty):
"""properties - property that allows getting and setting of multiple properties """
which = 'pALL'
want = 'reco'
class protocol(aetools.NProperty):
"""protocol - How to talk to this addressee """
which = 'pprt'
want = 'epro'
address_specifications = address_specification
class AppleTalk_address(aetools.ComponentItem): class AppleTalk_address(aetools.ComponentItem):
"""AppleTalk address - Addresses a device or service connected via the AppleTalk protocol """ """AppleTalk address - Addresses a device or service connected via the AppleTalk protocol """
want = 'cat ' want = 'cat '
...@@ -47,6 +65,26 @@ class AppleTalk_zone(aetools.NProperty): ...@@ -47,6 +65,26 @@ class AppleTalk_zone(aetools.NProperty):
AppleTalk_addresses = AppleTalk_address AppleTalk_addresses = AppleTalk_address
class bus_slot(aetools.ComponentItem):
"""bus slot - Addresses a PC, PCI, or NuBus card """
want = 'cbus'
bus_slots = bus_slot
class device_specification(aetools.ComponentItem):
"""device specification - A device connected to a computer """
want = 'cdev'
class device_address(aetools.NProperty):
"""device address - the address of the device """
which = 'pdva'
want = 'cadr'
class device_type(aetools.NProperty):
"""device type - the kind of device """
which = 'pdvt'
want = 'edvt'
device_specifications = device_specification
class Ethernet_address(aetools.ComponentItem): class Ethernet_address(aetools.ComponentItem):
"""Ethernet address - Addresses a device by its Ethernet address """ """Ethernet address - Addresses a device by its Ethernet address """
want = 'cen ' want = 'cen '
...@@ -111,53 +149,15 @@ class Token_Ring_address(aetools.ComponentItem): ...@@ -111,53 +149,15 @@ class Token_Ring_address(aetools.ComponentItem):
Token_Ring_addresses = Token_Ring_address Token_Ring_addresses = Token_Ring_address
class USB_Addresses(aetools.ComponentItem): class USB_address(aetools.ComponentItem):
"""USB Addresses - """ """USB address - Addresses a device on the Universal Serial Bus """
want = 'cusb' want = 'cusb'
USB_address = USB_Addresses
class name(aetools.NProperty): class name(aetools.NProperty):
"""name - the USB device name """ """name - the USB device name """
which = 'pnam' which = 'pnam'
want = 'TEXT' want = 'TEXT'
class address_specification(aetools.ComponentItem): USB_Addresses = USB_address
"""address specification - Unique designation of a device or service connected to this computer """
want = 'cadr'
class conduit(aetools.NProperty):
"""conduit - How the addressee is physically connected """
which = 'pcon'
want = 'econ'
class properties(aetools.NProperty):
"""properties - property that allows getting and setting of multiple properties """
which = 'pALL'
want = 'reco'
class protocol(aetools.NProperty):
"""protocol - How to talk to this addressee """
which = 'pprt'
want = 'epro'
address_specifications = address_specification
class bus_slot(aetools.ComponentItem):
"""bus slot - Addresses a PC, PCI, or NuBus card """
want = 'cbus'
bus_slots = bus_slot
class device_specification(aetools.ComponentItem):
"""device specification - A device connected to a computer """
want = 'cdev'
class device_address(aetools.NProperty):
"""device address - the address of the device """
which = 'pdva'
want = 'cadr'
class device_type(aetools.NProperty):
"""device type - the kind of device """
which = 'pdvt'
want = 'edvt'
device_specifications = device_specification
ADB_address._superclassnames = ['address_specification'] ADB_address._superclassnames = ['address_specification']
ADB_address._privpropdict = { ADB_address._privpropdict = {
'ID' : ID, 'ID' : ID,
...@@ -165,6 +165,14 @@ ADB_address._privpropdict = { ...@@ -165,6 +165,14 @@ ADB_address._privpropdict = {
} }
ADB_address._privelemdict = { ADB_address._privelemdict = {
} }
address_specification._superclassnames = []
address_specification._privpropdict = {
'conduit' : conduit,
'properties' : properties,
'protocol' : protocol,
}
address_specification._privelemdict = {
}
AppleTalk_address._superclassnames = ['address_specification'] AppleTalk_address._superclassnames = ['address_specification']
AppleTalk_address._privpropdict = { AppleTalk_address._privpropdict = {
'AppleTalk_machine' : AppleTalk_machine, 'AppleTalk_machine' : AppleTalk_machine,
...@@ -174,6 +182,21 @@ AppleTalk_address._privpropdict = { ...@@ -174,6 +182,21 @@ AppleTalk_address._privpropdict = {
} }
AppleTalk_address._privelemdict = { AppleTalk_address._privelemdict = {
} }
bus_slot._superclassnames = ['address_specification']
bus_slot._privpropdict = {
'ID' : ID,
'_3c_inheritance_3e_' : _3c_inheritance_3e_,
}
bus_slot._privelemdict = {
}
device_specification._superclassnames = []
device_specification._privpropdict = {
'device_address' : device_address,
'device_type' : device_type,
'properties' : properties,
}
device_specification._privelemdict = {
}
Ethernet_address._superclassnames = ['address_specification'] Ethernet_address._superclassnames = ['address_specification']
Ethernet_address._privpropdict = { Ethernet_address._privpropdict = {
'ID' : ID, 'ID' : ID,
...@@ -222,33 +245,12 @@ Token_Ring_address._privpropdict = { ...@@ -222,33 +245,12 @@ Token_Ring_address._privpropdict = {
} }
Token_Ring_address._privelemdict = { Token_Ring_address._privelemdict = {
} }
USB_Addresses._superclassnames = [] USB_address._superclassnames = ['address_specification']
USB_Addresses._privpropdict = { USB_address._privpropdict = {
}
USB_Addresses._privelemdict = {
}
address_specification._superclassnames = []
address_specification._privpropdict = {
'conduit' : conduit,
'properties' : properties,
'protocol' : protocol,
}
address_specification._privelemdict = {
}
bus_slot._superclassnames = ['address_specification']
bus_slot._privpropdict = {
'ID' : ID,
'_3c_inheritance_3e_' : _3c_inheritance_3e_, '_3c_inheritance_3e_' : _3c_inheritance_3e_,
'name' : name,
} }
bus_slot._privelemdict = { USB_address._privelemdict = {
}
device_specification._superclassnames = []
device_specification._privpropdict = {
'device_address' : device_address,
'device_type' : device_type,
'properties' : properties,
}
device_specification._privelemdict = {
} }
_Enum_econ = { _Enum_econ = {
'ADB' : 'eadb', # 'ADB' : 'eadb', #
...@@ -337,7 +339,7 @@ _classdeclarations = { ...@@ -337,7 +339,7 @@ _classdeclarations = {
'clt ' : LocalTalk_address, 'clt ' : LocalTalk_address,
'cscs' : SCSI_address, 'cscs' : SCSI_address,
'ctok' : Token_Ring_address, 'ctok' : Token_Ring_address,
'cusb' : USB_Addresses, 'cusb' : USB_address,
} }
_propdeclarations = { _propdeclarations = {
......
...@@ -119,45 +119,17 @@ class writing_code(aetools.NProperty): ...@@ -119,45 +119,17 @@ class writing_code(aetools.NProperty):
drawing_areas = drawing_area drawing_areas = drawing_area
class graphic_group(aetools.ComponentItem): class graphic_objects(aetools.ComponentItem):
"""graphic group - Group of graphics """ """graphic objects - """
want = 'cpic'
graphic_groups = graphic_group
class graphic_line(aetools.ComponentItem):
"""graphic line - A graphic line """
want = 'glin'
class arrow_style(aetools.NProperty):
"""arrow style - the arrow style """
which = 'arro'
want = 'arro'
class dash_style(aetools.NProperty):
"""dash style - the dash style """
which = 'pdst'
want = 'tdas'
class end_point(aetools.NProperty):
"""end point - the ending point of the line """
which = 'pend'
want = 'QDpt'
class start_point(aetools.NProperty):
"""start point - the starting point of the line """
which = 'pstp'
want = 'QDpt'
graphic_lines = graphic_line
class graphic_object(aetools.ComponentItem):
"""graphic object - A graphic object """
want = 'cgob' want = 'cgob'
graphic_objects = graphic_object graphic_object = graphic_objects
class graphic_shape(aetools.ComponentItem): class graphic_shapes(aetools.ComponentItem):
"""graphic shape - A graphic shape """ """graphic shapes - """
want = 'cgsh' want = 'cgsh'
graphic_shapes = graphic_shape graphic_shape = graphic_shapes
class graphic_text(aetools.ComponentItem): class graphic_text(aetools.ComponentItem):
"""graphic text - A series of characters within a drawing area """ """graphic text - A series of characters within a drawing area """
...@@ -179,23 +151,11 @@ class uniform_styles(aetools.NProperty): ...@@ -179,23 +151,11 @@ class uniform_styles(aetools.NProperty):
which = 'ustl' which = 'ustl'
want = 'tsty' want = 'tsty'
class oval(aetools.ComponentItem): class ovals(aetools.ComponentItem):
"""oval - An oval """ """ovals - """
want = 'covl' want = 'covl'
ovals = oval oval = ovals
class pixel(aetools.ComponentItem):
"""pixel - A pixel """
want = 'cpxl'
class pixel_map(aetools.ComponentItem):
"""pixel map - A pixel map """
want = 'cpix'
pixel_maps = pixel_map
pixels = pixel
class polygon(aetools.ComponentItem): class polygon(aetools.ComponentItem):
"""polygon - A polygon """ """polygon - A polygon """
...@@ -207,11 +167,29 @@ class point_list(aetools.NProperty): ...@@ -207,11 +167,29 @@ class point_list(aetools.NProperty):
polygons = polygon polygons = polygon
class rectangle(aetools.ComponentItem): class graphic_groups(aetools.ComponentItem):
"""rectangle - A rectangle """ """graphic groups - """
want = 'cpic'
graphic_group = graphic_groups
class pixel_maps(aetools.ComponentItem):
"""pixel maps - """
want = 'cpix'
pixel_map = pixel_maps
class pixel(aetools.ComponentItem):
"""pixel - A pixel """
want = 'cpxl'
pixels = pixel
class rectangles(aetools.ComponentItem):
"""rectangles - """
want = 'crec' want = 'crec'
rectangles = rectangle rectangle = rectangles
class rounded_rectangle(aetools.ComponentItem): class rounded_rectangle(aetools.ComponentItem):
"""rounded rectangle - A rounded rectangle """ """rounded rectangle - A rounded rectangle """
...@@ -226,6 +204,28 @@ class corner_curve_width(aetools.NProperty): ...@@ -226,6 +204,28 @@ class corner_curve_width(aetools.NProperty):
want = 'shor' want = 'shor'
rounded_rectangles = rounded_rectangle rounded_rectangles = rounded_rectangle
class graphic_line(aetools.ComponentItem):
"""graphic line - A graphic line """
want = 'glin'
class arrow_style(aetools.NProperty):
"""arrow style - the arrow style """
which = 'arro'
want = 'arro'
class dash_style(aetools.NProperty):
"""dash style - the dash style """
which = 'pdst'
want = 'tdas'
class end_point(aetools.NProperty):
"""end point - the ending point of the line """
which = 'pend'
want = 'QDpt'
class start_point(aetools.NProperty):
"""start point - the starting point of the line """
which = 'pstp'
want = 'QDpt'
graphic_lines = graphic_line
arc._superclassnames = [] arc._superclassnames = []
arc._privpropdict = { arc._privpropdict = {
'arc_angle' : arc_angle, 'arc_angle' : arc_angle,
...@@ -259,29 +259,15 @@ drawing_area._privpropdict = { ...@@ -259,29 +259,15 @@ drawing_area._privpropdict = {
} }
drawing_area._privelemdict = { drawing_area._privelemdict = {
} }
graphic_group._superclassnames = [] graphic_objects._superclassnames = []
graphic_group._privpropdict = { graphic_objects._privpropdict = {
} }
graphic_group._privelemdict = { graphic_objects._privelemdict = {
} }
graphic_line._superclassnames = [] graphic_shapes._superclassnames = []
graphic_line._privpropdict = { graphic_shapes._privpropdict = {
'arrow_style' : arrow_style,
'dash_style' : dash_style,
'end_point' : end_point,
'start_point' : start_point,
} }
graphic_line._privelemdict = { graphic_shapes._privelemdict = {
}
graphic_object._superclassnames = []
graphic_object._privpropdict = {
}
graphic_object._privelemdict = {
}
graphic_shape._superclassnames = []
graphic_shape._privpropdict = {
}
graphic_shape._privelemdict = {
} }
graphic_text._superclassnames = [] graphic_text._superclassnames = []
graphic_text._privpropdict = { graphic_text._privpropdict = {
...@@ -292,21 +278,10 @@ graphic_text._privpropdict = { ...@@ -292,21 +278,10 @@ graphic_text._privpropdict = {
} }
graphic_text._privelemdict = { graphic_text._privelemdict = {
} }
oval._superclassnames = [] ovals._superclassnames = []
oval._privpropdict = { ovals._privpropdict = {
} }
oval._privelemdict = { ovals._privelemdict = {
}
pixel._superclassnames = []
pixel._privpropdict = {
'color' : color,
}
pixel._privelemdict = {
}
pixel_map._superclassnames = []
pixel_map._privpropdict = {
}
pixel_map._privelemdict = {
} }
polygon._superclassnames = [] polygon._superclassnames = []
polygon._privpropdict = { polygon._privpropdict = {
...@@ -314,10 +289,26 @@ polygon._privpropdict = { ...@@ -314,10 +289,26 @@ polygon._privpropdict = {
} }
polygon._privelemdict = { polygon._privelemdict = {
} }
rectangle._superclassnames = [] graphic_groups._superclassnames = []
rectangle._privpropdict = { graphic_groups._privpropdict = {
}
graphic_groups._privelemdict = {
}
pixel_maps._superclassnames = []
pixel_maps._privpropdict = {
}
pixel_maps._privelemdict = {
}
pixel._superclassnames = []
pixel._privpropdict = {
'color' : color,
}
pixel._privelemdict = {
}
rectangles._superclassnames = []
rectangles._privpropdict = {
} }
rectangle._privelemdict = { rectangles._privelemdict = {
} }
rounded_rectangle._superclassnames = [] rounded_rectangle._superclassnames = []
rounded_rectangle._privpropdict = { rounded_rectangle._privpropdict = {
...@@ -326,6 +317,15 @@ rounded_rectangle._privpropdict = { ...@@ -326,6 +317,15 @@ rounded_rectangle._privpropdict = {
} }
rounded_rectangle._privelemdict = { rounded_rectangle._privelemdict = {
} }
graphic_line._superclassnames = []
graphic_line._privpropdict = {
'arrow_style' : arrow_style,
'dash_style' : dash_style,
'end_point' : end_point,
'start_point' : start_point,
}
graphic_line._privelemdict = {
}
_Enum_arro = { _Enum_arro = {
'no_arrow' : 'arno', # No arrow on line 'no_arrow' : 'arno', # No arrow on line
'arrow_at_start' : 'arst', # Arrow at start of line 'arrow_at_start' : 'arst', # Arrow at start of line
...@@ -358,15 +358,15 @@ _Enum_tran = { ...@@ -358,15 +358,15 @@ _Enum_tran = {
_classdeclarations = { _classdeclarations = {
'carc' : arc, 'carc' : arc,
'cdrw' : drawing_area, 'cdrw' : drawing_area,
'cgob' : graphic_object, 'cgob' : graphic_objects,
'cgsh' : graphic_shape, 'cgsh' : graphic_shapes,
'cgtx' : graphic_text, 'cgtx' : graphic_text,
'covl' : oval, 'covl' : ovals,
'cpgn' : polygon, 'cpgn' : polygon,
'cpic' : graphic_group, 'cpic' : graphic_groups,
'cpix' : pixel_map, 'cpix' : pixel_maps,
'cpxl' : pixel, 'cpxl' : pixel,
'crec' : rectangle, 'crec' : rectangles,
'crrc' : rounded_rectangle, 'crrc' : rounded_rectangle,
'glin' : graphic_line, 'glin' : graphic_line,
} }
......
...@@ -33,11 +33,11 @@ class translation(aetools.NProperty): ...@@ -33,11 +33,11 @@ class translation(aetools.NProperty):
drawing_areas = drawing_area drawing_areas = drawing_area
class graphic_group(aetools.ComponentItem): class graphic_groups(aetools.ComponentItem):
"""graphic group - Group of graphics """ """graphic groups - """
want = 'cpic' want = 'cpic'
graphic_groups = graphic_group graphic_group = graphic_groups
drawing_area._superclassnames = [] drawing_area._superclassnames = []
drawing_area._privpropdict = { drawing_area._privpropdict = {
'rotation' : rotation, 'rotation' : rotation,
...@@ -46,10 +46,10 @@ drawing_area._privpropdict = { ...@@ -46,10 +46,10 @@ drawing_area._privpropdict = {
} }
drawing_area._privelemdict = { drawing_area._privelemdict = {
} }
graphic_group._superclassnames = [] graphic_groups._superclassnames = []
graphic_group._privpropdict = { graphic_groups._privpropdict = {
} }
graphic_group._privelemdict = { graphic_groups._privelemdict = {
} }
# #
...@@ -57,7 +57,7 @@ graphic_group._privelemdict = { ...@@ -57,7 +57,7 @@ graphic_group._privelemdict = {
# #
_classdeclarations = { _classdeclarations = {
'cdrw' : drawing_area, 'cdrw' : drawing_area,
'cpic' : graphic_group, 'cpic' : graphic_groups,
} }
_propdeclarations = { _propdeclarations = {
......
...@@ -448,11 +448,11 @@ class Standard_Suite_Events(builtin_Suite_Events): ...@@ -448,11 +448,11 @@ class Standard_Suite_Events(builtin_Suite_Events):
return _arguments['----'] return _arguments['----']
class alias(aetools.ComponentItem): class aliases(aetools.ComponentItem):
"""alias - a file on a disk or server. The file must exist when you check the syntax of your script. """ """aliases - """
want = 'alis' want = 'alis'
aliases = alias alias = aliases
class application(aetools.ComponentItem): class application(aetools.ComponentItem):
"""application - An application program """ """application - An application program """
...@@ -480,31 +480,11 @@ class version(aetools.NProperty): ...@@ -480,31 +480,11 @@ class version(aetools.NProperty):
applications = application applications = application
class document(aetools.ComponentItem): class insertion_points(aetools.ComponentItem):
"""document - A document of a scriptable application """ """insertion points - """
want = 'docu'
class modified(aetools.NProperty):
"""modified - Has the document been modified since the last save? """
which = 'imod'
want = 'bool'
documents = document
class file(aetools.ComponentItem):
"""file - a file on a disk or server """
want = 'file'
class stationery(aetools.NProperty):
"""stationery - Is the file a stationery file? """
which = 'pspd'
want = 'bool'
files = file
class insertion_point(aetools.ComponentItem):
"""insertion point - An insertion location between two objects """
want = 'cins' want = 'cins'
insertion_points = insertion_point insertion_point = insertion_points
class selection_2d_object(aetools.ComponentItem): class selection_2d_object(aetools.ComponentItem):
"""selection-object - A way to refer to the state of the current of the selection. Use the \xd4select\xd5 command to make a new selection. """ """selection-object - A way to refer to the state of the current of the selection. Use the \xd4select\xd5 command to make a new selection. """
...@@ -559,10 +539,30 @@ class zoomed(aetools.NProperty): ...@@ -559,10 +539,30 @@ class zoomed(aetools.NProperty):
want = 'bool' want = 'bool'
windows = window windows = window
alias._superclassnames = []
alias._privpropdict = { class document(aetools.ComponentItem):
"""document - A document of a scriptable application """
want = 'docu'
class modified(aetools.NProperty):
"""modified - Has the document been modified since the last save? """
which = 'imod'
want = 'bool'
documents = document
class file(aetools.ComponentItem):
"""file - a file on a disk or server """
want = 'file'
class stationery(aetools.NProperty):
"""stationery - Is the file a stationery file? """
which = 'pspd'
want = 'bool'
files = file
aliases._superclassnames = []
aliases._privpropdict = {
} }
alias._privelemdict = { aliases._privelemdict = {
} }
application._superclassnames = [] application._superclassnames = []
application._privpropdict = { application._privpropdict = {
...@@ -574,22 +574,10 @@ application._privpropdict = { ...@@ -574,22 +574,10 @@ application._privpropdict = {
} }
application._privelemdict = { application._privelemdict = {
} }
document._superclassnames = [] insertion_points._superclassnames = []
document._privpropdict = { insertion_points._privpropdict = {
'modified' : modified,
}
document._privelemdict = {
}
file._superclassnames = []
file._privpropdict = {
'stationery' : stationery,
}
file._privelemdict = {
}
insertion_point._superclassnames = []
insertion_point._privpropdict = {
} }
insertion_point._privelemdict = { insertion_points._privelemdict = {
} }
selection_2d_object._superclassnames = [] selection_2d_object._superclassnames = []
selection_2d_object._privpropdict = { selection_2d_object._privpropdict = {
...@@ -612,6 +600,18 @@ window._privpropdict = { ...@@ -612,6 +600,18 @@ window._privpropdict = {
} }
window._privelemdict = { window._privelemdict = {
} }
document._superclassnames = []
document._privpropdict = {
'modified' : modified,
}
document._privelemdict = {
}
file._superclassnames = []
file._privpropdict = {
'stationery' : stationery,
}
file._privelemdict = {
}
class _3c_(aetools.NComparison): class _3c_(aetools.NComparison):
"""< - Less than """ """< - Less than """
class _3d_(aetools.NComparison): class _3d_(aetools.NComparison):
...@@ -663,9 +663,9 @@ _Enum_styl = { ...@@ -663,9 +663,9 @@ _Enum_styl = {
# Indices of types declared in this module # Indices of types declared in this module
# #
_classdeclarations = { _classdeclarations = {
'alis' : alias, 'alis' : aliases,
'capp' : application, 'capp' : application,
'cins' : insertion_point, 'cins' : insertion_points,
'csel' : selection_2d_object, 'csel' : selection_2d_object,
'cwin' : window, 'cwin' : window,
'docu' : document, 'docu' : document,
......
...@@ -39,17 +39,17 @@ class name(aetools.NProperty): ...@@ -39,17 +39,17 @@ class name(aetools.NProperty):
columns = column columns = column
class row(aetools.ComponentItem): class rows(aetools.ComponentItem):
"""row - A row """ """rows - """
want = 'crow' want = 'crow'
rows = row row = rows
class table(aetools.ComponentItem): class tables(aetools.ComponentItem):
"""table - A table """ """tables - """
want = 'ctbl' want = 'ctbl'
tables = table table = tables
cell._superclassnames = [] cell._superclassnames = []
cell._privpropdict = { cell._privpropdict = {
'formula' : formula, 'formula' : formula,
...@@ -63,15 +63,15 @@ column._privpropdict = { ...@@ -63,15 +63,15 @@ column._privpropdict = {
} }
column._privelemdict = { column._privelemdict = {
} }
row._superclassnames = [] rows._superclassnames = []
row._privpropdict = { rows._privpropdict = {
} }
row._privelemdict = { rows._privelemdict = {
} }
table._superclassnames = [] tables._superclassnames = []
table._privpropdict = { tables._privpropdict = {
} }
table._privelemdict = { tables._privelemdict = {
} }
_Enum_prtn = { _Enum_prtn = {
'read_only' : 'nmod', # Can\xd5t change values or formulas 'read_only' : 'nmod', # Can\xd5t change values or formulas
...@@ -86,8 +86,8 @@ _Enum_prtn = { ...@@ -86,8 +86,8 @@ _Enum_prtn = {
_classdeclarations = { _classdeclarations = {
'ccel' : cell, 'ccel' : cell,
'ccol' : column, 'ccol' : column,
'crow' : row, 'crow' : rows,
'ctbl' : table, 'ctbl' : tables,
} }
_propdeclarations = { _propdeclarations = {
......
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
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