diff options
| author | Jack Jansen <jack.jansen@cwi.nl> | 2002-12-30 22:04:23 (GMT) | 
|---|---|---|
| committer | Jack Jansen <jack.jansen@cwi.nl> | 2002-12-30 22:04:23 (GMT) | 
| commit | 60087fb45092d9c199cea162e58d9193c7c1558c (patch) | |
| tree | 05f3343e7707c4a4179e409506b39601279f04c1 /Lib/plat-mac/lib-scriptpackages/Finder/Process_classes.py | |
| parent | c262a1f51ce89dbea4aeb072cf631686c47ed97f (diff) | |
| download | cpython-60087fb45092d9c199cea162e58d9193c7c1558c.zip cpython-60087fb45092d9c199cea162e58d9193c7c1558c.tar.gz cpython-60087fb45092d9c199cea162e58d9193c7c1558c.tar.bz2  | |
Moved most of Mac/Lib hierarchy to Lib/plat-mac: it can be used both
in MacPython-OS9 and MacPython-OSX (or the equivalent unix Python on
Mac OS X). The only items remaining in Mac/Lib are modules that are
meaningful only for MacPython-OS9 (CFM stuff, MacPython preferences
in resources, etc).
Diffstat (limited to 'Lib/plat-mac/lib-scriptpackages/Finder/Process_classes.py')
| -rw-r--r-- | Lib/plat-mac/lib-scriptpackages/Finder/Process_classes.py | 152 | 
1 files changed, 152 insertions, 0 deletions
diff --git a/Lib/plat-mac/lib-scriptpackages/Finder/Process_classes.py b/Lib/plat-mac/lib-scriptpackages/Finder/Process_classes.py new file mode 100644 index 0000000..a54741c --- /dev/null +++ b/Lib/plat-mac/lib-scriptpackages/Finder/Process_classes.py @@ -0,0 +1,152 @@ +"""Suite Process classes: Classes representing processes that are running +Level 1, version 1 + +Generated from /Volumes/Sap/System Folder/Finder +AETE/AEUT resource version 0/144, language 0, script 0 +""" + +import aetools +import MacOS + +_code = 'fndr' + +class Process_classes_Events: + +	pass + + +class process(aetools.ComponentItem): +	"""process - A process running on this computer """ +	want = 'prcs' +class name(aetools.NProperty): +	"""name - the name of the process """ +	which = 'pnam' +	want = 'itxt' +class visible(aetools.NProperty): +	"""visible - Is the process' layer visible? """ +	which = 'pvis' +	want = 'bool' +class frontmost(aetools.NProperty): +	"""frontmost - Is the process the frontmost process? """ +	which = 'pisf' +	want = 'bool' +class file(aetools.NProperty): +	"""file - the file from which the process was launched """ +	which = 'file' +	want = 'obj ' +class file_type(aetools.NProperty): +	"""file type - the OSType of the file type of the process """ +	which = 'asty' +	want = 'type' +class creator_type(aetools.NProperty): +	"""creator type - the OSType of the creator of the process (the signature) """ +	which = 'fcrt' +	want = 'type' +class 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): +	"""accepts remote events - Does the process accept remote events? """ +	which = 'revt' +	want = 'bool' +class 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 total_partition_size(aetools.NProperty): +	"""total partition size - the size of the partition with which the process was launched """ +	which = 'appt' +	want = 'long' +class partition_space_used(aetools.NProperty): +	"""partition space used - the number of bytes currently used in the process' partition """ +	which = 'pusd' +	want = 'long' + +processes = process + +class application_process(aetools.ComponentItem): +	"""application process - A process launched from an application file """ +	want = 'pcap' +class _3c_Inheritance_3e_(aetools.NProperty): +	"""<Inheritance> - inherits some of its properties from the process class """ +	which = 'c@#^' +	want = 'prcs' +class application_file(aetools.NProperty): +	"""application file - the application file from which this process was launched """ +	which = 'appf' +	want = 'appf' + +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): +	"""desk accessory file - the desk accessory file from which this process was launched """ +	which = 'dafi' +	want = 'obj ' + +desk_accessory_processes = desk_accessory_process +process._superclassnames = [] +process._privpropdict = { +	'name' : name, +	'visible' : visible, +	'frontmost' : frontmost, +	'file' : file, +	'file_type' : file_type, +	'creator_type' : creator_type, +	'accepts_high_level_events' : accepts_high_level_events, +	'accepts_remote_events' : accepts_remote_events, +	'has_scripting_terminology' : has_scripting_terminology, +	'total_partition_size' : total_partition_size, +	'partition_space_used' : partition_space_used, +} +process._privelemdict = { +} +application_process._superclassnames = ['process'] +application_process._privpropdict = { +	'_3c_Inheritance_3e_' : _3c_Inheritance_3e_, +	'application_file' : 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, +} +desk_accessory_process._privelemdict = { +} + +# +# Indices of types declared in this module +# +_classdeclarations = { +	'prcs' : process, +	'pcda' : desk_accessory_process, +	'pcap' : application_process, +} + +_propdeclarations = { +	'pvis' : visible, +	'pisf' : frontmost, +	'appt' : total_partition_size, +	'isab' : accepts_high_level_events, +	'dafi' : desk_accessory_file, +	'hscr' : has_scripting_terminology, +	'asty' : file_type, +	'c@#^' : _3c_Inheritance_3e_, +	'fcrt' : creator_type, +	'pusd' : partition_space_used, +	'file' : file, +	'pnam' : name, +	'appf' : application_file, +	'revt' : accepts_remote_events, +} + +_compdeclarations = { +} + +_enumdeclarations = { +}  | 
