Kaydet (Commit) 98fd8f34 authored tarafından Andras Timar's avatar Andras Timar

fdo#39833 add "Support assistive technology tools" option to Windows installer

Change-Id: I52d2e0426d7f2822a05a74a82ca079fb80a87007
üst 90352e5f
...@@ -657,3 +657,6 @@ en-US = "No applications have been selected for installation. Click OK, then sel ...@@ -657,3 +657,6 @@ en-US = "No applications have been selected for installation. Click OK, then sel
[OOO_CONTROL_319] [OOO_CONTROL_319]
en-US = "Create a start link on desktop" en-US = "Create a start link on desktop"
[OOO_CONTROL_320]
en-US = "Support assistive technology tools"
...@@ -2,3 +2,4 @@ Property Value ...@@ -2,3 +2,4 @@ Property Value
s72 S64 s72 S64
CheckBox Property CheckBox Property
CREATEDESKTOPLINK 1 CREATEDESKTOPLINK 1
ENABLEATTOOLS 1
...@@ -222,7 +222,7 @@ ReadyToInstall Banner Bitmap 0 0 374 44 1 BannerBmp ...@@ -222,7 +222,7 @@ ReadyToInstall Banner Bitmap 0 0 374 44 1 BannerBmp
ReadyToInstall BannerLine Line 0 44 374 0 1 ReadyToInstall BannerLine Line 0 44 374 0 1
ReadyToInstall Branding1 Text 4 229 88 13 3 {&MSSWhiteSerif8}[ProductName] ReadyToInstall Branding1 Text 4 229 88 13 3 {&MSSWhiteSerif8}[ProductName]
ReadyToInstall Branding2 Text 3 228 88 13 65537 [ProductName] ReadyToInstall Branding2 Text 3 228 88 13 65537 [ProductName]
ReadyToInstall Cancel PushButton 301 243 66 17 3 OOO_CONTROL_166 Back ReadyToInstall Cancel PushButton 301 243 66 17 3 OOO_CONTROL_166 DesktopLink
ReadyToInstall DlgDesc Text 21 23 272 25 65539 OOO_CONTROL_167 ReadyToInstall DlgDesc Text 21 23 272 25 65539 OOO_CONTROL_167
ReadyToInstall DlgLine Line 90 234 284 0 1 ReadyToInstall DlgLine Line 90 234 284 0 1
ReadyToInstall DlgText Text 21 51 326 20 3 OOO_CONTROL_168 ReadyToInstall DlgText Text 21 51 326 20 3 OOO_CONTROL_168
...@@ -231,7 +231,8 @@ ReadyToInstall DlgTitle Text 13 6 280 25 65538 OOO_CONTROL_170 ...@@ -231,7 +231,8 @@ ReadyToInstall DlgTitle Text 13 6 280 25 65538 OOO_CONTROL_170
ReadyToInstall DlgTitle2 Text 13 6 280 25 65538 OOO_CONTROL_171 ReadyToInstall DlgTitle2 Text 13 6 280 25 65538 OOO_CONTROL_171
ReadyToInstall DlgTitle3 Text 13 6 280 25 65538 OOO_CONTROL_172 ReadyToInstall DlgTitle3 Text 13 6 280 25 65538 OOO_CONTROL_172
ReadyToInstall InstallNow PushButton 230 243 66 17 3 OOO_CONTROL_173 Cancel ReadyToInstall InstallNow PushButton 230 243 66 17 3 OOO_CONTROL_173 Cancel
ReadyToInstall DesktopLink CheckBox 21 100 300 10 3 CREATEDESKTOPLINK OOO_CONTROL_319 ReadyToInstall DesktopLink CheckBox 21 100 300 10 3 CREATEDESKTOPLINK OOO_CONTROL_319 EnableATTools
ReadyToInstall EnableATTools CheckBox 21 125 300 10 3 ENABLEATTOOLS OOO_CONTROL_320 Back
ReadyToRemove Back PushButton 164 243 66 17 3 OOO_CONTROL_174 RemoveNow ReadyToRemove Back PushButton 164 243 66 17 3 OOO_CONTROL_174 RemoveNow
ReadyToRemove Banner Bitmap 0 0 374 44 1 BannerBmp ReadyToRemove Banner Bitmap 0 0 374 44 1 BannerBmp
ReadyToRemove BannerLine Line 0 44 374 0 1 ReadyToRemove BannerLine Line 0 44 374 0 1
......
...@@ -674,3 +674,41 @@ RegistryItem gid_Regitem_Software_RegisteredApplications ...@@ -674,3 +674,41 @@ RegistryItem gid_Regitem_Software_RegisteredApplications
Value = "SOFTWARE\%MANUFACTURER\%PRODUCTNAME\%PRODUCTVERSION\Capabilities"; Value = "SOFTWARE\%MANUFACTURER\%PRODUCTNAME\%PRODUCTVERSION\Capabilities";
Styles = (); Styles = ();
End 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
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment