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

the primary name.
This commit is contained in:
Jack Jansen 2003-03-30 22:41:53 +00:00
parent 2dc16f2a1e
commit 068a1e208f
29 changed files with 8887 additions and 2191 deletions

View file

@ -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,

View file

@ -19,31 +19,120 @@ class alias_list(aetools.ComponentItem):
"""alias list - A list of aliases. Use \xd4as alias list\xd5 when a list of aliases is needed (instead of a list of file system item references). """
want = 'alst'
class column(aetools.ComponentItem):
"""column - a column of a list view """
want = 'lvcl'
class label(aetools.ComponentItem):
"""label - (NOT AVAILABLE YET) A Finder label (name and color) """
want = 'clbl'
class color(aetools.NProperty):
"""color - the color associated with the label """
which = 'colr'
want = 'cRGB'
class index(aetools.NProperty):
"""index - the index in the front-to-back ordering within its container """
which = 'pidx'
want = 'long'
class name(aetools.NProperty):
"""name - the column name """
"""name - the name associated with the label """
which = 'pnam'
want = 'elsv'
class sort_direction(aetools.NProperty):
"""sort direction - The direction in which the window is sorted """
which = 'sord'
want = 'sodr'
class visible(aetools.NProperty):
"""visible - is this column visible """
which = 'pvis'
want = 'bool'
class width(aetools.NProperty):
"""width - the width of this column """
which = 'clwd'
want = 'shor'
want = 'utxt'
columns = column
class preferences(aetools.ComponentItem):
"""preferences - (NOT AVAILABLE, SUBJECT TO CHANGE) The Finder Preferences """
want = 'cprf'
class button_view_arrangement(aetools.NProperty):
"""button view arrangement - the method of arrangement of icons in default Finder button view windows """
which = 'barr'
want = 'earr'
class button_view_icon_size(aetools.NProperty):
"""button view icon size - the size of icons displayed in Finder button view windows. """
which = 'bisz'
want = 'long'
class calculates_folder_sizes(aetools.NProperty):
"""calculates folder sizes - Are folder sizes calculated and displayed in Finder list view windows? """
which = 'sfsz'
want = 'bool'
class delay_before_springing(aetools.NProperty):
"""delay before springing - the delay before springing open a container in ticks (1/60th of a second) (12 is shortest delay, 60 is longest delay) """
which = 'dela'
want = 'shor'
class list_view_icon_size(aetools.NProperty):
"""list view icon size - the size of icons displayed in Finder list view windows. """
which = 'lisz'
want = 'long'
class shows_comments(aetools.NProperty):
"""shows comments - Are comments displayed in default Finder list view windows? """
which = 'scom'
want = 'bool'
class shows_creation_date(aetools.NProperty):
"""shows creation date - Are creation dates displayed in default Finder list view windows? """
which = 'scda'
want = 'bool'
class shows_kind(aetools.NProperty):
"""shows kind - Are document kinds displayed in default Finder list view windows? """
which = 'sknd'
want = 'bool'
class shows_label(aetools.NProperty):
"""shows label - Are labels displayed in default Finder list view windows? """
which = 'slbl'
want = 'bool'
class shows_modification_date(aetools.NProperty):
"""shows modification date - Are modification dates displayed in default Finder list view windows? """
which = 'sdat'
want = 'bool'
class shows_size(aetools.NProperty):
"""shows size - Are file sizes displayed in default Finder list view windows? """
which = 'ssiz'
want = 'bool'
class shows_version(aetools.NProperty):
"""shows version - Are file versions displayed in default Finder list view windows? """
which = 'svrs'
want = 'bool'
class spatial_view_arrangement(aetools.NProperty):
"""spatial view arrangement - the method of arrangement of icons in default Finder spatial view windows """
which = 'iarr'
want = 'earr'
class spatial_view_icon_size(aetools.NProperty):
"""spatial view icon size - the size of icons displayed in Finder spatial view windows. """
which = 'iisz'
want = 'long'
class spring_open_folders(aetools.NProperty):
"""spring open folders - Spring open folders after the specified delay? """
which = 'sprg'
want = 'bool'
class uses_relative_dates(aetools.NProperty):
"""uses relative dates - Are relative dates (e.g., today, yesterday) shown in Finder list view windows? """
which = 'urdt'
want = 'bool'
class uses_simple_menus(aetools.NProperty):
"""uses simple menus - Use simplified Finder menus? """
which = 'usme'
want = 'bool'
class uses_wide_grid(aetools.NProperty):
"""uses wide grid - Space icons on a wide grid? """
which = 'uswg'
want = 'bool'
class view_font(aetools.NProperty):
"""view font - the id of the font used in Finder views. """
which = 'vfnt'
want = 'long'
class view_font_size(aetools.NProperty):
"""view font size - the size of the font used in Finder views """
which = 'vfsz'
want = 'long'
class window(aetools.NProperty):
"""window - the window that would open if Finder preferences was opened """
which = 'cwin'
want = 'pwnd'
# element 'clbl' as ['indx', 'name']
class icon_view_options(aetools.ComponentItem):
"""icon view options - the icon view options """
want = 'icop'
arrangement = spatial_view_arrangement
class icon_size(aetools.NProperty):
"""icon size - the size of icons displayed in the icon view """
which = 'lvis'
want = 'shor'
class icon_family(aetools.ComponentItem):
"""icon family - (NOT AVAILABLE YET) A family of icons """
@ -87,158 +176,37 @@ class small_monochrome_icon_and_mask(aetools.NProperty):
which = 'ics#'
want = 'ics#'
class icon_view_options(aetools.ComponentItem):
"""icon view options - the icon view options """
want = 'icop'
class arrangement(aetools.NProperty):
"""arrangement - the property by which to keep icons arranged """
which = 'iarr'
want = 'earr'
class icon_size(aetools.NProperty):
"""icon size - the size of icons displayed in the icon view """
which = 'lvis'
class column(aetools.ComponentItem):
"""column - a column of a list view """
want = 'lvcl'
class sort_direction(aetools.NProperty):
"""sort direction - The direction in which the window is sorted """
which = 'sord'
want = 'sodr'
class visible(aetools.NProperty):
"""visible - is this column visible """
which = 'pvis'
want = 'bool'
class width(aetools.NProperty):
"""width - the width of this column """
which = 'clwd'
want = 'shor'
class label(aetools.ComponentItem):
"""label - (NOT AVAILABLE YET) A Finder label (name and color) """
want = 'clbl'
class color(aetools.NProperty):
"""color - the color associated with the label """
which = 'colr'
want = 'cRGB'
columns = column
class list_view_options(aetools.ComponentItem):
"""list view options - the list view options """
want = 'lvop'
class calculates_folder_sizes(aetools.NProperty):
"""calculates folder sizes - Are folder sizes calculated and displayed in the window? """
which = 'sfsz'
want = 'bool'
class sort_column(aetools.NProperty):
"""sort column - the column that the list view is sorted on """
which = 'srtc'
want = 'lvcl'
class uses_relative_dates(aetools.NProperty):
"""uses relative dates - Are relative dates (e.g., today, yesterday) shown in the list view? """
which = 'urdt'
want = 'bool'
# element 'lvcl' as ['indx', 'rele', 'rang', 'test']
class preferences(aetools.ComponentItem):
"""preferences - (NOT AVAILABLE, SUBJECT TO CHANGE) The Finder Preferences """
want = 'cprf'
class button_view_arrangement(aetools.NProperty):
"""button view arrangement - the method of arrangement of icons in default Finder button view windows """
which = 'barr'
want = 'earr'
class button_view_icon_size(aetools.NProperty):
"""button view icon size - the size of icons displayed in Finder button view windows. """
which = 'bisz'
want = 'long'
class delay_before_springing(aetools.NProperty):
"""delay before springing - the delay before springing open a container in ticks (1/60th of a second) (12 is shortest delay, 60 is longest delay) """
which = 'dela'
want = 'shor'
class list_view_icon_size(aetools.NProperty):
"""list view icon size - the size of icons displayed in Finder list view windows. """
which = 'lisz'
want = 'long'
class shows_comments(aetools.NProperty):
"""shows comments - Are comments displayed in default Finder list view windows? """
which = 'scom'
want = 'bool'
class shows_creation_date(aetools.NProperty):
"""shows creation date - Are creation dates displayed in default Finder list view windows? """
which = 'scda'
want = 'bool'
class shows_kind(aetools.NProperty):
"""shows kind - Are document kinds displayed in default Finder list view windows? """
which = 'sknd'
want = 'bool'
class shows_label(aetools.NProperty):
"""shows label - Are labels displayed in default Finder list view windows? """
which = 'slbl'
want = 'bool'
class shows_modification_date(aetools.NProperty):
"""shows modification date - Are modification dates displayed in default Finder list view windows? """
which = 'sdat'
want = 'bool'
class shows_size(aetools.NProperty):
"""shows size - Are file sizes displayed in default Finder list view windows? """
which = 'ssiz'
want = 'bool'
class shows_version(aetools.NProperty):
"""shows version - Are file versions displayed in default Finder list view windows? """
which = 'svrs'
want = 'bool'
spatial_view_arrangement = arrangement
class spatial_view_icon_size(aetools.NProperty):
"""spatial view icon size - the size of icons displayed in Finder spatial view windows. """
which = 'iisz'
want = 'long'
class spring_open_folders(aetools.NProperty):
"""spring open folders - Spring open folders after the specified delay? """
which = 'sprg'
want = 'bool'
class uses_simple_menus(aetools.NProperty):
"""uses simple menus - Use simplified Finder menus? """
which = 'usme'
want = 'bool'
class uses_wide_grid(aetools.NProperty):
"""uses wide grid - Space icons on a wide grid? """
which = 'uswg'
want = 'bool'
class view_font(aetools.NProperty):
"""view font - the id of the font used in Finder views. """
which = 'vfnt'
want = 'long'
class view_font_size(aetools.NProperty):
"""view font size - the size of the font used in Finder views """
which = 'vfsz'
want = 'long'
class window(aetools.NProperty):
"""window - the window that would open if Finder preferences was opened """
which = 'cwin'
want = 'pwnd'
# element 'clbl' as ['indx', 'name']
alias_list._superclassnames = []
alias_list._privpropdict = {
}
alias_list._privelemdict = {
}
column._superclassnames = []
column._privpropdict = {
'index' : index,
'name' : name,
'sort_direction' : sort_direction,
'visible' : visible,
'width' : width,
}
column._privelemdict = {
}
icon_family._superclassnames = []
icon_family._privpropdict = {
'large_32_bit_icon' : large_32_bit_icon,
'large_4_bit_icon' : large_4_bit_icon,
'large_8_bit_icon' : large_8_bit_icon,
'large_8_bit_mask' : large_8_bit_mask,
'large_monochrome_icon_and_mask' : large_monochrome_icon_and_mask,
'small_32_bit_icon' : small_32_bit_icon,
'small_4_bit_icon' : small_4_bit_icon,
'small_8_bit_icon' : small_8_bit_icon,
'small_8_bit_mask' : small_8_bit_mask,
'small_monochrome_icon_and_mask' : small_monochrome_icon_and_mask,
}
icon_family._privelemdict = {
}
icon_view_options._superclassnames = []
icon_view_options._privpropdict = {
'arrangement' : arrangement,
'icon_size' : icon_size,
}
icon_view_options._privelemdict = {
}
label._superclassnames = []
label._privpropdict = {
'color' : color,
@ -247,16 +215,6 @@ label._privpropdict = {
}
label._privelemdict = {
}
list_view_options._superclassnames = []
list_view_options._privpropdict = {
'calculates_folder_sizes' : calculates_folder_sizes,
'icon_size' : icon_size,
'sort_column' : sort_column,
'uses_relative_dates' : uses_relative_dates,
}
list_view_options._privelemdict = {
'column' : column,
}
preferences._superclassnames = []
preferences._privpropdict = {
'button_view_arrangement' : button_view_arrangement,
@ -284,6 +242,48 @@ preferences._privpropdict = {
preferences._privelemdict = {
'label' : label,
}
icon_view_options._superclassnames = []
icon_view_options._privpropdict = {
'arrangement' : arrangement,
'icon_size' : icon_size,
}
icon_view_options._privelemdict = {
}
icon_family._superclassnames = []
icon_family._privpropdict = {
'large_32_bit_icon' : large_32_bit_icon,
'large_4_bit_icon' : large_4_bit_icon,
'large_8_bit_icon' : large_8_bit_icon,
'large_8_bit_mask' : large_8_bit_mask,
'large_monochrome_icon_and_mask' : large_monochrome_icon_and_mask,
'small_32_bit_icon' : small_32_bit_icon,
'small_4_bit_icon' : small_4_bit_icon,
'small_8_bit_icon' : small_8_bit_icon,
'small_8_bit_mask' : small_8_bit_mask,
'small_monochrome_icon_and_mask' : small_monochrome_icon_and_mask,
}
icon_family._privelemdict = {
}
column._superclassnames = []
column._privpropdict = {
'index' : index,
'name' : name,
'sort_direction' : sort_direction,
'visible' : visible,
'width' : width,
}
column._privelemdict = {
}
list_view_options._superclassnames = []
list_view_options._privpropdict = {
'calculates_folder_sizes' : calculates_folder_sizes,
'icon_size' : icon_size,
'sort_column' : sort_column,
'uses_relative_dates' : uses_relative_dates,
}
list_view_options._privelemdict = {
'column' : column,
}
#
# Indices of types declared in this module
@ -306,7 +306,7 @@ _propdeclarations = {
'colr' : color,
'cwin' : window,
'dela' : delay_before_springing,
'iarr' : arrangement,
'iarr' : spatial_view_arrangement,
'icl4' : large_4_bit_icon,
'icl8' : large_8_bit_icon,
'ics#' : small_monochrome_icon_and_mask,

View file

@ -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

View file

@ -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,