diff options
| author | Simon <simon@hardwired.org.uk> | 2011-03-22 17:58:52 (GMT) |
|---|---|---|
| committer | Simon <simon@hardwired.org.uk> | 2011-03-22 17:58:52 (GMT) |
| commit | 2e401babb793238564ca640fc802a52ab7f6c293 (patch) | |
| tree | 87a9b471e82604e76f96d556f5771322fb31818a /src/python/stdlib/plat-mac/lib-scriptpackages/SystemEvents/Login_Items_Suite.py | |
| parent | c096b2b14a200a0cc0a08cfea839c9e7f4edf22e (diff) | |
| parent | 04a9cbcb8855e64db660a8c6e23d79114b4afd83 (diff) | |
| download | powder-2e401babb793238564ca640fc802a52ab7f6c293.zip powder-2e401babb793238564ca640fc802a52ab7f6c293.tar.gz | |
Python console
Diffstat (limited to 'src/python/stdlib/plat-mac/lib-scriptpackages/SystemEvents/Login_Items_Suite.py')
| -rw-r--r-- | src/python/stdlib/plat-mac/lib-scriptpackages/SystemEvents/Login_Items_Suite.py | 74 |
1 files changed, 74 insertions, 0 deletions
diff --git a/src/python/stdlib/plat-mac/lib-scriptpackages/SystemEvents/Login_Items_Suite.py b/src/python/stdlib/plat-mac/lib-scriptpackages/SystemEvents/Login_Items_Suite.py new file mode 100644 index 0000000..ed09245 --- /dev/null +++ b/src/python/stdlib/plat-mac/lib-scriptpackages/SystemEvents/Login_Items_Suite.py @@ -0,0 +1,74 @@ +"""Suite Login Items Suite: Terms and Events for controlling the Login Items application +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 = 'logi' + +class Login_Items_Suite_Events: + + pass + + +class login_item(aetools.ComponentItem): + """login item - an item to be launched or opened at login """ + want = 'logi' +class _Prop__3c_Inheritance_3e_(aetools.NProperty): + """<Inheritance> - All of the properties of the superclass. """ + which = 'c@#^' + want = 'cobj' +class _Prop_hidden(aetools.NProperty): + """hidden - Is the Login Item hidden when launched? """ + which = 'hidn' + want = 'bool' +class _Prop_kind(aetools.NProperty): + """kind - the file type of the Login Item """ + which = 'kind' + want = 'utxt' +class _Prop_name(aetools.NProperty): + """name - the name of the Login Item """ + which = 'pnam' + want = 'utxt' +class _Prop_path(aetools.NProperty): + """path - the file system path to the Login Item """ + which = 'ppth' + want = 'utxt' + +login_items = login_item +import Standard_Suite +login_item._superclassnames = ['item'] +login_item._privpropdict = { + '_3c_Inheritance_3e_' : _Prop__3c_Inheritance_3e_, + 'hidden' : _Prop_hidden, + 'kind' : _Prop_kind, + 'name' : _Prop_name, + 'path' : _Prop_path, +} +login_item._privelemdict = { +} + +# +# Indices of types declared in this module +# +_classdeclarations = { + 'logi' : login_item, +} + +_propdeclarations = { + 'c@#^' : _Prop__3c_Inheritance_3e_, + 'hidn' : _Prop_hidden, + 'kind' : _Prop_kind, + 'pnam' : _Prop_name, + 'ppth' : _Prop_path, +} + +_compdeclarations = { +} + +_enumdeclarations = { +} |
