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):
which = 'pOff'
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):
"""insertion point - An insertion location between two objects """
want = 'cins'
......@@ -237,6 +201,10 @@ class insertion_point(aetools.ComponentItem):
class line(aetools.ComponentItem):
"""line - lines of text """
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']
lines = line
......@@ -271,6 +239,10 @@ class document(aetools.NProperty):
"""document - the document that owns this window """
which = 'docu'
want = 'docu'
class name(aetools.NProperty):
"""name - the title of the window """
which = 'pnam'
want = 'itxt'
class position(aetools.NProperty):
"""position - upper left coordinates of window """
which = 'ppos'
......@@ -285,6 +257,34 @@ class zoomed(aetools.NProperty):
want = 'bool'
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._privpropdict = {
'user_interaction' : user_interaction,
......@@ -300,22 +300,6 @@ character._privpropdict = {
}
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._privpropdict = {
'length' : length,
......@@ -366,6 +350,22 @@ window._privpropdict = {
}
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
......@@ -379,7 +379,7 @@ _classdeclarations = {
'ctxt' : text,
'cwin' : window,
'docu' : document,
'file' : file,
'file' : files,
}
_propdeclarations = {
......
......@@ -47,15 +47,23 @@ 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)
getbaseclasses(editor_document)
getbaseclasses(file_compare_document)
getbaseclasses(class_browser)
getbaseclasses(subtarget)
getbaseclasses(message_document)
getbaseclasses(project_inspector)
getbaseclasses(text_document)
getbaseclasses(catalog_document)
getbaseclasses(class_hierarchy)
getbaseclasses(target)
getbaseclasses(build_progress_document)
getbaseclasses(target_file)
getbaseclasses(ToolServer_worksheet)
getbaseclasses(single_class_hierarchy)
getbaseclasses(File_Mapping)
getbaseclasses(browser_catalog)
getbaseclasses(Build_Settings)
......@@ -92,37 +100,37 @@ getbaseclasses(Font)
getbaseclasses(Target_Source_Trees)
getbaseclasses(Debugger_Display)
getbaseclasses(class_)
getbaseclasses(single_class_browser)
getbaseclasses(project_document)
getbaseclasses(symbol_browser)
getbaseclasses(editor_document)
getbaseclasses(file_compare_document)
getbaseclasses(class_browser)
getbaseclasses(subtarget)
getbaseclasses(message_document)
getbaseclasses(project_inspector)
getbaseclasses(text_document)
getbaseclasses(catalog_document)
getbaseclasses(class_hierarchy)
getbaseclasses(target)
getbaseclasses(build_progress_document)
getbaseclasses(target_file)
getbaseclasses(ToolServer_worksheet)
getbaseclasses(single_class_hierarchy)
getbaseclasses(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,
'EDIT' : editor_document,
'COMP' : file_compare_document,
'BROW' : class_browser,
'SBTG' : subtarget,
'MSSG' : message_document,
'INSP' : project_inspector,
'TXTD' : text_document,
'CTLG' : catalog_document,
'HIER' : class_hierarchy,
'TRGT' : target,
'PRGS' : build_progress_document,
'SRCF' : target_file,
'TOOL' : ToolServer_worksheet,
'1HIR' : single_class_hierarchy,
'FMap' : File_Mapping,
'Cata' : browser_catalog,
'BSTG' : Build_Settings,
......@@ -159,23 +167,15 @@ _classdeclarations = {
'TSTs' : Target_Source_Trees,
'DbDS' : Debugger_Display,
'Clas' : class_,
'1BRW' : single_class_browser,
'PRJD' : project_document,
'SYMB' : symbol_browser,
'EDIT' : editor_document,
'COMP' : file_compare_document,
'BROW' : class_browser,
'SBTG' : subtarget,
'MSSG' : message_document,
'INSP' : project_inspector,
'TXTD' : text_document,
'CTLG' : catalog_document,
'HIER' : class_hierarchy,
'TRGT' : target,
'PRGS' : build_progress_document,
'SRCF' : target_file,
'TOOL' : ToolServer_worksheet,
'1HIR' : single_class_hierarchy,
'cha ' : character,
'ctxt' : text,
'cwin' : window,
'file' : file,
'clin' : line,
'csel' : selection_2d_object,
'capp' : application,
'cins' : insertion_point,
'docu' : document,
}
......
......@@ -15,64 +15,13 @@ class Containers_and_folders_Events:
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):
"""disk - A disk """
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):
"""capacity - the total number of bytes (free or used) on the disk """
which = 'capa'
......@@ -114,6 +63,21 @@ class startup(aetools.NProperty):
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):
"""folder - A folder """
want = 'cfol'
......@@ -130,6 +94,42 @@ class folder(aetools.ComponentItem):
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):
"""trash-object - Trash-object is the class of the \xd2trash\xd3 object """
want = 'ctrs'
......@@ -147,18 +147,20 @@ class warns_before_emptying(aetools.NProperty):
# element 'file' as ['indx', 'name']
# element 'inlf' as ['indx', 'name']
# element 'pack' as ['indx', 'name']
import Finder_items
container._superclassnames = ['item']
disk._superclassnames = ['container']
import Files
container._privpropdict = {
import Finder_items
disk._privpropdict = {
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_,
'completely_expanded' : completely_expanded,
'container_window' : container_window,
'entire_contents' : entire_contents,
'expandable' : expandable,
'expanded' : expanded,
'capacity' : capacity,
'ejectable' : ejectable,
'format' : format,
'free_space' : free_space,
'ignore_privileges' : ignore_privileges,
'local_volume' : local_volume,
'startup' : startup,
}
container._privelemdict = {
disk._privelemdict = {
'alias_file' : Files.alias_file,
'application_file' : Files.application_file,
'clipping' : Files.clipping,
......@@ -187,18 +189,11 @@ desktop_2d_object._privelemdict = {
'item' : Finder_items.item,
'package' : Files.package,
}
disk._superclassnames = ['container']
disk._privpropdict = {
folder._superclassnames = ['container']
folder._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,
}
disk._privelemdict = {
folder._privelemdict = {
'alias_file' : Files.alias_file,
'application_file' : Files.application_file,
'clipping' : Files.clipping,
......@@ -210,11 +205,16 @@ disk._privelemdict = {
'item' : Finder_items.item,
'package' : Files.package,
}
folder._superclassnames = ['container']
folder._privpropdict = {
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,
}
folder._privelemdict = {
container._privelemdict = {
'alias_file' : Files.alias_file,
'application_file' : Files.application_file,
'clipping' : Files.clipping,
......
......@@ -41,28 +41,6 @@ class target(aetools.NProperty):
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):
"""window - A window """
want = 'cwin'
......@@ -132,6 +110,28 @@ class zoomed_full_size(aetools.NProperty):
want = 'bool'
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._privpropdict = {
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_,
......@@ -142,27 +142,6 @@ Finder_window._privpropdict = {
}
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._privpropdict = {
'bounds' : bounds,
......@@ -184,6 +163,27 @@ window._privpropdict = {
}
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
......
......@@ -69,6 +69,11 @@ import StdSuites
#
getbaseclasses(item)
getbaseclasses(application)
getbaseclasses(trash_2d_object)
getbaseclasses(desktop_2d_object)
getbaseclasses(container)
getbaseclasses(folder)
getbaseclasses(disk)
getbaseclasses(package)
getbaseclasses(file)
getbaseclasses(application_file)
......@@ -76,20 +81,11 @@ getbaseclasses(alias_file)
getbaseclasses(internet_location_file)
getbaseclasses(document_file)
getbaseclasses(clipping)
getbaseclasses(process)
getbaseclasses(application_process)
getbaseclasses(desk_accessory_process)
getbaseclasses(application)
getbaseclasses(preferences_window)
getbaseclasses(Finder_window)
getbaseclasses(window)
getbaseclasses(clipping_window)
getbaseclasses(information_window)
getbaseclasses(trash_2d_object)
getbaseclasses(desktop_2d_object)
getbaseclasses(container)
getbaseclasses(folder)
getbaseclasses(disk)
getbaseclasses(icon_view_options)
getbaseclasses(label)
getbaseclasses(column)
......@@ -97,6 +93,10 @@ 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)
......@@ -144,6 +144,11 @@ getbaseclasses(StdSuites.Type_Names_Suite.bounding_rectangle)
_classdeclarations = {
'cobj' : item,
'capp' : application,
'ctrs' : trash_2d_object,
'cdsk' : desktop_2d_object,
'ctnr' : container,
'cfol' : folder,
'cdis' : disk,
'pack' : package,
'file' : file,
'appf' : application_file,
......@@ -151,20 +156,11 @@ _classdeclarations = {
'inlf' : internet_location_file,
'docf' : document_file,
'clpf' : clipping,
'prcs' : process,
'pcap' : application_process,
'pcda' : desk_accessory_process,
'capp' : application,
'pwnd' : preferences_window,
'brow' : Finder_window,
'cwin' : window,
'lwnd' : clipping_window,
'iwnd' : information_window,
'ctrs' : trash_2d_object,
'cdsk' : desktop_2d_object,
'ctnr' : container,
'cfol' : folder,
'cdis' : disk,
'icop' : icon_view_options,
'clbl' : label,
'lvcl' : column,
......@@ -172,6 +168,10 @@ _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,
......
......@@ -16,6 +16,31 @@ class Text_Events(Text_Suite_Events):
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):
"""styleset - A style \xd2set\xd3 that may be used repeatedly in text objects. """
want = 'stys'
......@@ -45,42 +70,6 @@ class writing_code(aetools.NProperty):
want = 'tsty'
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._privpropdict = {
'beginning' : beginning,
......@@ -92,6 +81,17 @@ text._privpropdict = {
text._privelemdict = {
'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
......
......@@ -61,6 +61,8 @@ 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)
......@@ -68,8 +70,6 @@ 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,6 +77,8 @@ getbaseclasses(styleset)
_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,
......@@ -84,8 +86,6 @@ _classdeclarations = {
'cwor' : StdSuites.Text_Suite.word,
'cpar' : StdSuites.Text_Suite.paragraph,
'ctxt' : StdSuites.Text_Suite.text,
'ctxt' : text,
'stys' : styleset,
}
......
......@@ -29,6 +29,24 @@ class ID(aetools.NProperty):
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):
"""AppleTalk address - Addresses a device or service connected via the AppleTalk protocol """
want = 'cat '
......@@ -47,6 +65,26 @@ class AppleTalk_zone(aetools.NProperty):
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):
"""Ethernet address - Addresses a device by its Ethernet address """
want = 'cen '
......@@ -111,53 +149,15 @@ class Token_Ring_address(aetools.ComponentItem):
Token_Ring_addresses = Token_Ring_address
class USB_Addresses(aetools.ComponentItem):
"""USB Addresses - """
class USB_address(aetools.ComponentItem):
"""USB address - Addresses a device on the Universal Serial Bus """
want = 'cusb'
USB_address = USB_Addresses
class name(aetools.NProperty):
"""name - the USB device name """
which = 'pnam'
want = 'TEXT'
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 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
USB_Addresses = USB_address
ADB_address._superclassnames = ['address_specification']
ADB_address._privpropdict = {
'ID' : ID,
......@@ -165,6 +165,14 @@ ADB_address._privpropdict = {
}
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._privpropdict = {
'AppleTalk_machine' : AppleTalk_machine,
......@@ -174,6 +182,21 @@ AppleTalk_address._privpropdict = {
}
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._privpropdict = {
'ID' : ID,
......@@ -222,33 +245,12 @@ Token_Ring_address._privpropdict = {
}
Token_Ring_address._privelemdict = {
}
USB_Addresses._superclassnames = []
USB_Addresses._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,
USB_address._superclassnames = ['address_specification']
USB_address._privpropdict = {
'_3c_inheritance_3e_' : _3c_inheritance_3e_,
'name' : name,
}
bus_slot._privelemdict = {
}
device_specification._superclassnames = []
device_specification._privpropdict = {
'device_address' : device_address,
'device_type' : device_type,
'properties' : properties,
}
device_specification._privelemdict = {
USB_address._privelemdict = {
}
_Enum_econ = {
'ADB' : 'eadb', #
......@@ -337,7 +339,7 @@ _classdeclarations = {
'clt ' : LocalTalk_address,
'cscs' : SCSI_address,
'ctok' : Token_Ring_address,
'cusb' : USB_Addresses,
'cusb' : USB_address,
}
_propdeclarations = {
......
......@@ -119,45 +119,17 @@ class writing_code(aetools.NProperty):
drawing_areas = drawing_area
class graphic_group(aetools.ComponentItem):
"""graphic group - Group of graphics """
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 """
class graphic_objects(aetools.ComponentItem):
"""graphic objects - """
want = 'cgob'
graphic_objects = graphic_object
graphic_object = graphic_objects
class graphic_shape(aetools.ComponentItem):
"""graphic shape - A graphic shape """
class graphic_shapes(aetools.ComponentItem):
"""graphic shapes - """
want = 'cgsh'
graphic_shapes = graphic_shape
graphic_shape = graphic_shapes
class graphic_text(aetools.ComponentItem):
"""graphic text - A series of characters within a drawing area """
......@@ -179,23 +151,11 @@ class uniform_styles(aetools.NProperty):
which = 'ustl'
want = 'tsty'
class oval(aetools.ComponentItem):
"""oval - An oval """
class ovals(aetools.ComponentItem):
"""ovals - """
want = 'covl'
ovals = oval
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
oval = ovals
class polygon(aetools.ComponentItem):
"""polygon - A polygon """
......@@ -207,11 +167,29 @@ class point_list(aetools.NProperty):
polygons = polygon
class rectangle(aetools.ComponentItem):
"""rectangle - A rectangle """
class graphic_groups(aetools.ComponentItem):
"""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'
rectangles = rectangle
rectangle = rectangles
class rounded_rectangle(aetools.ComponentItem):
"""rounded rectangle - A rounded rectangle """
......@@ -226,6 +204,28 @@ class corner_curve_width(aetools.NProperty):
want = 'shor'
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._privpropdict = {
'arc_angle' : arc_angle,
......@@ -259,29 +259,15 @@ drawing_area._privpropdict = {
}
drawing_area._privelemdict = {
}
graphic_group._superclassnames = []
graphic_group._privpropdict = {
graphic_objects._superclassnames = []
graphic_objects._privpropdict = {
}
graphic_group._privelemdict = {
graphic_objects._privelemdict = {
}
graphic_line._superclassnames = []
graphic_line._privpropdict = {
'arrow_style' : arrow_style,
'dash_style' : dash_style,
'end_point' : end_point,
'start_point' : start_point,
graphic_shapes._superclassnames = []
graphic_shapes._privpropdict = {
}
graphic_line._privelemdict = {
}
graphic_object._superclassnames = []
graphic_object._privpropdict = {
}
graphic_object._privelemdict = {
}
graphic_shape._superclassnames = []
graphic_shape._privpropdict = {
}
graphic_shape._privelemdict = {
graphic_shapes._privelemdict = {
}
graphic_text._superclassnames = []
graphic_text._privpropdict = {
......@@ -292,21 +278,10 @@ graphic_text._privpropdict = {
}
graphic_text._privelemdict = {
}
oval._superclassnames = []
oval._privpropdict = {
ovals._superclassnames = []
ovals._privpropdict = {
}
oval._privelemdict = {
}
pixel._superclassnames = []
pixel._privpropdict = {
'color' : color,
}
pixel._privelemdict = {
}
pixel_map._superclassnames = []
pixel_map._privpropdict = {
}
pixel_map._privelemdict = {
ovals._privelemdict = {
}
polygon._superclassnames = []
polygon._privpropdict = {
......@@ -314,10 +289,26 @@ polygon._privpropdict = {
}
polygon._privelemdict = {
}
rectangle._superclassnames = []
rectangle._privpropdict = {
graphic_groups._superclassnames = []
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._privpropdict = {
......@@ -326,6 +317,15 @@ rounded_rectangle._privpropdict = {
}
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 = {
'no_arrow' : 'arno', # No arrow on line
'arrow_at_start' : 'arst', # Arrow at start of line
......@@ -358,15 +358,15 @@ _Enum_tran = {
_classdeclarations = {
'carc' : arc,
'cdrw' : drawing_area,
'cgob' : graphic_object,
'cgsh' : graphic_shape,
'cgob' : graphic_objects,
'cgsh' : graphic_shapes,
'cgtx' : graphic_text,
'covl' : oval,
'covl' : ovals,
'cpgn' : polygon,
'cpic' : graphic_group,
'cpix' : pixel_map,
'cpic' : graphic_groups,
'cpix' : pixel_maps,
'cpxl' : pixel,
'crec' : rectangle,
'crec' : rectangles,
'crrc' : rounded_rectangle,
'glin' : graphic_line,
}
......
......@@ -33,11 +33,11 @@ class translation(aetools.NProperty):
drawing_areas = drawing_area
class graphic_group(aetools.ComponentItem):
"""graphic group - Group of graphics """
class graphic_groups(aetools.ComponentItem):
"""graphic groups - """
want = 'cpic'
graphic_groups = graphic_group
graphic_group = graphic_groups
drawing_area._superclassnames = []
drawing_area._privpropdict = {
'rotation' : rotation,
......@@ -46,10 +46,10 @@ drawing_area._privpropdict = {
}
drawing_area._privelemdict = {
}
graphic_group._superclassnames = []
graphic_group._privpropdict = {
graphic_groups._superclassnames = []
graphic_groups._privpropdict = {
}
graphic_group._privelemdict = {
graphic_groups._privelemdict = {
}
#
......@@ -57,7 +57,7 @@ graphic_group._privelemdict = {
#
_classdeclarations = {
'cdrw' : drawing_area,
'cpic' : graphic_group,
'cpic' : graphic_groups,
}
_propdeclarations = {
......
......@@ -448,11 +448,11 @@ class Standard_Suite_Events(builtin_Suite_Events):
return _arguments['----']
class alias(aetools.ComponentItem):
"""alias - a file on a disk or server. The file must exist when you check the syntax of your script. """
class aliases(aetools.ComponentItem):
"""aliases - """
want = 'alis'
aliases = alias
alias = aliases
class application(aetools.ComponentItem):
"""application - An application program """
......@@ -480,31 +480,11 @@ class version(aetools.NProperty):
applications = application
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
class insertion_point(aetools.ComponentItem):
"""insertion point - An insertion location between two objects """
class insertion_points(aetools.ComponentItem):
"""insertion points - """
want = 'cins'
insertion_points = insertion_point
insertion_point = insertion_points
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. """
......@@ -559,10 +539,30 @@ class zoomed(aetools.NProperty):
want = 'bool'
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._privpropdict = {
......@@ -574,22 +574,10 @@ application._privpropdict = {
}
application._privelemdict = {
}
document._superclassnames = []
document._privpropdict = {
'modified' : modified,
}
document._privelemdict = {
}
file._superclassnames = []
file._privpropdict = {
'stationery' : stationery,
}
file._privelemdict = {
}
insertion_point._superclassnames = []
insertion_point._privpropdict = {
insertion_points._superclassnames = []
insertion_points._privpropdict = {
}
insertion_point._privelemdict = {
insertion_points._privelemdict = {
}
selection_2d_object._superclassnames = []
selection_2d_object._privpropdict = {
......@@ -612,6 +600,18 @@ window._privpropdict = {
}
window._privelemdict = {
}
document._superclassnames = []
document._privpropdict = {
'modified' : modified,
}
document._privelemdict = {
}
file._superclassnames = []
file._privpropdict = {
'stationery' : stationery,
}
file._privelemdict = {
}
class _3c_(aetools.NComparison):
"""< - Less than """
class _3d_(aetools.NComparison):
......@@ -663,9 +663,9 @@ _Enum_styl = {
# Indices of types declared in this module
#
_classdeclarations = {
'alis' : alias,
'alis' : aliases,
'capp' : application,
'cins' : insertion_point,
'cins' : insertion_points,
'csel' : selection_2d_object,
'cwin' : window,
'docu' : document,
......
......@@ -39,17 +39,17 @@ class name(aetools.NProperty):
columns = column
class row(aetools.ComponentItem):
"""row - A row """
class rows(aetools.ComponentItem):
"""rows - """
want = 'crow'
rows = row
row = rows
class table(aetools.ComponentItem):
"""table - A table """
class tables(aetools.ComponentItem):
"""tables - """
want = 'ctbl'
tables = table
table = tables
cell._superclassnames = []
cell._privpropdict = {
'formula' : formula,
......@@ -63,15 +63,15 @@ column._privpropdict = {
}
column._privelemdict = {
}
row._superclassnames = []
row._privpropdict = {
rows._superclassnames = []
rows._privpropdict = {
}
row._privelemdict = {
rows._privelemdict = {
}
table._superclassnames = []
table._privpropdict = {
tables._superclassnames = []
tables._privpropdict = {
}
table._privelemdict = {
tables._privelemdict = {
}
_Enum_prtn = {
'read_only' : 'nmod', # Can\xd5t change values or formulas
......@@ -86,8 +86,8 @@ _Enum_prtn = {
_classdeclarations = {
'ccel' : cell,
'ccol' : column,
'crow' : row,
'ctbl' : table,
'crow' : rows,
'ctbl' : tables,
}
_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