summaryrefslogtreecommitdiffstats
path: root/Lib/plat-mac/lib-scriptpackages/SystemEvents/Folder_Actions_Suite.py
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>2003-03-30 22:41:53 (GMT)
committerJack Jansen <jack.jansen@cwi.nl>2003-03-30 22:41:53 (GMT)
commit068a1e208f272d01415ecc511fe9e97c92636a90 (patch)
tree02f49289a555659728d8042b781a80e1f5f2e35c /Lib/plat-mac/lib-scriptpackages/SystemEvents/Folder_Actions_Suite.py
parent2dc16f2a1e2589a8644323fab8adce6b8e1047cb (diff)
downloadcpython-068a1e208f272d01415ecc511fe9e97c92636a90.zip
cpython-068a1e208f272d01415ecc511fe9e97c92636a90.tar.gz
cpython-068a1e208f272d01415ecc511fe9e97c92636a90.tar.bz2
Regenerated again, now clases are sorted by code, and with synonyms after
the primary name.
Diffstat (limited to 'Lib/plat-mac/lib-scriptpackages/SystemEvents/Folder_Actions_Suite.py')
-rw-r--r--Lib/plat-mac/lib-scriptpackages/SystemEvents/Folder_Actions_Suite.py245
1 files changed, 245 insertions, 0 deletions
diff --git a/Lib/plat-mac/lib-scriptpackages/SystemEvents/Folder_Actions_Suite.py b/Lib/plat-mac/lib-scriptpackages/SystemEvents/Folder_Actions_Suite.py
new file mode 100644
index 0000000..666dd81
--- /dev/null
+++ b/Lib/plat-mac/lib-scriptpackages/SystemEvents/Folder_Actions_Suite.py
@@ -0,0 +1,245 @@
+"""Suite Folder Actions Suite: Terms and Events for controlling Folder Actions
+Level 1, version 1
+
+Generated from /System/Library/CoreServices/System Events.app
+AETE/AEUT resource version 1/0, language 0, script 0
+"""
+
+import aetools
+import MacOS
+
+_code = 'faco'
+
+class Folder_Actions_Suite_Events:
+
+ _argmap_attach_action_to = {
+ 'using' : 'faal',
+ }
+
+ def attach_action_to(self, _object, _attributes={}, **_arguments):
+ """attach action to: Attach an action to a folder
+ Required argument: the object for the command
+ Keyword argument using: a file containing the script to attach
+ Keyword argument _attributes: AppleEvent attribute dictionary
+ Returns: the reply for the command
+ """
+ _code = 'faco'
+ _subcode = 'atfa'
+
+ aetools.keysubst(_arguments, self._argmap_attach_action_to)
+ _arguments['----'] = _object
+
+
+ _reply, _arguments, _attributes = self.send(_code, _subcode,
+ _arguments, _attributes)
+ if _arguments.get('errn', 0):
+ raise aetools.Error, aetools.decodeerror(_arguments)
+ # XXXX Optionally decode result
+ if _arguments.has_key('----'):
+ return _arguments['----']
+
+ def attached_scripts(self, _object, _attributes={}, **_arguments):
+ """attached scripts: List the actions attached to a folder
+ Required argument: the object for the command
+ Keyword argument _attributes: AppleEvent attribute dictionary
+ Returns: the reply for the command
+ """
+ _code = 'faco'
+ _subcode = 'lact'
+
+ if _arguments: raise TypeError, 'No optional args expected'
+ _arguments['----'] = _object
+
+
+ _reply, _arguments, _attributes = self.send(_code, _subcode,
+ _arguments, _attributes)
+ if _arguments.get('errn', 0):
+ raise aetools.Error, aetools.decodeerror(_arguments)
+ # XXXX Optionally decode result
+ if _arguments.has_key('----'):
+ return _arguments['----']
+
+ _argmap_do_folder_action = {
+ 'with_window_size' : 'fnsz',
+ 'with_item_list' : 'flst',
+ 'folder_action_code' : 'actn',
+ }
+
+ def do_folder_action(self, _object, _attributes={}, **_arguments):
+ """do folder action: Event the Finder sends to the Folder Actions FBA
+ Required argument: the object for the command
+ Keyword argument with_window_size: the new window size for the folder action message to process
+ Keyword argument with_item_list: a list of items for the folder action message to process
+ Keyword argument folder_action_code: the folder action message to process
+ Keyword argument _attributes: AppleEvent attribute dictionary
+ Returns: the reply for the command
+ """
+ _code = 'faco'
+ _subcode = 'fola'
+
+ aetools.keysubst(_arguments, self._argmap_do_folder_action)
+ _arguments['----'] = _object
+
+ aetools.enumsubst(_arguments, 'actn', _Enum_actn)
+
+ _reply, _arguments, _attributes = self.send(_code, _subcode,
+ _arguments, _attributes)
+ if _arguments.get('errn', 0):
+ raise aetools.Error, aetools.decodeerror(_arguments)
+ # XXXX Optionally decode result
+ if _arguments.has_key('----'):
+ return _arguments['----']
+
+ _argmap_edit_action_of = {
+ 'using_action_name' : 'snam',
+ 'using_action_number' : 'indx',
+ }
+
+ def edit_action_of(self, _object, _attributes={}, **_arguments):
+ """edit action of: Edit as action of a folder
+ Required argument: the object for the command
+ Keyword argument using_action_name: ...or the name of the action to edit
+ Keyword argument using_action_number: the index number of the action to edit...
+ Keyword argument _attributes: AppleEvent attribute dictionary
+ Returns: the reply for the command
+ """
+ _code = 'faco'
+ _subcode = 'edfa'
+
+ aetools.keysubst(_arguments, self._argmap_edit_action_of)
+ _arguments['----'] = _object
+
+
+ _reply, _arguments, _attributes = self.send(_code, _subcode,
+ _arguments, _attributes)
+ if _arguments.get('errn', 0):
+ raise aetools.Error, aetools.decodeerror(_arguments)
+ # XXXX Optionally decode result
+ if _arguments.has_key('----'):
+ return _arguments['----']
+
+ _argmap_remove_action_from = {
+ 'using_action_name' : 'snam',
+ 'using_action_number' : 'indx',
+ }
+
+ def remove_action_from(self, _object, _attributes={}, **_arguments):
+ """remove action from: Remove a folder action from a folder
+ Required argument: the object for the command
+ Keyword argument using_action_name: ...or the name of the action to remove
+ Keyword argument using_action_number: the index number of the action to remove...
+ Keyword argument _attributes: AppleEvent attribute dictionary
+ Returns: the reply for the command
+ """
+ _code = 'faco'
+ _subcode = 'rmfa'
+
+ aetools.keysubst(_arguments, self._argmap_remove_action_from)
+ _arguments['----'] = _object
+
+
+ _reply, _arguments, _attributes = self.send(_code, _subcode,
+ _arguments, _attributes)
+ if _arguments.get('errn', 0):
+ raise aetools.Error, aetools.decodeerror(_arguments)
+ # XXXX Optionally decode result
+ if _arguments.has_key('----'):
+ return _arguments['----']
+
+
+class folder_action(aetools.ComponentItem):
+ """folder action - An action attached to a folder in the file system """
+ want = 'foac'
+class _3c_Inheritance_3e_(aetools.NProperty):
+ """<Inheritance> - All of the properties of the superclass. """
+ which = 'c@#^'
+ want = 'cobj'
+class enabled(aetools.NProperty):
+ """enabled - Is the folder action enabled? """
+ which = 'enaB'
+ want = 'bool'
+class name(aetools.NProperty):
+ """name - the name of the folder action, which is also the name of the folder """
+ which = 'pnam'
+ want = 'utxt'
+class path(aetools.NProperty):
+ """path - the path to the folder to which the folder action applies """
+ which = 'ppth'
+ want = '****'
+class properties(aetools.NProperty):
+ """properties - every property of the folder action """
+ which = 'pALL'
+ want = '****'
+class volume(aetools.NProperty):
+ """volume - the volume on which the folder action resides """
+ which = 'volu'
+ want = 'utxt'
+# element 'scpt' as ['name', 'indx', 'rele', 'rang', 'test']
+
+folder_actions = folder_action
+
+class script(aetools.ComponentItem):
+ """script - A script invoked by a folder action """
+ want = 'scpt'
+class POSIX_path(aetools.NProperty):
+ """POSIX path - the POSIX file system path of the disk """
+ which = 'posx'
+ want = 'utxt'
+
+scripts = script
+import Standard_Suite
+folder_action._superclassnames = ['item']
+folder_action._privpropdict = {
+ '_3c_Inheritance_3e_' : _3c_Inheritance_3e_,
+ 'enabled' : enabled,
+ 'name' : name,
+ 'path' : path,
+ 'properties' : properties,
+ 'volume' : volume,
+}
+folder_action._privelemdict = {
+ 'script' : script,
+}
+script._superclassnames = ['item']
+script._privpropdict = {
+ 'POSIX_path' : POSIX_path,
+ '_3c_Inheritance_3e_' : _3c_Inheritance_3e_,
+ 'name' : name,
+ 'path' : path,
+ 'properties' : properties,
+}
+script._privelemdict = {
+}
+_Enum_actn = {
+ 'items_added' : 'fget', # items added
+ 'items_removed' : 'flos', # items removed
+ 'window_closed' : 'fclo', # window closed
+ 'window_moved' : 'fsiz', # window moved
+ 'window_opened' : 'fopn', # window opened
+}
+
+
+#
+# Indices of types declared in this module
+#
+_classdeclarations = {
+ 'foac' : folder_action,
+ 'scpt' : script,
+}
+
+_propdeclarations = {
+ 'c@#^' : _3c_Inheritance_3e_,
+ 'enaB' : enabled,
+ 'pALL' : properties,
+ 'pnam' : name,
+ 'posx' : POSIX_path,
+ 'ppth' : path,
+ 'volu' : volume,
+}
+
+_compdeclarations = {
+}
+
+_enumdeclarations = {
+ 'actn' : _Enum_actn,
+}