diff options
Diffstat (limited to 'Lib/plat-mac/lib-scriptpackages/SystemEvents/System_Events_Suite.py')
-rw-r--r-- | Lib/plat-mac/lib-scriptpackages/SystemEvents/System_Events_Suite.py | 29 |
1 files changed, 8 insertions, 21 deletions
diff --git a/Lib/plat-mac/lib-scriptpackages/SystemEvents/System_Events_Suite.py b/Lib/plat-mac/lib-scriptpackages/SystemEvents/System_Events_Suite.py index ace4516..1f6af42 100644 --- a/Lib/plat-mac/lib-scriptpackages/SystemEvents/System_Events_Suite.py +++ b/Lib/plat-mac/lib-scriptpackages/SystemEvents/System_Events_Suite.py @@ -18,19 +18,19 @@ class System_Events_Suite_Events: class application(aetools.ComponentItem): """application - The System Events application """ want = 'capp' -class _3c_Inheritance_3e_(aetools.NProperty): +class _Prop__3c_Inheritance_3e_(aetools.NProperty): """<Inheritance> - All of the properties of the superclass. """ which = 'c@#^' want = 'capp' -class folder_actions_enabled(aetools.NProperty): +class _Prop_folder_actions_enabled(aetools.NProperty): """folder actions enabled - Are Folder Actions currently being processed? """ which = 'faen' want = 'bool' -class properties(aetools.NProperty): +class _Prop_properties(aetools.NProperty): """properties - every property of the System Events application """ which = 'pALL' want = '****' -class system_wide_UI_element(aetools.NProperty): +class _Prop_system_wide_UI_element(aetools.NProperty): """system wide UI element - the UI element for the entire system """ which = 'swui' want = 'uiel' @@ -56,10 +56,10 @@ import Folder_Actions_Suite import Login_Items_Suite import Processes_Suite application._privpropdict = { - '_3c_Inheritance_3e_' : _3c_Inheritance_3e_, - 'folder_actions_enabled' : folder_actions_enabled, - 'properties' : properties, - 'system_wide_UI_element' : system_wide_UI_element, + '_3c_Inheritance_3e_' : _Prop__3c_Inheritance_3e_, + 'folder_actions_enabled' : _Prop_folder_actions_enabled, + 'properties' : _Prop_properties, + 'system_wide_UI_element' : _Prop_system_wide_UI_element, } application._privelemdict = { 'UI_element' : Processes_Suite.UI_element, @@ -83,16 +83,3 @@ application._privelemdict = { _classdeclarations = { 'capp' : application, } - -_propdeclarations = { - 'c@#^' : _3c_Inheritance_3e_, - 'faen' : folder_actions_enabled, - 'pALL' : properties, - 'swui' : system_wide_UI_element, -} - -_compdeclarations = { -} - -_enumdeclarations = { -} |