diff options
author | Andras Timar <atimar@suse.com> | 2012-05-08 10:10:37 +0200 |
---|---|---|
committer | Andras Timar <atimar@suse.com> | 2012-05-08 10:12:45 +0200 |
commit | 98fd8f345504e98e9ed16f4845d55f5b88b77a5e (patch) | |
tree | c426a97719eb361376ff6f98a221c09778ce766d /scp2 | |
parent | 90352e5f1e50291960c944f9a1f44ab3e91d6503 (diff) |
fdo#39833 add "Support assistive technology tools" option to Windows installer
Change-Id: I52d2e0426d7f2822a05a74a82ca079fb80a87007
Diffstat (limited to 'scp2')
-rw-r--r-- | scp2/source/ooo/registryitem_ooo.scp | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/scp2/source/ooo/registryitem_ooo.scp b/scp2/source/ooo/registryitem_ooo.scp index 803f9798b42c..32bb699bc56a 100644 --- a/scp2/source/ooo/registryitem_ooo.scp +++ b/scp2/source/ooo/registryitem_ooo.scp @@ -674,3 +674,41 @@ RegistryItem gid_Regitem_Software_RegisteredApplications Value = "SOFTWARE\%MANUFACTURER\%PRODUCTNAME\%PRODUCTVERSION\Capabilities"; Styles = (); End + +Module gid_Module_Enable_AT_Tools_For_All_Users + ParentID = gid_Module_Root; + Name = "gid_Module_Enable_AT_Tools_For_All_Users"; + Description = "gid_Module_Enable_AT_Tools_For_All_Users"; + Styles = (HIDDEN_ROOT); + Minimal = YES; + Default = YES; +End + +Module gid_Module_Enable_AT_Tools_For_Current_User + ParentID = gid_Module_Root; + Name = "gid_Module_Enable_AT_Tools_For_Current_User"; + Description = "gid_Module_Enable_AT_Tools_For_Current_User"; + Styles = (HIDDEN_ROOT); + Minimal = YES; + Default = YES; +End + +RegistryItem gid_Regitem_Enable_AT_Tools_For_All_Users + ParentID = PREDEFINED_HKEY_LOCAL_MACHINE; + Subkey = "SYSTEM\CurrentControlSet\Control\Session Manager\Environment"; + ModuleID = gid_Module_Enable_AT_Tools_For_All_Users; + Name = "SAL_ACCESSIBILITY_ENABLED"; + Value = "1"; + Styles = (); + ComponentCondition = "(ALLUSERS=1) AND (ENABLEATTOOLS=1)"; +End + +RegistryItem gid_Regitem_Enable_AT_Tools_For_Current_User + ParentID = PREDEFINED_HKEY_CURRENT_USER; + Subkey = "Environment"; + ModuleID = gid_Module_Enable_AT_Tools_For_Current_User; + Name = "SAL_ACCESSIBILITY_ENABLED"; + Value = "1"; + Styles = (); + ComponentCondition = "(ALLUSERS<>1) AND (ENABLEATTOOLS=1)"; +End |