diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 2002-08-07 15:53:42 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 2002-08-07 15:53:42 (GMT) |
commit | 295105f3aa9bb205745b156aacf4dc17d5d30274 (patch) | |
tree | cc62e2269f8115a23231160dd85b4e0b0d18e5b3 /Mac/Lib/lib-scriptpackages/Finder | |
parent | 7ff034b65b85265989b8fd256febc88ae9e8947d (diff) | |
download | cpython-295105f3aa9bb205745b156aacf4dc17d5d30274.zip cpython-295105f3aa9bb205745b156aacf4dc17d5d30274.tar.gz cpython-295105f3aa9bb205745b156aacf4dc17d5d30274.tar.bz2 |
Regenerated with OSA class inheritance and fix for non-ascii chars.
Diffstat (limited to 'Mac/Lib/lib-scriptpackages/Finder')
-rw-r--r-- | Mac/Lib/lib-scriptpackages/Finder/Containers_and_folders.py | 41 | ||||
-rw-r--r-- | Mac/Lib/lib-scriptpackages/Finder/Earlier_terms.py | 83 | ||||
-rw-r--r-- | Mac/Lib/lib-scriptpackages/Finder/Enumerations.py | 2 | ||||
-rw-r--r-- | Mac/Lib/lib-scriptpackages/Finder/Files_and_suitcases.py | 75 | ||||
-rw-r--r-- | Mac/Lib/lib-scriptpackages/Finder/Finder_Basics.py | 38 | ||||
-rw-r--r-- | Mac/Lib/lib-scriptpackages/Finder/Finder_items.py | 11 | ||||
-rw-r--r-- | Mac/Lib/lib-scriptpackages/Finder/Obsolete_terms.py | 61 | ||||
-rw-r--r-- | Mac/Lib/lib-scriptpackages/Finder/Process_classes.py | 17 | ||||
-rw-r--r-- | Mac/Lib/lib-scriptpackages/Finder/Standard_Suite.py | 8 | ||||
-rw-r--r-- | Mac/Lib/lib-scriptpackages/Finder/Type_Definitions.py | 24 | ||||
-rw-r--r-- | Mac/Lib/lib-scriptpackages/Finder/Window_classes.py | 45 | ||||
-rw-r--r-- | Mac/Lib/lib-scriptpackages/Finder/__init__.py | 387 |
12 files changed, 620 insertions, 172 deletions
diff --git a/Mac/Lib/lib-scriptpackages/Finder/Containers_and_folders.py b/Mac/Lib/lib-scriptpackages/Finder/Containers_and_folders.py index 2914cc3..c3aac16 100644 --- a/Mac/Lib/lib-scriptpackages/Finder/Containers_and_folders.py +++ b/Mac/Lib/lib-scriptpackages/Finder/Containers_and_folders.py @@ -1,7 +1,7 @@ """Suite Containers and folders: Classes that can contain other file system items Level 1, version 1 -Generated from Moes:Systeemmap:Finder +Generated from /Volumes/Sap/System Folder/Finder AETE/AEUT resource version 0/144, language 0, script 0 """ @@ -216,7 +216,7 @@ class folder(aetools.ComponentItem): folders = folder class desktop_2d_object(aetools.ComponentItem): - """desktop-object - Desktop-object is the class of the –desktop” object """ + """desktop-object - Desktop-object is the class of the \xd2desktop\xd3 object """ want = 'cdsk' class startup_disk(aetools.NProperty): """startup disk - the startup disk """ @@ -246,7 +246,7 @@ class trash(aetools.NProperty): # element 'dsut' as ['indx', 'name'] class trash_2d_object(aetools.ComponentItem): - """trash-object - Trash-object is the class of the –trash” object """ + """trash-object - Trash-object is the class of the \xd2trash\xd3 object """ want = 'ctrs' class warns_before_emptying(aetools.NProperty): """warns before emptying - Display a dialog when emptying the trash? """ @@ -270,8 +270,9 @@ class warns_before_emptying(aetools.NProperty): # element 'fsut' as ['indx', 'name'] # element 'dsut' as ['indx', 'name'] import Earlier_terms +container._superclassnames = ['item'] import Files_and_suitcases -container._propdict = { +container._privpropdict = { '_3c_Inheritance_3e_' : _3c_Inheritance_3e_, 'selection' : selection, 'entire_contents' : entire_contents, @@ -282,7 +283,7 @@ container._propdict = { 'icon_size' : icon_size, 'view_options_window' : view_options_window, } -container._elemdict = { +container._privelemdict = { 'item' : Earlier_terms.item, 'container' : container, 'sharable_container' : sharable_container, @@ -301,7 +302,8 @@ container._elemdict = { 'font_suitcase' : Files_and_suitcases.font_suitcase, 'accessory_suitcase' : Earlier_terms.accessory_suitcase, } -sharable_container._propdict = { +sharable_container._superclassnames = ['container'] +sharable_container._privpropdict = { '_3c_Inheritance_3e_' : _3c_Inheritance_3e_, 'owner' : owner, 'group' : group, @@ -314,7 +316,7 @@ sharable_container._propdict = { 'shared' : shared, 'protected' : protected, } -sharable_container._elemdict = { +sharable_container._privelemdict = { 'item' : Earlier_terms.item, 'container' : container, 'sharable_container' : sharable_container, @@ -333,14 +335,16 @@ sharable_container._elemdict = { 'font_suitcase' : Files_and_suitcases.font_suitcase, 'accessory_suitcase' : Earlier_terms.accessory_suitcase, } -sharing_privileges._propdict = { +sharing_privileges._superclassnames = [] +sharing_privileges._privpropdict = { 'see_folders' : see_folders, 'see_files' : see_files, 'make_changes' : make_changes, } -sharing_privileges._elemdict = { +sharing_privileges._privelemdict = { } -disk._propdict = { +disk._superclassnames = ['sharable_container'] +disk._privpropdict = { '_3c_Inheritance_3e_' : _3c_Inheritance_3e_, 'capacity' : capacity, 'free_space' : free_space, @@ -348,7 +352,7 @@ disk._propdict = { 'local_volume' : local_volume, 'startup' : startup, } -disk._elemdict = { +disk._privelemdict = { 'item' : Earlier_terms.item, 'container' : container, 'sharable_container' : sharable_container, @@ -367,10 +371,11 @@ disk._elemdict = { 'font_suitcase' : Files_and_suitcases.font_suitcase, 'accessory_suitcase' : Earlier_terms.accessory_suitcase, } -folder._propdict = { +folder._superclassnames = ['sharable_container'] +folder._privpropdict = { '_3c_Inheritance_3e_' : _3c_Inheritance_3e_, } -folder._elemdict = { +folder._privelemdict = { 'item' : Earlier_terms.item, 'container' : container, 'sharable_container' : sharable_container, @@ -389,12 +394,13 @@ folder._elemdict = { 'font_suitcase' : Files_and_suitcases.font_suitcase, 'accessory_suitcase' : Earlier_terms.accessory_suitcase, } -desktop_2d_object._propdict = { +desktop_2d_object._superclassnames = ['container'] +desktop_2d_object._privpropdict = { '_3c_Inheritance_3e_' : _3c_Inheritance_3e_, 'startup_disk' : startup_disk, 'trash' : trash, } -desktop_2d_object._elemdict = { +desktop_2d_object._privelemdict = { 'item' : Earlier_terms.item, 'container' : container, 'sharable_container' : sharable_container, @@ -414,11 +420,12 @@ desktop_2d_object._elemdict = { 'font_suitcase' : Files_and_suitcases.font_suitcase, 'accessory_suitcase' : Earlier_terms.accessory_suitcase, } -trash_2d_object._propdict = { +trash_2d_object._superclassnames = ['container'] +trash_2d_object._privpropdict = { '_3c_Inheritance_3e_' : _3c_Inheritance_3e_, 'warns_before_emptying' : warns_before_emptying, } -trash_2d_object._elemdict = { +trash_2d_object._privelemdict = { 'item' : Earlier_terms.item, 'container' : container, 'sharable_container' : sharable_container, diff --git a/Mac/Lib/lib-scriptpackages/Finder/Earlier_terms.py b/Mac/Lib/lib-scriptpackages/Finder/Earlier_terms.py index d65043d..2f72d0f 100644 --- a/Mac/Lib/lib-scriptpackages/Finder/Earlier_terms.py +++ b/Mac/Lib/lib-scriptpackages/Finder/Earlier_terms.py @@ -1,7 +1,7 @@ """Suite Earlier terms: Terms that have been renamed Level 1, version 1 -Generated from Moes:Systeemmap:Finder +Generated from /Volumes/Sap/System Folder/Finder AETE/AEUT resource version 0/144, language 0, script 0 """ @@ -24,7 +24,7 @@ class properties(aetools.NProperty): which = 'qpro' want = 'reco' class clipboard(aetools.NProperty): - """clipboard - the FinderÕs clipboard window """ + """clipboard - the Finder\xd5s clipboard window """ which = 'pcli' want = 'obj ' class largest_free_block(aetools.NProperty): @@ -32,11 +32,11 @@ class largest_free_block(aetools.NProperty): which = 'mfre' want = 'long' class name(aetools.NProperty): - """name - the FinderÕs name """ + """name - the Finder\xd5s name """ which = 'pnam' want = 'itxt' class visible(aetools.NProperty): - """visible - Is the FinderÕs layer visible? """ + """visible - Is the Finder\xd5s layer visible? """ which = 'pvis' want = 'bool' class frontmost(aetools.NProperty): @@ -48,7 +48,7 @@ class selection(aetools.NProperty): which = 'sele' want = 'obj ' class insertion_location(aetools.NProperty): - """insertion location - the container in which a new folder would appear if –New Folder” was selected """ + """insertion location - the container in which a new folder would appear if \xd2New Folder\xd3 was selected """ which = 'pins' want = 'obj ' class file_sharing(aetools.NProperty): @@ -68,7 +68,7 @@ class version(aetools.NProperty): which = 'vers' want = 'itxt' class about_this_computer(aetools.NProperty): - """about this computer - the –About this Computer” dialog and the list of running processes displayed in it """ + """about this computer - the \xd2About this Computer\xd3 dialog and the list of running processes displayed in it """ which = 'abbx' want = 'obj ' class desktop(aetools.NProperty): @@ -195,7 +195,7 @@ class internet_location(aetools.ComponentItem): internet_locations = internet_location class information_window(aetools.ComponentItem): - """information window - An information window (opened by –Get Info”) """ + """information window - An information window (opened by \xd2Get Info\xd3) """ want = 'iwnd' class comment(aetools.NProperty): """comment - the comment """ @@ -359,7 +359,7 @@ class protected(aetools.NProperty): want = 'bool' class trash_2d_object(aetools.ComponentItem): - """trash-object - Trash-object is the class of the –trash” object """ + """trash-object - Trash-object is the class of the \xd2trash\xd3 object """ want = 'ctrs' class preferences(aetools.ComponentItem): @@ -429,7 +429,8 @@ class collapsed(aetools.NProperty): """collapsed - Is the window collapsed (only applies to open non-pop-up windows)? """ which = 'wshd' want = 'bool' -application._propdict = { +application._superclassnames = [] +application._privpropdict = { 'properties' : properties, 'clipboard' : clipboard, 'largest_free_block' : largest_free_block, @@ -446,18 +447,21 @@ application._propdict = { 'desktop' : desktop, 'Finder_preferences' : Finder_preferences, } -application._elemdict = { +application._privelemdict = { } -application_file._propdict = { +import Files_and_suitcases +application_file._superclassnames = ['file'] +application_file._privpropdict = { '_3c_Inheritance_3e_' : _3c_Inheritance_3e_, 'minimum_partition_size' : minimum_partition_size, 'partition_size' : partition_size, 'suggested_partition_size' : suggested_partition_size, 'scriptable' : scriptable, } -application_file._elemdict = { +application_file._privelemdict = { } -container_window._propdict = { +container_window._superclassnames = ['window'] +container_window._privpropdict = { '_3c_Inheritance_3e_' : _3c_Inheritance_3e_, 'container' : container, 'item' : item, @@ -477,21 +481,25 @@ container_window._propdict = { 'show_version' : show_version, 'use_relative_dates' : use_relative_dates, } -container_window._elemdict = { +container_window._privelemdict = { } -accessory_process._propdict = { +accessory_process._superclassnames = [] +accessory_process._privpropdict = { } -accessory_process._elemdict = { +accessory_process._privelemdict = { } -accessory_suitcase._propdict = { +accessory_suitcase._superclassnames = [] +accessory_suitcase._privpropdict = { } -accessory_suitcase._elemdict = { +accessory_suitcase._privelemdict = { } -internet_location._propdict = { +internet_location._superclassnames = [] +internet_location._privpropdict = { } -internet_location._elemdict = { +internet_location._privelemdict = { } -information_window._propdict = { +information_window._superclassnames = ['window'] +information_window._privpropdict = { '_3c_Inheritance_3e_' : _3c_Inheritance_3e_, 'item' : item, 'comment' : comment, @@ -509,9 +517,10 @@ information_window._propdict = { 'product_version' : product_version, 'version' : version, } -information_window._elemdict = { +information_window._privelemdict = { } -item._propdict = { +item._superclassnames = [] +item._privpropdict = { 'properties' : properties, 'name' : name, 'index' : index, @@ -535,9 +544,10 @@ item._propdict = { 'window' : window, 'information_window' : information_window, } -item._elemdict = { +item._privelemdict = { } -process._propdict = { +process._superclassnames = [] +process._privpropdict = { 'properties' : properties, 'name' : name, 'visible' : visible, @@ -550,9 +560,11 @@ process._propdict = { 'partition_size' : partition_size, 'partition_space_used' : partition_space_used, } -process._elemdict = { +process._privelemdict = { } -sharable_container._propdict = { +import Containers_and_folders +sharable_container._superclassnames = ['container'] +sharable_container._privpropdict = { '_3c_Inheritance_3e_' : _3c_Inheritance_3e_, 'owner' : owner, 'group' : group, @@ -565,15 +577,17 @@ sharable_container._propdict = { 'shared' : shared, 'protected' : protected, } -sharable_container._elemdict = { +sharable_container._privelemdict = { } -trash_2d_object._propdict = { +trash_2d_object._superclassnames = ['container'] +trash_2d_object._privpropdict = { '_3c_Inheritance_3e_' : _3c_Inheritance_3e_, 'warn_before_emptying' : warn_before_emptying, } -trash_2d_object._elemdict = { +trash_2d_object._privelemdict = { } -preferences._propdict = { +preferences._superclassnames = [] +preferences._privpropdict = { 'window' : window, 'calculate_folder_sizes' : calculate_folder_sizes, 'delay_before_springing' : delay_before_springing, @@ -589,9 +603,10 @@ preferences._propdict = { 'use_simple_menus' : use_simple_menus, 'use_wide_grid' : use_wide_grid, } -preferences._elemdict = { +preferences._privelemdict = { } -window._propdict = { +window._superclassnames = [] +window._privpropdict = { 'properties' : properties, 'position' : position, 'bounds' : bounds, @@ -610,7 +625,7 @@ window._propdict = { 'pulled_open' : pulled_open, 'collapsed' : collapsed, } -window._elemdict = { +window._privelemdict = { } # diff --git a/Mac/Lib/lib-scriptpackages/Finder/Enumerations.py b/Mac/Lib/lib-scriptpackages/Finder/Enumerations.py index 9ef08a8..97cfbfb 100644 --- a/Mac/Lib/lib-scriptpackages/Finder/Enumerations.py +++ b/Mac/Lib/lib-scriptpackages/Finder/Enumerations.py @@ -1,7 +1,7 @@ """Suite Enumerations: Enumerations for the Finder Level 1, version 1 -Generated from Moes:Systeemmap:Finder +Generated from /Volumes/Sap/System Folder/Finder AETE/AEUT resource version 0/144, language 0, script 0 """ diff --git a/Mac/Lib/lib-scriptpackages/Finder/Files_and_suitcases.py b/Mac/Lib/lib-scriptpackages/Finder/Files_and_suitcases.py index 24e963e..0e85539 100644 --- a/Mac/Lib/lib-scriptpackages/Finder/Files_and_suitcases.py +++ b/Mac/Lib/lib-scriptpackages/Finder/Files_and_suitcases.py @@ -1,7 +1,7 @@ """Suite Files and suitcases: Classes representing files and suitcases Level 1, version 1 -Generated from Moes:Systeemmap:Finder +Generated from /Volumes/Sap/System Folder/Finder AETE/AEUT resource version 0/144, language 0, script 0 """ @@ -39,18 +39,18 @@ class stationery(aetools.NProperty): which = 'pspd' want = 'bool' class product_version(aetools.NProperty): - """product version - the version of the product (visible at the top of the –Get Info” window) """ + """product version - the version of the product (visible at the top of the \xd2Get Info\xd3 window) """ which = 'ver2' want = 'itxt' class version(aetools.NProperty): - """version - the version of the file (visible at the bottom of the –Get Info” window) """ + """version - the version of the file (visible at the bottom of the \xd2Get Info\xd3 window) """ which = 'vers' want = 'itxt' files = file class alias_file(aetools.ComponentItem): - """alias file - An alias file (created with –Make Alias”) """ + """alias file - An alias file (created with \xd2Make Alias\xd3) """ want = 'alia' class original_item(aetools.NProperty): """original item - the original item pointed to by the alias """ @@ -155,7 +155,9 @@ class desk_accessory_suitcase(aetools.ComponentItem): # element 'cobj' as ['indx', 'name'] desk_accessory_suitcases = desk_accessory_suitcase -file._propdict = { +import Earlier_terms +file._superclassnames = ['item'] +file._privpropdict = { '_3c_Inheritance_3e_' : _3c_Inheritance_3e_, 'file_type' : file_type, 'creator_type' : creator_type, @@ -164,15 +166,17 @@ file._propdict = { 'product_version' : product_version, 'version' : version, } -file._elemdict = { +file._privelemdict = { } -alias_file._propdict = { +alias_file._superclassnames = ['file'] +alias_file._privpropdict = { '_3c_Inheritance_3e_' : _3c_Inheritance_3e_, 'original_item' : original_item, } -alias_file._elemdict = { +alias_file._privelemdict = { } -application_file._propdict = { +application_file._superclassnames = ['file'] +application_file._privpropdict = { '_3c_Inheritance_3e_' : _3c_Inheritance_3e_, 'suggested_size' : suggested_size, 'minimum_size' : minimum_size, @@ -180,62 +184,71 @@ application_file._propdict = { 'accepts_high_level_events' : accepts_high_level_events, 'has_scripting_terminology' : has_scripting_terminology, } -application_file._elemdict = { +application_file._privelemdict = { } -document_file._propdict = { +document_file._superclassnames = ['file'] +document_file._privpropdict = { '_3c_Inheritance_3e_' : _3c_Inheritance_3e_, } -document_file._elemdict = { +document_file._privelemdict = { } -font_file._propdict = { +font_file._superclassnames = ['file'] +font_file._privpropdict = { '_3c_Inheritance_3e_' : _3c_Inheritance_3e_, } -font_file._elemdict = { +font_file._privelemdict = { } -desk_accessory_file._propdict = { +desk_accessory_file._superclassnames = ['file'] +desk_accessory_file._privpropdict = { '_3c_Inheritance_3e_' : _3c_Inheritance_3e_, } -desk_accessory_file._elemdict = { +desk_accessory_file._privelemdict = { } -internet_location_file._propdict = { +internet_location_file._superclassnames = ['file'] +internet_location_file._privpropdict = { '_3c_Inheritance_3e_' : _3c_Inheritance_3e_, 'location' : location, } -internet_location_file._elemdict = { +internet_location_file._privelemdict = { } -sound_file._propdict = { +sound_file._superclassnames = ['file'] +sound_file._privpropdict = { '_3c_Inheritance_3e_' : _3c_Inheritance_3e_, 'sound' : sound, } -sound_file._elemdict = { +sound_file._privelemdict = { } -clipping._propdict = { +clipping._superclassnames = ['file'] +clipping._privpropdict = { '_3c_Inheritance_3e_' : _3c_Inheritance_3e_, } -clipping._elemdict = { +clipping._privelemdict = { } -package._propdict = { +package._superclassnames = ['item'] +package._privpropdict = { '_3c_Inheritance_3e_' : _3c_Inheritance_3e_, } -package._elemdict = { +package._privelemdict = { } -import Earlier_terms -suitcase._propdict = { +suitcase._superclassnames = ['file'] +suitcase._privpropdict = { '_3c_Inheritance_3e_' : _3c_Inheritance_3e_, } -suitcase._elemdict = { +suitcase._privelemdict = { 'item' : Earlier_terms.item, } -font_suitcase._propdict = { +font_suitcase._superclassnames = ['suitcase'] +font_suitcase._privpropdict = { '_3c_Inheritance_3e_' : _3c_Inheritance_3e_, } -font_suitcase._elemdict = { +font_suitcase._privelemdict = { 'item' : Earlier_terms.item, } -desk_accessory_suitcase._propdict = { +desk_accessory_suitcase._superclassnames = ['suitcase'] +desk_accessory_suitcase._privpropdict = { '_3c_Inheritance_3e_' : _3c_Inheritance_3e_, } -desk_accessory_suitcase._elemdict = { +desk_accessory_suitcase._privelemdict = { 'item' : Earlier_terms.item, } diff --git a/Mac/Lib/lib-scriptpackages/Finder/Finder_Basics.py b/Mac/Lib/lib-scriptpackages/Finder/Finder_Basics.py index d858466..3589126 100644 --- a/Mac/Lib/lib-scriptpackages/Finder/Finder_Basics.py +++ b/Mac/Lib/lib-scriptpackages/Finder/Finder_Basics.py @@ -1,7 +1,7 @@ """Suite Finder Basics: Commonly-used Finder commands and object classes Level 1, version 1 -Generated from Moes:Systeemmap:Finder +Generated from /Volumes/Sap/System Folder/Finder AETE/AEUT resource version 0/144, language 0, script 0 """ @@ -145,7 +145,7 @@ class application(aetools.ComponentItem): """application - The Finder """ want = 'capp' class clipboard(aetools.NProperty): - """clipboard - the FinderÕs clipboard window """ + """clipboard - the Finder\xd5s clipboard window """ which = 'pcli' want = 'obj ' class largest_free_block(aetools.NProperty): @@ -153,11 +153,11 @@ class largest_free_block(aetools.NProperty): which = 'mfre' want = 'long' class name(aetools.NProperty): - """name - the FinderÕs name """ + """name - the Finder\xd5s name """ which = 'pnam' want = 'itxt' class visible(aetools.NProperty): - """visible - Is the FinderÕs layer visible? """ + """visible - Is the Finder\xd5s layer visible? """ which = 'pvis' want = 'bool' class frontmost(aetools.NProperty): @@ -169,7 +169,7 @@ class selection(aetools.NProperty): which = 'sele' want = 'obj ' class insertion_location(aetools.NProperty): - """insertion location - the container in which a new folder would appear if –New Folder” was selected """ + """insertion location - the container in which a new folder would appear if \xd2New Folder\xd3 was selected """ which = 'pins' want = 'obj ' class file_sharing(aetools.NProperty): @@ -189,7 +189,7 @@ class version(aetools.NProperty): which = 'vers' want = 'itxt' class about_this_computer(aetools.NProperty): - """about this computer - the –About this Computer” dialog and the list of running processes displayed in it """ + """about this computer - the \xd2About this Computer\xd3 dialog and the list of running processes displayed in it """ which = 'abbx' want = 'obj ' class desktop(aetools.NProperty): @@ -240,43 +240,44 @@ class system_folder(aetools.NProperty): which = 'macs' want = 'obj ' class apple_menu_items_folder(aetools.NProperty): - """apple menu items folder - the special folder named –Apple Menu Items,” the contents of which appear in the Apple menu """ + """apple menu items folder - the special folder named \xd2Apple Menu Items,\xd3 the contents of which appear in the Apple menu """ which = 'amnu' want = 'obj ' class control_panels_folder(aetools.NProperty): - """control panels folder - the special folder named –Control Panels” """ + """control panels folder - the special folder named \xd2Control Panels\xd3 """ which = 'ctrl' want = 'obj ' class extensions_folder(aetools.NProperty): - """extensions folder - the special folder named –Extensions” """ + """extensions folder - the special folder named \xd2Extensions\xd3 """ which = 'extn' want = 'obj ' class fonts_folder(aetools.NProperty): - """fonts folder - the special folder named –Fonts” """ + """fonts folder - the special folder named \xd2Fonts\xd3 """ which = 'font' want = 'obj ' class preferences_folder(aetools.NProperty): - """preferences folder - the special folder named –Preferences” """ + """preferences folder - the special folder named \xd2Preferences\xd3 """ which = 'pref' want = 'obj ' class shutdown_items_folder(aetools.NProperty): - """shutdown items folder - the special folder named –Shutdown Items” """ + """shutdown items folder - the special folder named \xd2Shutdown Items\xd3 """ which = 'shdf' want = 'obj ' class startup_items_folder(aetools.NProperty): - """startup items folder - the special folder named –Startup Items” """ + """startup items folder - the special folder named \xd2Startup Items\xd3 """ which = 'strt' want = 'obj ' class temporary_items_folder(aetools.NProperty): - """temporary items folder - the special folder named –Temporary Items” (invisible) """ + """temporary items folder - the special folder named \xd2Temporary Items\xd3 (invisible) """ which = 'temp' want = 'obj ' +application._superclassnames = [] import Earlier_terms import Containers_and_folders import Files_and_suitcases import Process_classes import Window_classes -application._propdict = { +application._privpropdict = { 'clipboard' : clipboard, 'largest_free_block' : largest_free_block, 'name' : name, @@ -293,7 +294,7 @@ application._propdict = { 'execution_state' : execution_state, 'Finder_preferences' : Finder_preferences, } -application._elemdict = { +application._privelemdict = { 'item' : Earlier_terms.item, 'container' : Containers_and_folders.container, 'sharable_container' : Earlier_terms.sharable_container, @@ -322,7 +323,8 @@ application._elemdict = { 'clipping_window' : Window_classes.clipping_window, 'content_space' : Window_classes.content_space, } -special_folders._propdict = { +special_folders._superclassnames = [] +special_folders._privpropdict = { 'system_folder' : system_folder, 'apple_menu_items_folder' : apple_menu_items_folder, 'control_panels_folder' : control_panels_folder, @@ -333,7 +335,7 @@ special_folders._propdict = { 'startup_items_folder' : startup_items_folder, 'temporary_items_folder' : temporary_items_folder, } -special_folders._elemdict = { +special_folders._privelemdict = { } # diff --git a/Mac/Lib/lib-scriptpackages/Finder/Finder_items.py b/Mac/Lib/lib-scriptpackages/Finder/Finder_items.py index 986ecba..1475fa6 100644 --- a/Mac/Lib/lib-scriptpackages/Finder/Finder_items.py +++ b/Mac/Lib/lib-scriptpackages/Finder/Finder_items.py @@ -1,7 +1,7 @@ """Suite Finder items: Commands used with file system items, and basic item definition Level 1, version 1 -Generated from Moes:Systeemmap:Finder +Generated from /Volumes/Sap/System Folder/Finder AETE/AEUT resource version 0/144, language 0, script 0 """ @@ -79,7 +79,7 @@ class Finder_items_Events: def empty(self, _object=None, _attributes={}, **_arguments): """empty: Empty the trash - Required argument: –empty” and –empty trash” both do the same thing + Required argument: \xd2empty\xd3 and \xd2empty trash\xd3 both do the same thing Keyword argument _attributes: AppleEvent attribute dictionary """ _code = 'fndr' @@ -233,7 +233,7 @@ class description(aetools.NProperty): which = 'dscr' want = 'itxt' class comment(aetools.NProperty): - """comment - the comment of the item, displayed in the –Get Info” window """ + """comment - the comment of the item, displayed in the \xd2Get Info\xd3 window """ which = 'comt' want = 'itxt' class size(aetools.NProperty): @@ -274,7 +274,8 @@ class information_window(aetools.NProperty): want = 'obj ' items = item -item._propdict = { +item._superclassnames = [] +item._privpropdict = { 'name' : name, 'index' : index, 'id' : id, @@ -297,7 +298,7 @@ item._propdict = { 'window' : window, 'information_window' : information_window, } -item._elemdict = { +item._privelemdict = { } _Enum_bool = None # XXXX enum bool not found!! diff --git a/Mac/Lib/lib-scriptpackages/Finder/Obsolete_terms.py b/Mac/Lib/lib-scriptpackages/Finder/Obsolete_terms.py index a30653d..58db611 100644 --- a/Mac/Lib/lib-scriptpackages/Finder/Obsolete_terms.py +++ b/Mac/Lib/lib-scriptpackages/Finder/Obsolete_terms.py @@ -1,7 +1,7 @@ """Suite Obsolete terms: Terms that have been deprecated Level 1, version 1 -Generated from Moes:Systeemmap:Finder +Generated from /Volumes/Sap/System Folder/Finder AETE/AEUT resource version 0/144, language 0, script 0 """ @@ -59,7 +59,7 @@ class locked_obsolete(aetools.NProperty): want = 'bool' class information_window(aetools.ComponentItem): - """information window - An information window (opened by –Get Info”) """ + """information window - An information window (opened by \xd2Get Info\xd3) """ want = 'iwnd' class creation_date_obsolete(aetools.NProperty): """creation date obsolete - the date on which the item was created (DEPRECATED - for use with scripts compiled before Finder 8.0. Will be removed in the next release) """ @@ -87,7 +87,7 @@ class sharing_window(aetools.NProperty): want = 'obj ' class sharing_window(aetools.ComponentItem): - """sharing window - A sharing window (opened by –Sharingƒ”) """ + """sharing window - A sharing window (opened by \xd2Sharing\xc9\xd3) """ want = 'swnd' class sharable_container(aetools.NProperty): """sharable container - the sharable container from which the window was opened """ @@ -109,66 +109,77 @@ class status_window(aetools.ComponentItem): want = 'qwnd' status_windows = status_window -application._propdict = { +application._superclassnames = [] +application._privpropdict = { 'view_preferences' : view_preferences, } -application._elemdict = { +application._privelemdict = { } -container._propdict = { +container._superclassnames = [] +container._privpropdict = { 'container_window' : container_window, } -container._elemdict = { +container._privelemdict = { } -container_window._propdict = { +container_window._superclassnames = [] +container_window._privpropdict = { 'folder_obsolete' : folder_obsolete, } -container_window._elemdict = { +container_window._privelemdict = { } -control_panel._propdict = { +control_panel._superclassnames = [] +control_panel._privpropdict = { } -control_panel._elemdict = { +control_panel._privelemdict = { } -file._propdict = { +file._superclassnames = [] +file._privpropdict = { 'file_type_obsolete' : file_type_obsolete, 'locked_obsolete' : locked_obsolete, } -file._elemdict = { +file._privelemdict = { } -information_window._propdict = { +information_window._superclassnames = [] +information_window._privpropdict = { 'creation_date_obsolete' : creation_date_obsolete, 'locked_obsolete' : locked_obsolete, 'modification_date_obsolete' : modification_date_obsolete, } -information_window._elemdict = { +information_window._privelemdict = { } -item._propdict = { +item._superclassnames = [] +item._privpropdict = { 'creation_date_obsolete' : creation_date_obsolete, 'folder_obsolete' : folder_obsolete, 'modification_date_obsolete' : modification_date_obsolete, } -item._elemdict = { +item._privelemdict = { } -process._propdict = { +process._superclassnames = [] +process._privpropdict = { 'file_type_obsolete' : file_type_obsolete, } -process._elemdict = { +process._privelemdict = { } -sharable_container._propdict = { +sharable_container._superclassnames = [] +sharable_container._privpropdict = { 'sharing_window' : sharing_window, } -sharable_container._elemdict = { +sharable_container._privelemdict = { } -sharing_window._propdict = { +sharing_window._superclassnames = [] +sharing_window._privpropdict = { 'sharable_container' : sharable_container, 'item' : item, 'container' : container, 'folder_obsolete' : folder_obsolete, } -sharing_window._elemdict = { +sharing_window._privelemdict = { } -status_window._propdict = { +status_window._superclassnames = [] +status_window._privpropdict = { } -status_window._elemdict = { +status_window._privelemdict = { } # diff --git a/Mac/Lib/lib-scriptpackages/Finder/Process_classes.py b/Mac/Lib/lib-scriptpackages/Finder/Process_classes.py index 60d098d..a54741c 100644 --- a/Mac/Lib/lib-scriptpackages/Finder/Process_classes.py +++ b/Mac/Lib/lib-scriptpackages/Finder/Process_classes.py @@ -1,7 +1,7 @@ """Suite Process classes: Classes representing processes that are running Level 1, version 1 -Generated from Moes:Systeemmap:Finder +Generated from /Volumes/Sap/System Folder/Finder AETE/AEUT resource version 0/144, language 0, script 0 """ @@ -88,7 +88,8 @@ class desk_accessory_file(aetools.NProperty): want = 'obj ' desk_accessory_processes = desk_accessory_process -process._propdict = { +process._superclassnames = [] +process._privpropdict = { 'name' : name, 'visible' : visible, 'frontmost' : frontmost, @@ -101,19 +102,21 @@ process._propdict = { 'total_partition_size' : total_partition_size, 'partition_space_used' : partition_space_used, } -process._elemdict = { +process._privelemdict = { } -application_process._propdict = { +application_process._superclassnames = ['process'] +application_process._privpropdict = { '_3c_Inheritance_3e_' : _3c_Inheritance_3e_, 'application_file' : application_file, } -application_process._elemdict = { +application_process._privelemdict = { } -desk_accessory_process._propdict = { +desk_accessory_process._superclassnames = ['process'] +desk_accessory_process._privpropdict = { '_3c_Inheritance_3e_' : _3c_Inheritance_3e_, 'desk_accessory_file' : desk_accessory_file, } -desk_accessory_process._elemdict = { +desk_accessory_process._privelemdict = { } # diff --git a/Mac/Lib/lib-scriptpackages/Finder/Standard_Suite.py b/Mac/Lib/lib-scriptpackages/Finder/Standard_Suite.py index 2840fb4..df23487 100644 --- a/Mac/Lib/lib-scriptpackages/Finder/Standard_Suite.py +++ b/Mac/Lib/lib-scriptpackages/Finder/Standard_Suite.py @@ -1,7 +1,7 @@ """Suite Standard Suite: Common terms that most applications should support Level 1, version 1 -Generated from Moes:Systeemmap:Finder +Generated from /Volumes/Sap/System Folder/Finder AETE/AEUT resource version 0/144, language 0, script 0 """ @@ -40,11 +40,11 @@ class Standard_Suite_Events(Standard_Suite_Events): if _arguments.has_key('----'): return _arguments['----'] - _argmap__print = { + _argmap_print_ = { 'with_properties' : 'prdt', } - def _print(self, _object, _attributes={}, **_arguments): + def print_(self, _object, _attributes={}, **_arguments): """print: Print the specified object(s) Required argument: list of objects to print Keyword argument with_properties: optional properties to be included with the print command sent to the application that prints the direct object @@ -53,7 +53,7 @@ class Standard_Suite_Events(Standard_Suite_Events): _code = 'aevt' _subcode = 'pdoc' - aetools.keysubst(_arguments, self._argmap__print) + aetools.keysubst(_arguments, self._argmap_print_) _arguments['----'] = _object diff --git a/Mac/Lib/lib-scriptpackages/Finder/Type_Definitions.py b/Mac/Lib/lib-scriptpackages/Finder/Type_Definitions.py index a74c330..0445c2c 100644 --- a/Mac/Lib/lib-scriptpackages/Finder/Type_Definitions.py +++ b/Mac/Lib/lib-scriptpackages/Finder/Type_Definitions.py @@ -1,7 +1,7 @@ """Suite Type Definitions: Definitions of records used in scripting the Finder Level 1, version 1 -Generated from Moes:Systeemmap:Finder +Generated from /Volumes/Sap/System Folder/Finder AETE/AEUT resource version 0/144, language 0, script 0 """ @@ -163,9 +163,10 @@ class small_4_bit_icon(aetools.NProperty): want = 'ics4' class alias_list(aetools.ComponentItem): - """alias list - A list of aliases. Use •as alias listÕ when a list of aliases is needed (instead of a list of file system item references). """ + """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' -preferences._propdict = { +preferences._superclassnames = [] +preferences._privpropdict = { 'window' : window, 'button_view_arrangement' : button_view_arrangement, 'button_view_icon_size' : button_view_icon_size, @@ -188,17 +189,19 @@ preferences._propdict = { 'view_font' : view_font, 'view_font_size' : view_font_size, } -preferences._elemdict = { +preferences._privelemdict = { 'label' : label, } -label._propdict = { +label._superclassnames = [] +label._privpropdict = { 'name' : name, 'index' : index, 'color' : color, } -label._elemdict = { +label._privelemdict = { } -icon_family._propdict = { +icon_family._superclassnames = [] +icon_family._privpropdict = { 'large_monochrome_icon_and_mask' : large_monochrome_icon_and_mask, 'large_8_bit_mask' : large_8_bit_mask, 'large_32_bit_icon' : large_32_bit_icon, @@ -210,11 +213,12 @@ icon_family._propdict = { 'small_8_bit_icon' : small_8_bit_icon, 'small_4_bit_icon' : small_4_bit_icon, } -icon_family._elemdict = { +icon_family._privelemdict = { } -alias_list._propdict = { +alias_list._superclassnames = [] +alias_list._privpropdict = { } -alias_list._elemdict = { +alias_list._privelemdict = { } # diff --git a/Mac/Lib/lib-scriptpackages/Finder/Window_classes.py b/Mac/Lib/lib-scriptpackages/Finder/Window_classes.py index 88e737b..bbfc46e 100644 --- a/Mac/Lib/lib-scriptpackages/Finder/Window_classes.py +++ b/Mac/Lib/lib-scriptpackages/Finder/Window_classes.py @@ -1,7 +1,7 @@ """Suite Window classes: Classes representing windows Level 1, version 1 -Generated from Moes:Systeemmap:Finder +Generated from /Volumes/Sap/System Folder/Finder AETE/AEUT resource version 0/144, language 0, script 0 """ @@ -164,7 +164,7 @@ class uses_relative_dates(aetools.NProperty): container_windows = container_window class information_window(aetools.ComponentItem): - """information window - An information window (opened by –Get Info”) """ + """information window - An information window (opened by \xd2Get Info\xd3) """ want = 'iwnd' class current_panel(aetools.NProperty): """current panel - the current panel in the information window """ @@ -219,11 +219,11 @@ class warns_before_emptying(aetools.NProperty): which = 'warn' want = 'bool' class product_version(aetools.NProperty): - """product version - the version of the product (visible at the top of the –Get Info” window) """ + """product version - the version of the product (visible at the top of the \xd2Get Info\xd3 window) """ which = 'ver2' want = 'itxt' class version(aetools.NProperty): - """version - the version of the file (visible at the bottom of the –Get Info” window) """ + """version - the version of the file (visible at the bottom of the \xd2Get Info\xd3 window) """ which = 'vers' want = 'itxt' @@ -246,11 +246,12 @@ class clipping_window(aetools.ComponentItem): clipping_windows = clipping_window class content_space(aetools.ComponentItem): - """content space - All windows, including the desktop window (–Window” does not include the desktop window) """ + """content space - All windows, including the desktop window (\xd2Window\xd3 does not include the desktop window) """ want = 'dwnd' content_spaces = content_space -window._propdict = { +window._superclassnames = [] +window._privpropdict = { 'position' : position, 'bounds' : bounds, 'titled' : titled, @@ -268,9 +269,10 @@ window._propdict = { 'pulled_open' : pulled_open, 'collapsed' : collapsed, } -window._elemdict = { +window._privelemdict = { } -container_window._propdict = { +container_window._superclassnames = ['window'] +container_window._privpropdict = { '_3c_Inheritance_3e_' : _3c_Inheritance_3e_, 'container' : container, 'item' : item, @@ -290,9 +292,10 @@ container_window._propdict = { 'shows_version' : shows_version, 'uses_relative_dates' : uses_relative_dates, } -container_window._elemdict = { +container_window._privelemdict = { } -information_window._propdict = { +information_window._superclassnames = ['window'] +information_window._privpropdict = { '_3c_Inheritance_3e_' : _3c_Inheritance_3e_, 'item' : item, 'current_panel' : current_panel, @@ -311,28 +314,32 @@ information_window._propdict = { 'product_version' : product_version, 'version' : version, } -information_window._elemdict = { +information_window._privelemdict = { } -view_options_window._propdict = { +view_options_window._superclassnames = ['window'] +view_options_window._privpropdict = { '_3c_Inheritance_3e_' : _3c_Inheritance_3e_, 'item' : item, } -view_options_window._elemdict = { +view_options_window._privelemdict = { } -preferences_window._propdict = { +preferences_window._superclassnames = ['window'] +preferences_window._privpropdict = { '_3c_Inheritance_3e_' : _3c_Inheritance_3e_, 'current_panel' : current_panel, } -preferences_window._elemdict = { +preferences_window._privelemdict = { } -clipping_window._propdict = { +clipping_window._superclassnames = ['window'] +clipping_window._privpropdict = { '_3c_Inheritance_3e_' : _3c_Inheritance_3e_, } -clipping_window._elemdict = { +clipping_window._privelemdict = { } -content_space._propdict = { +content_space._superclassnames = [] +content_space._privpropdict = { } -content_space._elemdict = { +content_space._privelemdict = { } # diff --git a/Mac/Lib/lib-scriptpackages/Finder/__init__.py b/Mac/Lib/lib-scriptpackages/Finder/__init__.py index ede499b..8ea742f 100644 --- a/Mac/Lib/lib-scriptpackages/Finder/__init__.py +++ b/Mac/Lib/lib-scriptpackages/Finder/__init__.py @@ -1,5 +1,5 @@ """ -Package generated from Moes:Systeemmap:Finder +Package generated from /Volumes/Sap/System Folder/Finder Resource aete resid 0 """ import aetools @@ -58,6 +58,389 @@ from Process_classes import * from Type_Definitions import * from Enumerations import * from Obsolete_terms import * +def getbaseclasses(v): + if hasattr(v, '_superclassnames') and not hasattr(v, '_propdict'): + v._propdict = {} + v._elemdict = {} + for superclass in v._superclassnames: + v._propdict.update(getattr(eval(superclass), '_privpropdict', {})) + v._elemdict.update(getattr(eval(superclass), '_privelemdict', {})) + v._propdict.update(v._privpropdict) + v._elemdict.update(v._privelemdict) + +import StdSuites + +# +# Set property and element dictionaries now that all classes have been defined +# +getbaseclasses(accessory_suitcase) +getbaseclasses(preferences) +getbaseclasses(sharable_container) +getbaseclasses(application) +getbaseclasses(trash_2d_object) +getbaseclasses(accessory_process) +getbaseclasses(window) +getbaseclasses(information_window) +getbaseclasses(process) +getbaseclasses(application_file) +getbaseclasses(internet_location) +getbaseclasses(container_window) +getbaseclasses(item) +getbaseclasses(StdSuites.Type_Names_Suite.small_integer) +getbaseclasses(StdSuites.Type_Names_Suite.RGB16_color) +getbaseclasses(StdSuites.Type_Names_Suite.system_dictionary) +getbaseclasses(StdSuites.Type_Names_Suite.color_table) +getbaseclasses(StdSuites.Type_Names_Suite.fixed_point) +getbaseclasses(StdSuites.Type_Names_Suite.plain_text) +getbaseclasses(StdSuites.Type_Names_Suite.type_element_info) +getbaseclasses(StdSuites.Type_Names_Suite.location_reference) +getbaseclasses(StdSuites.Type_Names_Suite.version) +getbaseclasses(StdSuites.Type_Names_Suite.PostScript_picture) +getbaseclasses(StdSuites.Type_Names_Suite.machine_location) +getbaseclasses(StdSuites.Type_Names_Suite.menu_item) +getbaseclasses(StdSuites.Type_Names_Suite.pixel_map_record) +getbaseclasses(StdSuites.Type_Names_Suite.application_dictionary) +getbaseclasses(StdSuites.Type_Names_Suite.unsigned_integer) +getbaseclasses(StdSuites.Type_Names_Suite.menu) +getbaseclasses(StdSuites.Type_Names_Suite.fixed_rectangle) +getbaseclasses(StdSuites.Type_Names_Suite.long_fixed_rectangle) +getbaseclasses(StdSuites.Type_Names_Suite.type_event_info) +getbaseclasses(StdSuites.Type_Names_Suite.small_real) +getbaseclasses(StdSuites.Type_Names_Suite.type_suite_info) +getbaseclasses(StdSuites.Type_Names_Suite.rotation) +getbaseclasses(StdSuites.Type_Names_Suite.fixed) +getbaseclasses(StdSuites.Type_Names_Suite.scrap_styles) +getbaseclasses(StdSuites.Type_Names_Suite.long_point) +getbaseclasses(StdSuites.Type_Names_Suite.type_class_info) +getbaseclasses(StdSuites.Type_Names_Suite.TIFF_picture) +getbaseclasses(StdSuites.Type_Names_Suite.RGB96_color) +getbaseclasses(StdSuites.Type_Names_Suite.dash_style) +getbaseclasses(StdSuites.Type_Names_Suite.type_property_info) +getbaseclasses(StdSuites.Type_Names_Suite.type_parameter_info) +getbaseclasses(StdSuites.Type_Names_Suite.long_fixed_point) +getbaseclasses(StdSuites.Type_Names_Suite.long_rectangle) +getbaseclasses(StdSuites.Type_Names_Suite.extended_real) +getbaseclasses(StdSuites.Type_Names_Suite.double_integer) +getbaseclasses(StdSuites.Type_Names_Suite.long_fixed) +getbaseclasses(StdSuites.Type_Names_Suite.null) +getbaseclasses(StdSuites.Type_Names_Suite.target_id) +getbaseclasses(StdSuites.Type_Names_Suite.point) +getbaseclasses(StdSuites.Type_Names_Suite.bounding_rectangle) +getbaseclasses(application) +getbaseclasses(special_folders) +getbaseclasses(item) +getbaseclasses(trash_2d_object) +getbaseclasses(desktop_2d_object) +getbaseclasses(sharable_container) +getbaseclasses(sharing_privileges) +getbaseclasses(disk) +getbaseclasses(folder) +getbaseclasses(container) +getbaseclasses(sound_file) +getbaseclasses(font_file) +getbaseclasses(internet_location_file) +getbaseclasses(clipping) +getbaseclasses(alias_file) +getbaseclasses(desk_accessory_file) +getbaseclasses(desk_accessory_suitcase) +getbaseclasses(font_suitcase) +getbaseclasses(file) +getbaseclasses(application_file) +getbaseclasses(suitcase) +getbaseclasses(document_file) +getbaseclasses(package) +getbaseclasses(preferences_window) +getbaseclasses(view_options_window) +getbaseclasses(window) +getbaseclasses(container_window) +getbaseclasses(content_space) +getbaseclasses(information_window) +getbaseclasses(clipping_window) +getbaseclasses(process) +getbaseclasses(desk_accessory_process) +getbaseclasses(application_process) +getbaseclasses(preferences) +getbaseclasses(alias_list) +getbaseclasses(icon_family) +getbaseclasses(label) +getbaseclasses(StdSuites.Type_Names_Suite.small_integer) +getbaseclasses(StdSuites.Type_Names_Suite.RGB16_color) +getbaseclasses(StdSuites.Type_Names_Suite.system_dictionary) +getbaseclasses(StdSuites.Type_Names_Suite.color_table) +getbaseclasses(StdSuites.Type_Names_Suite.fixed_point) +getbaseclasses(StdSuites.Type_Names_Suite.plain_text) +getbaseclasses(StdSuites.Type_Names_Suite.type_element_info) +getbaseclasses(StdSuites.Type_Names_Suite.location_reference) +getbaseclasses(StdSuites.Type_Names_Suite.version) +getbaseclasses(StdSuites.Type_Names_Suite.PostScript_picture) +getbaseclasses(StdSuites.Type_Names_Suite.machine_location) +getbaseclasses(StdSuites.Type_Names_Suite.menu_item) +getbaseclasses(StdSuites.Type_Names_Suite.pixel_map_record) +getbaseclasses(StdSuites.Type_Names_Suite.application_dictionary) +getbaseclasses(StdSuites.Type_Names_Suite.unsigned_integer) +getbaseclasses(StdSuites.Type_Names_Suite.menu) +getbaseclasses(StdSuites.Type_Names_Suite.fixed_rectangle) +getbaseclasses(StdSuites.Type_Names_Suite.long_fixed_rectangle) +getbaseclasses(StdSuites.Type_Names_Suite.type_event_info) +getbaseclasses(StdSuites.Type_Names_Suite.small_real) +getbaseclasses(StdSuites.Type_Names_Suite.type_suite_info) +getbaseclasses(StdSuites.Type_Names_Suite.rotation) +getbaseclasses(StdSuites.Type_Names_Suite.fixed) +getbaseclasses(StdSuites.Type_Names_Suite.scrap_styles) +getbaseclasses(StdSuites.Type_Names_Suite.long_point) +getbaseclasses(StdSuites.Type_Names_Suite.type_class_info) +getbaseclasses(StdSuites.Type_Names_Suite.TIFF_picture) +getbaseclasses(StdSuites.Type_Names_Suite.RGB96_color) +getbaseclasses(StdSuites.Type_Names_Suite.dash_style) +getbaseclasses(StdSuites.Type_Names_Suite.type_property_info) +getbaseclasses(StdSuites.Type_Names_Suite.type_parameter_info) +getbaseclasses(StdSuites.Type_Names_Suite.long_fixed_point) +getbaseclasses(StdSuites.Type_Names_Suite.long_rectangle) +getbaseclasses(StdSuites.Type_Names_Suite.extended_real) +getbaseclasses(StdSuites.Type_Names_Suite.double_integer) +getbaseclasses(StdSuites.Type_Names_Suite.long_fixed) +getbaseclasses(StdSuites.Type_Names_Suite.null) +getbaseclasses(StdSuites.Type_Names_Suite.target_id) +getbaseclasses(StdSuites.Type_Names_Suite.point) +getbaseclasses(StdSuites.Type_Names_Suite.bounding_rectangle) +getbaseclasses(status_window) +getbaseclasses(application) +getbaseclasses(sharing_window) +getbaseclasses(control_panel) +getbaseclasses(process) +getbaseclasses(item) +getbaseclasses(file) +getbaseclasses(sharable_container) +getbaseclasses(container_window) +getbaseclasses(container) +getbaseclasses(information_window) +getbaseclasses(StdSuites.Type_Names_Suite.small_integer) +getbaseclasses(StdSuites.Type_Names_Suite.RGB16_color) +getbaseclasses(StdSuites.Type_Names_Suite.system_dictionary) +getbaseclasses(StdSuites.Type_Names_Suite.color_table) +getbaseclasses(StdSuites.Type_Names_Suite.fixed_point) +getbaseclasses(StdSuites.Type_Names_Suite.plain_text) +getbaseclasses(StdSuites.Type_Names_Suite.type_element_info) +getbaseclasses(StdSuites.Type_Names_Suite.location_reference) +getbaseclasses(StdSuites.Type_Names_Suite.version) +getbaseclasses(StdSuites.Type_Names_Suite.PostScript_picture) +getbaseclasses(StdSuites.Type_Names_Suite.machine_location) +getbaseclasses(StdSuites.Type_Names_Suite.menu_item) +getbaseclasses(StdSuites.Type_Names_Suite.pixel_map_record) +getbaseclasses(StdSuites.Type_Names_Suite.application_dictionary) +getbaseclasses(StdSuites.Type_Names_Suite.unsigned_integer) +getbaseclasses(StdSuites.Type_Names_Suite.menu) +getbaseclasses(StdSuites.Type_Names_Suite.fixed_rectangle) +getbaseclasses(StdSuites.Type_Names_Suite.long_fixed_rectangle) +getbaseclasses(StdSuites.Type_Names_Suite.type_event_info) +getbaseclasses(StdSuites.Type_Names_Suite.small_real) +getbaseclasses(StdSuites.Type_Names_Suite.type_suite_info) +getbaseclasses(StdSuites.Type_Names_Suite.rotation) +getbaseclasses(StdSuites.Type_Names_Suite.fixed) +getbaseclasses(StdSuites.Type_Names_Suite.scrap_styles) +getbaseclasses(StdSuites.Type_Names_Suite.long_point) +getbaseclasses(StdSuites.Type_Names_Suite.type_class_info) +getbaseclasses(StdSuites.Type_Names_Suite.TIFF_picture) +getbaseclasses(StdSuites.Type_Names_Suite.RGB96_color) +getbaseclasses(StdSuites.Type_Names_Suite.dash_style) +getbaseclasses(StdSuites.Type_Names_Suite.type_property_info) +getbaseclasses(StdSuites.Type_Names_Suite.type_parameter_info) +getbaseclasses(StdSuites.Type_Names_Suite.long_fixed_point) +getbaseclasses(StdSuites.Type_Names_Suite.long_rectangle) +getbaseclasses(StdSuites.Type_Names_Suite.extended_real) +getbaseclasses(StdSuites.Type_Names_Suite.double_integer) +getbaseclasses(StdSuites.Type_Names_Suite.long_fixed) +getbaseclasses(StdSuites.Type_Names_Suite.null) +getbaseclasses(StdSuites.Type_Names_Suite.target_id) +getbaseclasses(StdSuites.Type_Names_Suite.point) +getbaseclasses(StdSuites.Type_Names_Suite.bounding_rectangle) + +# +# Indices of types declared in this module +# +_classdeclarations = { + 'dsut' : accessory_suitcase, + 'cprf' : preferences, + 'sctr' : sharable_container, + 'capp' : application, + 'ctrs' : trash_2d_object, + 'pcda' : accessory_process, + 'cwin' : window, + 'iwnd' : information_window, + 'prcs' : process, + 'appf' : application_file, + 'inlf' : internet_location, + 'cwnd' : container_window, + 'cobj' : item, + 'shor' : StdSuites.Type_Names_Suite.small_integer, + 'tr16' : StdSuites.Type_Names_Suite.RGB16_color, + 'aeut' : StdSuites.Type_Names_Suite.system_dictionary, + 'clrt' : StdSuites.Type_Names_Suite.color_table, + 'fpnt' : StdSuites.Type_Names_Suite.fixed_point, + 'TEXT' : StdSuites.Type_Names_Suite.plain_text, + 'elin' : StdSuites.Type_Names_Suite.type_element_info, + 'insl' : StdSuites.Type_Names_Suite.location_reference, + 'vers' : StdSuites.Type_Names_Suite.version, + 'EPS ' : StdSuites.Type_Names_Suite.PostScript_picture, + 'mLoc' : StdSuites.Type_Names_Suite.machine_location, + 'cmen' : StdSuites.Type_Names_Suite.menu_item, + 'tpmm' : StdSuites.Type_Names_Suite.pixel_map_record, + 'aete' : StdSuites.Type_Names_Suite.application_dictionary, + 'magn' : StdSuites.Type_Names_Suite.unsigned_integer, + 'cmnu' : StdSuites.Type_Names_Suite.menu, + 'frct' : StdSuites.Type_Names_Suite.fixed_rectangle, + 'lfrc' : StdSuites.Type_Names_Suite.long_fixed_rectangle, + 'evin' : StdSuites.Type_Names_Suite.type_event_info, + 'sing' : StdSuites.Type_Names_Suite.small_real, + 'suin' : StdSuites.Type_Names_Suite.type_suite_info, + 'trot' : StdSuites.Type_Names_Suite.rotation, + 'fixd' : StdSuites.Type_Names_Suite.fixed, + 'styl' : StdSuites.Type_Names_Suite.scrap_styles, + 'lpnt' : StdSuites.Type_Names_Suite.long_point, + 'gcli' : StdSuites.Type_Names_Suite.type_class_info, + 'TIFF' : StdSuites.Type_Names_Suite.TIFF_picture, + 'tr96' : StdSuites.Type_Names_Suite.RGB96_color, + 'tdas' : StdSuites.Type_Names_Suite.dash_style, + 'pinf' : StdSuites.Type_Names_Suite.type_property_info, + 'pmin' : StdSuites.Type_Names_Suite.type_parameter_info, + 'lfpt' : StdSuites.Type_Names_Suite.long_fixed_point, + 'lrct' : StdSuites.Type_Names_Suite.long_rectangle, + 'exte' : StdSuites.Type_Names_Suite.extended_real, + 'comp' : StdSuites.Type_Names_Suite.double_integer, + 'lfxd' : StdSuites.Type_Names_Suite.long_fixed, + 'null' : StdSuites.Type_Names_Suite.null, + 'targ' : StdSuites.Type_Names_Suite.target_id, + 'QDpt' : StdSuites.Type_Names_Suite.point, + 'qdrt' : StdSuites.Type_Names_Suite.bounding_rectangle, + 'capp' : application, + 'spfl' : special_folders, + 'cobj' : item, + 'ctrs' : trash_2d_object, + 'cdsk' : desktop_2d_object, + 'sctr' : sharable_container, + 'priv' : sharing_privileges, + 'cdis' : disk, + 'cfol' : folder, + 'ctnr' : container, + 'sndf' : sound_file, + 'fntf' : font_file, + 'inlf' : internet_location_file, + 'clpf' : clipping, + 'alia' : alias_file, + 'dafi' : desk_accessory_file, + 'dsut' : desk_accessory_suitcase, + 'fsut' : font_suitcase, + 'file' : file, + 'appf' : application_file, + 'stcs' : suitcase, + 'docf' : document_file, + 'pack' : package, + 'pwnd' : preferences_window, + 'vwnd' : view_options_window, + 'cwin' : window, + 'cwnd' : container_window, + 'dwnd' : content_space, + 'iwnd' : information_window, + 'lwnd' : clipping_window, + 'prcs' : process, + 'pcda' : desk_accessory_process, + 'pcap' : application_process, + 'cprf' : preferences, + 'alst' : alias_list, + 'ifam' : icon_family, + 'clbl' : label, + 'shor' : StdSuites.Type_Names_Suite.small_integer, + 'tr16' : StdSuites.Type_Names_Suite.RGB16_color, + 'aeut' : StdSuites.Type_Names_Suite.system_dictionary, + 'clrt' : StdSuites.Type_Names_Suite.color_table, + 'fpnt' : StdSuites.Type_Names_Suite.fixed_point, + 'TEXT' : StdSuites.Type_Names_Suite.plain_text, + 'elin' : StdSuites.Type_Names_Suite.type_element_info, + 'insl' : StdSuites.Type_Names_Suite.location_reference, + 'vers' : StdSuites.Type_Names_Suite.version, + 'EPS ' : StdSuites.Type_Names_Suite.PostScript_picture, + 'mLoc' : StdSuites.Type_Names_Suite.machine_location, + 'cmen' : StdSuites.Type_Names_Suite.menu_item, + 'tpmm' : StdSuites.Type_Names_Suite.pixel_map_record, + 'aete' : StdSuites.Type_Names_Suite.application_dictionary, + 'magn' : StdSuites.Type_Names_Suite.unsigned_integer, + 'cmnu' : StdSuites.Type_Names_Suite.menu, + 'frct' : StdSuites.Type_Names_Suite.fixed_rectangle, + 'lfrc' : StdSuites.Type_Names_Suite.long_fixed_rectangle, + 'evin' : StdSuites.Type_Names_Suite.type_event_info, + 'sing' : StdSuites.Type_Names_Suite.small_real, + 'suin' : StdSuites.Type_Names_Suite.type_suite_info, + 'trot' : StdSuites.Type_Names_Suite.rotation, + 'fixd' : StdSuites.Type_Names_Suite.fixed, + 'styl' : StdSuites.Type_Names_Suite.scrap_styles, + 'lpnt' : StdSuites.Type_Names_Suite.long_point, + 'gcli' : StdSuites.Type_Names_Suite.type_class_info, + 'TIFF' : StdSuites.Type_Names_Suite.TIFF_picture, + 'tr96' : StdSuites.Type_Names_Suite.RGB96_color, + 'tdas' : StdSuites.Type_Names_Suite.dash_style, + 'pinf' : StdSuites.Type_Names_Suite.type_property_info, + 'pmin' : StdSuites.Type_Names_Suite.type_parameter_info, + 'lfpt' : StdSuites.Type_Names_Suite.long_fixed_point, + 'lrct' : StdSuites.Type_Names_Suite.long_rectangle, + 'exte' : StdSuites.Type_Names_Suite.extended_real, + 'comp' : StdSuites.Type_Names_Suite.double_integer, + 'lfxd' : StdSuites.Type_Names_Suite.long_fixed, + 'null' : StdSuites.Type_Names_Suite.null, + 'targ' : StdSuites.Type_Names_Suite.target_id, + 'QDpt' : StdSuites.Type_Names_Suite.point, + 'qdrt' : StdSuites.Type_Names_Suite.bounding_rectangle, + 'qwnd' : status_window, + 'capp' : application, + 'swnd' : sharing_window, + 'ccdv' : control_panel, + 'prcs' : process, + 'cobj' : item, + 'file' : file, + 'sctr' : sharable_container, + 'cwnd' : container_window, + 'ctnr' : container, + 'iwnd' : information_window, + 'shor' : StdSuites.Type_Names_Suite.small_integer, + 'tr16' : StdSuites.Type_Names_Suite.RGB16_color, + 'aeut' : StdSuites.Type_Names_Suite.system_dictionary, + 'clrt' : StdSuites.Type_Names_Suite.color_table, + 'fpnt' : StdSuites.Type_Names_Suite.fixed_point, + 'TEXT' : StdSuites.Type_Names_Suite.plain_text, + 'elin' : StdSuites.Type_Names_Suite.type_element_info, + 'insl' : StdSuites.Type_Names_Suite.location_reference, + 'vers' : StdSuites.Type_Names_Suite.version, + 'EPS ' : StdSuites.Type_Names_Suite.PostScript_picture, + 'mLoc' : StdSuites.Type_Names_Suite.machine_location, + 'cmen' : StdSuites.Type_Names_Suite.menu_item, + 'tpmm' : StdSuites.Type_Names_Suite.pixel_map_record, + 'aete' : StdSuites.Type_Names_Suite.application_dictionary, + 'magn' : StdSuites.Type_Names_Suite.unsigned_integer, + 'cmnu' : StdSuites.Type_Names_Suite.menu, + 'frct' : StdSuites.Type_Names_Suite.fixed_rectangle, + 'lfrc' : StdSuites.Type_Names_Suite.long_fixed_rectangle, + 'evin' : StdSuites.Type_Names_Suite.type_event_info, + 'sing' : StdSuites.Type_Names_Suite.small_real, + 'suin' : StdSuites.Type_Names_Suite.type_suite_info, + 'trot' : StdSuites.Type_Names_Suite.rotation, + 'fixd' : StdSuites.Type_Names_Suite.fixed, + 'styl' : StdSuites.Type_Names_Suite.scrap_styles, + 'lpnt' : StdSuites.Type_Names_Suite.long_point, + 'gcli' : StdSuites.Type_Names_Suite.type_class_info, + 'TIFF' : StdSuites.Type_Names_Suite.TIFF_picture, + 'tr96' : StdSuites.Type_Names_Suite.RGB96_color, + 'tdas' : StdSuites.Type_Names_Suite.dash_style, + 'pinf' : StdSuites.Type_Names_Suite.type_property_info, + 'pmin' : StdSuites.Type_Names_Suite.type_parameter_info, + 'lfpt' : StdSuites.Type_Names_Suite.long_fixed_point, + 'lrct' : StdSuites.Type_Names_Suite.long_rectangle, + 'exte' : StdSuites.Type_Names_Suite.extended_real, + 'comp' : StdSuites.Type_Names_Suite.double_integer, + 'lfxd' : StdSuites.Type_Names_Suite.long_fixed, + 'null' : StdSuites.Type_Names_Suite.null, + 'targ' : StdSuites.Type_Names_Suite.target_id, + 'QDpt' : StdSuites.Type_Names_Suite.point, + 'qdrt' : StdSuites.Type_Names_Suite.bounding_rectangle, +} class Finder(Standard_Suite_Events, @@ -74,3 +457,5 @@ class Finder(Standard_Suite_Events, aetools.TalkTo): _signature = 'MACS' + _moduleName = 'Finder' + |