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