diff options
Diffstat (limited to 'Lib/plat-mac/lib-scriptpackages/Finder/Legacy_suite.py')
-rw-r--r-- | Lib/plat-mac/lib-scriptpackages/Finder/Legacy_suite.py | 86 |
1 files changed, 31 insertions, 55 deletions
diff --git a/Lib/plat-mac/lib-scriptpackages/Finder/Legacy_suite.py b/Lib/plat-mac/lib-scriptpackages/Finder/Legacy_suite.py index cfbb650311..9418039ccb 100644 --- a/Lib/plat-mac/lib-scriptpackages/Finder/Legacy_suite.py +++ b/Lib/plat-mac/lib-scriptpackages/Finder/Legacy_suite.py @@ -73,7 +73,7 @@ class Legacy_suite_Events: class application(aetools.ComponentItem): """application - The Finder """ want = 'capp' -class desktop_picture(aetools.NProperty): +class _Prop_desktop_picture(aetools.NProperty): """desktop picture - the desktop picture of the main monitor """ which = 'dpic' want = 'file' @@ -81,11 +81,11 @@ class desktop_picture(aetools.NProperty): class application_process(aetools.ComponentItem): """application process - A process launched from an application file """ want = 'pcap' -class _3c_Inheritance_3e_(aetools.NProperty): +class _Prop__3c_Inheritance_3e_(aetools.NProperty): """<Inheritance> - inherits some of its properties from the process class """ which = 'c@#^' want = 'prcs' -class application_file(aetools.NProperty): +class _Prop_application_file(aetools.NProperty): """application file - the application file from which this process was launched """ which = 'appf' want = 'appf' @@ -95,7 +95,7 @@ application_processes = application_process class desk_accessory_process(aetools.ComponentItem): """desk accessory process - A process launched from a desk accessory file """ want = 'pcda' -class desk_accessory_file(aetools.NProperty): +class _Prop_desk_accessory_file(aetools.NProperty): """desk accessory file - the desk accessory file from which this process was launched """ which = 'dafi' want = 'obj ' @@ -105,47 +105,47 @@ desk_accessory_processes = desk_accessory_process class process(aetools.ComponentItem): """process - A process running on this computer """ want = 'prcs' -class accepts_high_level_events(aetools.NProperty): +class _Prop_accepts_high_level_events(aetools.NProperty): """accepts high level events - Is the process high-level event aware (accepts open application, open document, print document, and quit)? """ which = 'isab' want = 'bool' -class accepts_remote_events(aetools.NProperty): +class _Prop_accepts_remote_events(aetools.NProperty): """accepts remote events - Does the process accept remote events? """ which = 'revt' want = 'bool' -class creator_type(aetools.NProperty): +class _Prop_creator_type(aetools.NProperty): """creator type - the OSType of the creator of the process (the signature) """ which = 'fcrt' want = 'type' -class file(aetools.NProperty): +class _Prop_file(aetools.NProperty): """file - the file from which the process was launched """ which = 'file' want = 'obj ' -class file_type(aetools.NProperty): +class _Prop_file_type(aetools.NProperty): """file type - the OSType of the file type of the process """ which = 'asty' want = 'type' -class frontmost(aetools.NProperty): +class _Prop_frontmost(aetools.NProperty): """frontmost - Is the process the frontmost process? """ which = 'pisf' want = 'bool' -class has_scripting_terminology(aetools.NProperty): +class _Prop_has_scripting_terminology(aetools.NProperty): """has scripting terminology - Does the process have a scripting terminology, i.e., can it be scripted? """ which = 'hscr' want = 'bool' -class name(aetools.NProperty): +class _Prop_name(aetools.NProperty): """name - the name of the process """ which = 'pnam' want = 'itxt' -class partition_space_used(aetools.NProperty): +class _Prop_partition_space_used(aetools.NProperty): """partition space used - the number of bytes currently used in the process' partition """ which = 'pusd' want = 'long' -class total_partition_size(aetools.NProperty): +class _Prop_total_partition_size(aetools.NProperty): """total partition size - the size of the partition with which the process was launched """ which = 'appt' want = 'long' -class visible(aetools.NProperty): +class _Prop_visible(aetools.NProperty): """visible - Is the process' layer visible? """ which = 'pvis' want = 'bool' @@ -153,37 +153,37 @@ class visible(aetools.NProperty): processes = process application._superclassnames = [] application._privpropdict = { - 'desktop_picture' : desktop_picture, + 'desktop_picture' : _Prop_desktop_picture, } application._privelemdict = { } application_process._superclassnames = ['process'] application_process._privpropdict = { - '_3c_Inheritance_3e_' : _3c_Inheritance_3e_, - 'application_file' : application_file, + '_3c_Inheritance_3e_' : _Prop__3c_Inheritance_3e_, + 'application_file' : _Prop_application_file, } application_process._privelemdict = { } desk_accessory_process._superclassnames = ['process'] desk_accessory_process._privpropdict = { - '_3c_Inheritance_3e_' : _3c_Inheritance_3e_, - 'desk_accessory_file' : desk_accessory_file, + '_3c_Inheritance_3e_' : _Prop__3c_Inheritance_3e_, + 'desk_accessory_file' : _Prop_desk_accessory_file, } desk_accessory_process._privelemdict = { } process._superclassnames = [] process._privpropdict = { - 'accepts_high_level_events' : accepts_high_level_events, - 'accepts_remote_events' : accepts_remote_events, - 'creator_type' : creator_type, - 'file' : file, - 'file_type' : file_type, - 'frontmost' : frontmost, - 'has_scripting_terminology' : has_scripting_terminology, - 'name' : name, - 'partition_space_used' : partition_space_used, - 'total_partition_size' : total_partition_size, - 'visible' : visible, + 'accepts_high_level_events' : _Prop_accepts_high_level_events, + 'accepts_remote_events' : _Prop_accepts_remote_events, + 'creator_type' : _Prop_creator_type, + 'file' : _Prop_file, + 'file_type' : _Prop_file_type, + 'frontmost' : _Prop_frontmost, + 'has_scripting_terminology' : _Prop_has_scripting_terminology, + 'name' : _Prop_name, + 'partition_space_used' : _Prop_partition_space_used, + 'total_partition_size' : _Prop_total_partition_size, + 'visible' : _Prop_visible, } process._privelemdict = { } @@ -197,27 +197,3 @@ _classdeclarations = { 'pcda' : desk_accessory_process, 'prcs' : process, } - -_propdeclarations = { - 'appf' : application_file, - 'appt' : total_partition_size, - 'asty' : file_type, - 'c@#^' : _3c_Inheritance_3e_, - 'dafi' : desk_accessory_file, - 'dpic' : desktop_picture, - 'fcrt' : creator_type, - 'file' : file, - 'hscr' : has_scripting_terminology, - 'isab' : accepts_high_level_events, - 'pisf' : frontmost, - 'pnam' : name, - 'pusd' : partition_space_used, - 'pvis' : visible, - 'revt' : accepts_remote_events, -} - -_compdeclarations = { -} - -_enumdeclarations = { -} |