| 1 | n/a | """Suite Login Items Suite: Terms and Events for controlling the Login Items application |
|---|
| 2 | n/a | Level 1, version 1 |
|---|
| 3 | n/a | |
|---|
| 4 | n/a | Generated from /System/Library/CoreServices/System Events.app |
|---|
| 5 | n/a | AETE/AEUT resource version 1/0, language 0, script 0 |
|---|
| 6 | n/a | """ |
|---|
| 7 | n/a | |
|---|
| 8 | n/a | import aetools |
|---|
| 9 | n/a | import MacOS |
|---|
| 10 | n/a | |
|---|
| 11 | n/a | _code = 'logi' |
|---|
| 12 | n/a | |
|---|
| 13 | n/a | class Login_Items_Suite_Events: |
|---|
| 14 | n/a | |
|---|
| 15 | n/a | pass |
|---|
| 16 | n/a | |
|---|
| 17 | n/a | |
|---|
| 18 | n/a | class login_item(aetools.ComponentItem): |
|---|
| 19 | n/a | """login item - an item to be launched or opened at login """ |
|---|
| 20 | n/a | want = 'logi' |
|---|
| 21 | n/a | class _Prop__3c_Inheritance_3e_(aetools.NProperty): |
|---|
| 22 | n/a | """<Inheritance> - All of the properties of the superclass. """ |
|---|
| 23 | n/a | which = 'c@#^' |
|---|
| 24 | n/a | want = 'cobj' |
|---|
| 25 | n/a | class _Prop_hidden(aetools.NProperty): |
|---|
| 26 | n/a | """hidden - Is the Login Item hidden when launched? """ |
|---|
| 27 | n/a | which = 'hidn' |
|---|
| 28 | n/a | want = 'bool' |
|---|
| 29 | n/a | class _Prop_kind(aetools.NProperty): |
|---|
| 30 | n/a | """kind - the file type of the Login Item """ |
|---|
| 31 | n/a | which = 'kind' |
|---|
| 32 | n/a | want = 'utxt' |
|---|
| 33 | n/a | class _Prop_name(aetools.NProperty): |
|---|
| 34 | n/a | """name - the name of the Login Item """ |
|---|
| 35 | n/a | which = 'pnam' |
|---|
| 36 | n/a | want = 'utxt' |
|---|
| 37 | n/a | class _Prop_path(aetools.NProperty): |
|---|
| 38 | n/a | """path - the file system path to the Login Item """ |
|---|
| 39 | n/a | which = 'ppth' |
|---|
| 40 | n/a | want = 'utxt' |
|---|
| 41 | n/a | |
|---|
| 42 | n/a | login_items = login_item |
|---|
| 43 | n/a | import Standard_Suite |
|---|
| 44 | n/a | login_item._superclassnames = ['item'] |
|---|
| 45 | n/a | login_item._privpropdict = { |
|---|
| 46 | n/a | '_3c_Inheritance_3e_' : _Prop__3c_Inheritance_3e_, |
|---|
| 47 | n/a | 'hidden' : _Prop_hidden, |
|---|
| 48 | n/a | 'kind' : _Prop_kind, |
|---|
| 49 | n/a | 'name' : _Prop_name, |
|---|
| 50 | n/a | 'path' : _Prop_path, |
|---|
| 51 | n/a | } |
|---|
| 52 | n/a | login_item._privelemdict = { |
|---|
| 53 | n/a | } |
|---|
| 54 | n/a | |
|---|
| 55 | n/a | # |
|---|
| 56 | n/a | # Indices of types declared in this module |
|---|
| 57 | n/a | # |
|---|
| 58 | n/a | _classdeclarations = { |
|---|
| 59 | n/a | 'logi' : login_item, |
|---|
| 60 | n/a | } |
|---|
| 61 | n/a | |
|---|
| 62 | n/a | _propdeclarations = { |
|---|
| 63 | n/a | 'c@#^' : _Prop__3c_Inheritance_3e_, |
|---|
| 64 | n/a | 'hidn' : _Prop_hidden, |
|---|
| 65 | n/a | 'kind' : _Prop_kind, |
|---|
| 66 | n/a | 'pnam' : _Prop_name, |
|---|
| 67 | n/a | 'ppth' : _Prop_path, |
|---|
| 68 | n/a | } |
|---|
| 69 | n/a | |
|---|
| 70 | n/a | _compdeclarations = { |
|---|
| 71 | n/a | } |
|---|
| 72 | n/a | |
|---|
| 73 | n/a | _enumdeclarations = { |
|---|
| 74 | n/a | } |
|---|