summaryrefslogtreecommitdiff
path: root/Lib/plat-mac/lib-scriptpackages/Finder/Files.py
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>2003-04-01 22:05:14 +0000
committerJack Jansen <jack.jansen@cwi.nl>2003-04-01 22:05:14 +0000
commit842273bcd7ad6814a0ce7c1b097cea98615900c4 (patch)
treee9a3f679dbc382d2fe0bf8cd2b3d5a1929dda961 /Lib/plat-mac/lib-scriptpackages/Finder/Files.py
parentbc956056d401f0137e687f878a487fa2a16199df (diff)
downloadcpython-git-842273bcd7ad6814a0ce7c1b097cea98615900c4.tar.gz
Regenerated with property names with _Prop_ prepended.
Diffstat (limited to 'Lib/plat-mac/lib-scriptpackages/Finder/Files.py')
-rw-r--r--Lib/plat-mac/lib-scriptpackages/Finder/Files.py96
1 files changed, 36 insertions, 60 deletions
diff --git a/Lib/plat-mac/lib-scriptpackages/Finder/Files.py b/Lib/plat-mac/lib-scriptpackages/Finder/Files.py
index b754e6bc31..37cf4585b2 100644
--- a/Lib/plat-mac/lib-scriptpackages/Finder/Files.py
+++ b/Lib/plat-mac/lib-scriptpackages/Finder/Files.py
@@ -18,11 +18,11 @@ class Files_Events:
class alias_file(aetools.ComponentItem):
"""alias file - An alias file (created with \xd2Make Alias\xd3) """
want = 'alia'
-class _3c_Inheritance_3e_(aetools.NProperty):
+class _Prop__3c_Inheritance_3e_(aetools.NProperty):
"""<Inheritance> - inherits some of its properties from the file class """
which = 'c@#^'
want = 'file'
-class original_item(aetools.NProperty):
+class _Prop_original_item(aetools.NProperty):
"""original item - the original item pointed to by the alias """
which = 'orig'
want = 'obj '
@@ -32,27 +32,27 @@ alias_files = alias_file
class application_file(aetools.ComponentItem):
"""application file - An application's file on disk """
want = 'appf'
-class accepts_high_level_events(aetools.NProperty):
+class _Prop_accepts_high_level_events(aetools.NProperty):
"""accepts high level events - Is the application high-level event aware? (OBSOLETE: always returns true) """
which = 'isab'
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 minimum_size(aetools.NProperty):
+class _Prop_minimum_size(aetools.NProperty):
"""minimum size - the smallest memory size with which the application can be launched """
which = 'mprt'
want = 'long'
-class opens_in_Classic(aetools.NProperty):
+class _Prop_opens_in_Classic(aetools.NProperty):
"""opens in Classic - Should the application launch in the Classic environment? """
which = 'Clsc'
want = 'bool'
-class preferred_size(aetools.NProperty):
+class _Prop_preferred_size(aetools.NProperty):
"""preferred size - the memory size with which the application will be launched """
which = 'appt'
want = 'long'
-class suggested_size(aetools.NProperty):
+class _Prop_suggested_size(aetools.NProperty):
"""suggested size - the memory size with which the developer recommends the application be launched """
which = 'sprt'
want = 'long'
@@ -62,7 +62,7 @@ application_files = application_file
class clipping(aetools.ComponentItem):
"""clipping - A clipping """
want = 'clpf'
-class clipping_window(aetools.NProperty):
+class _Prop_clipping_window(aetools.NProperty):
"""clipping window - (NOT AVAILABLE YET) the clipping window for this clipping """
which = 'lwnd'
want = 'obj '
@@ -78,23 +78,23 @@ document_files = document_file
class file(aetools.ComponentItem):
"""file - A file """
want = 'file'
-class creator_type(aetools.NProperty):
+class _Prop_creator_type(aetools.NProperty):
"""creator type - the OSType identifying the application that created the item """
which = 'fcrt'
want = 'type'
-class file_type(aetools.NProperty):
+class _Prop_file_type(aetools.NProperty):
"""file type - the OSType identifying the type of data contained in the item """
which = 'asty'
want = 'type'
-class product_version(aetools.NProperty):
+class _Prop_product_version(aetools.NProperty):
"""product version - the version of the product (visible at the top of the \xd2Get Info\xd3 window) """
which = 'ver2'
want = 'utxt'
-class stationery(aetools.NProperty):
+class _Prop_stationery(aetools.NProperty):
"""stationery - Is the file a stationery pad? """
which = 'pspd'
want = 'bool'
-class version(aetools.NProperty):
+class _Prop_version(aetools.NProperty):
"""version - the version of the file (visible at the bottom of the \xd2Get Info\xd3 window) """
which = 'vers'
want = 'utxt'
@@ -104,7 +104,7 @@ files = file
class internet_location_file(aetools.ComponentItem):
"""internet location file - An file containing an internet location """
want = 'inlf'
-class location(aetools.NProperty):
+class _Prop_location(aetools.NProperty):
"""location - the internet location """
which = 'iloc'
want = 'utxt'
@@ -118,58 +118,58 @@ class package(aetools.ComponentItem):
packages = package
alias_file._superclassnames = ['file']
alias_file._privpropdict = {
- '_3c_Inheritance_3e_' : _3c_Inheritance_3e_,
- 'original_item' : original_item,
+ '_3c_Inheritance_3e_' : _Prop__3c_Inheritance_3e_,
+ 'original_item' : _Prop_original_item,
}
alias_file._privelemdict = {
}
application_file._superclassnames = ['file']
application_file._privpropdict = {
- '_3c_Inheritance_3e_' : _3c_Inheritance_3e_,
- 'accepts_high_level_events' : accepts_high_level_events,
- 'has_scripting_terminology' : has_scripting_terminology,
- 'minimum_size' : minimum_size,
- 'opens_in_Classic' : opens_in_Classic,
- 'preferred_size' : preferred_size,
- 'suggested_size' : suggested_size,
+ '_3c_Inheritance_3e_' : _Prop__3c_Inheritance_3e_,
+ 'accepts_high_level_events' : _Prop_accepts_high_level_events,
+ 'has_scripting_terminology' : _Prop_has_scripting_terminology,
+ 'minimum_size' : _Prop_minimum_size,
+ 'opens_in_Classic' : _Prop_opens_in_Classic,
+ 'preferred_size' : _Prop_preferred_size,
+ 'suggested_size' : _Prop_suggested_size,
}
application_file._privelemdict = {
}
clipping._superclassnames = ['file']
clipping._privpropdict = {
- '_3c_Inheritance_3e_' : _3c_Inheritance_3e_,
- 'clipping_window' : clipping_window,
+ '_3c_Inheritance_3e_' : _Prop__3c_Inheritance_3e_,
+ 'clipping_window' : _Prop_clipping_window,
}
clipping._privelemdict = {
}
document_file._superclassnames = ['file']
document_file._privpropdict = {
- '_3c_Inheritance_3e_' : _3c_Inheritance_3e_,
+ '_3c_Inheritance_3e_' : _Prop__3c_Inheritance_3e_,
}
document_file._privelemdict = {
}
import Finder_items
file._superclassnames = ['item']
file._privpropdict = {
- '_3c_Inheritance_3e_' : _3c_Inheritance_3e_,
- 'creator_type' : creator_type,
- 'file_type' : file_type,
- 'product_version' : product_version,
- 'stationery' : stationery,
- 'version' : version,
+ '_3c_Inheritance_3e_' : _Prop__3c_Inheritance_3e_,
+ 'creator_type' : _Prop_creator_type,
+ 'file_type' : _Prop_file_type,
+ 'product_version' : _Prop_product_version,
+ 'stationery' : _Prop_stationery,
+ 'version' : _Prop_version,
}
file._privelemdict = {
}
internet_location_file._superclassnames = ['file']
internet_location_file._privpropdict = {
- '_3c_Inheritance_3e_' : _3c_Inheritance_3e_,
- 'location' : location,
+ '_3c_Inheritance_3e_' : _Prop__3c_Inheritance_3e_,
+ 'location' : _Prop_location,
}
internet_location_file._privelemdict = {
}
package._superclassnames = ['item']
package._privpropdict = {
- '_3c_Inheritance_3e_' : _3c_Inheritance_3e_,
+ '_3c_Inheritance_3e_' : _Prop__3c_Inheritance_3e_,
}
package._privelemdict = {
}
@@ -186,27 +186,3 @@ _classdeclarations = {
'inlf' : internet_location_file,
'pack' : package,
}
-
-_propdeclarations = {
- 'Clsc' : opens_in_Classic,
- 'appt' : preferred_size,
- 'asty' : file_type,
- 'c@#^' : _3c_Inheritance_3e_,
- 'fcrt' : creator_type,
- 'hscr' : has_scripting_terminology,
- 'iloc' : location,
- 'isab' : accepts_high_level_events,
- 'lwnd' : clipping_window,
- 'mprt' : minimum_size,
- 'orig' : original_item,
- 'pspd' : stationery,
- 'sprt' : suggested_size,
- 'ver2' : product_version,
- 'vers' : version,
-}
-
-_compdeclarations = {
-}
-
-_enumdeclarations = {
-}