WixUI_Tor.wxs 3.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. Copyright (c) Microsoft Corporation. All rights reserved.
  4. The use and distribution terms for this software are covered by the
  5. Common Public License 1.0 (http://opensource.org/licenses/cpl.php)
  6. which can be found in the file CPL.TXT at the root of this distribution.
  7. By using this software in any fashion, you are agreeing to be bound by
  8. the terms of this license.
  9. You must not remove this notice, or any other, from this software.
  10. This is modified from WixUI_Mondo to omit EULA and other parts not necessary
  11. for Tor installation.
  12. -->
  13. <Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
  14. <Fragment>
  15. <UI Id="WixUI_Tor">
  16. <TextStyle Id="WixUI_Font_Normal" FaceName="Tahoma" Size="8" />
  17. <TextStyle Id="WixUI_Font_Bigger" FaceName="Tahoma" Size="12" />
  18. <TextStyle Id="WixUI_Font_Title" FaceName="Tahoma" Size="9" Bold="yes" />
  19. <Property Id="DefaultUIFont" Value="WixUI_Font_Normal" />
  20. <Property Id="WixUI_Mode" Value="Tor" />
  21. <DialogRef Id="ErrorDlg" />
  22. <DialogRef Id="FatalError" />
  23. <DialogRef Id="FilesInUse" />
  24. <DialogRef Id="MsiRMFilesInUse" />
  25. <DialogRef Id="PrepareDlg" />
  26. <DialogRef Id="ProgressDlg" />
  27. <DialogRef Id="ResumeDlg" />
  28. <DialogRef Id="UserExit" />
  29. <Publish Dialog="ExitDialog" Control="Finish" Event="EndDialog" Value="Return" Order="999">1</Publish>
  30. <Publish Dialog="WelcomeDlg" Control="Next" Event="NewDialog" Value="SetupTypeDlg">1</Publish>
  31. <Publish Dialog="SetupTypeDlg" Control="Back" Event="NewDialog" Value="WelcomeDlg">1</Publish>
  32. <Publish Dialog="SetupTypeDlg" Control="TypicalButton" Event="NewDialog" Value="VerifyReadyDlg">1</Publish>
  33. <Publish Dialog="SetupTypeDlg" Control="CustomButton" Event="NewDialog" Value="CustomizeDlg">1</Publish>
  34. <Publish Dialog="CustomizeDlg" Control="Back" Event="NewDialog" Value="MaintenanceTypeDlg" Order="1">WixUI_InstallMode = "Change"</Publish>
  35. <Publish Dialog="CustomizeDlg" Control="Back" Event="NewDialog" Value="SetupTypeDlg" Order="2">WixUI_InstallMode = "InstallCustom"</Publish>
  36. <Publish Dialog="CustomizeDlg" Control="Next" Event="NewDialog" Value="VerifyReadyDlg">1</Publish>
  37. <Publish Dialog="VerifyReadyDlg" Control="Back" Event="NewDialog" Value="CustomizeDlg" Order="1">WixUI_InstallMode = "InstallCustom"</Publish>
  38. <Publish Dialog="VerifyReadyDlg" Control="Back" Event="NewDialog" Value="SetupTypeDlg" Order="2">WixUI_InstallMode = "InstallTypical" OR WixUI_InstallMode = "InstallComplete"</Publish>
  39. <Publish Dialog="VerifyReadyDlg" Control="Back" Event="NewDialog" Value="CustomizeDlg" Order="3">WixUI_InstallMode = "Change"</Publish>
  40. <Publish Dialog="VerifyReadyDlg" Control="Back" Event="NewDialog" Value="MaintenanceTypeDlg" Order="4">WixUI_InstallMode = "Repair" OR WixUI_InstallMode = "Remove"</Publish>
  41. <Publish Dialog="MaintenanceWelcomeDlg" Control="Next" Event="NewDialog" Value="MaintenanceTypeDlg">1</Publish>
  42. <Publish Dialog="MaintenanceTypeDlg" Control="ChangeButton" Event="NewDialog" Value="CustomizeDlg">1</Publish>
  43. <Publish Dialog="MaintenanceTypeDlg" Control="RepairButton" Event="NewDialog" Value="VerifyReadyDlg">1</Publish>
  44. <Publish Dialog="MaintenanceTypeDlg" Control="RemoveButton" Event="NewDialog" Value="VerifyReadyDlg">1</Publish>
  45. <Publish Dialog="MaintenanceTypeDlg" Control="Back" Event="NewDialog" Value="MaintenanceWelcomeDlg">1</Publish>
  46. </UI>
  47. <UIRef Id="WixUI_Common" />
  48. </Fragment>
  49. </Wix>