aboutsummaryrefslogtreecommitdiff
path: root/src/ext/UI/wixlib/WixUI_Mondo.wxs
diff options
context:
space:
mode:
Diffstat (limited to 'src/ext/UI/wixlib/WixUI_Mondo.wxs')
-rw-r--r--src/ext/UI/wixlib/WixUI_Mondo.wxs78
1 files changed, 78 insertions, 0 deletions
diff --git a/src/ext/UI/wixlib/WixUI_Mondo.wxs b/src/ext/UI/wixlib/WixUI_Mondo.wxs
new file mode 100644
index 00000000..2d53b9dd
--- /dev/null
+++ b/src/ext/UI/wixlib/WixUI_Mondo.wxs
@@ -0,0 +1,78 @@
1<!-- Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. -->
2
3
4
5<!--
6First-time install dialog sequence:
7- WixUI_WelcomeDlg
8- WixUI_LicenseAgreementDlg
9- WixUI_SetupTypeDlg
10- WixUI_VerifyReadyDlg
11- WixUI_CustomizeDlg
12- WixUI_DiskCostDlg
13- WixUI_BrowseDlg
14
15Maintenance dialog sequence:
16- WixUI_MaintenanceWelcomeDlg
17- WixUI_MaintenanceTypeDlg
18- WixUI_CustomizeDlg
19- WixUI_VerifyReadyDlg
20
21Patch dialog sequence:
22 - WixUI_WelcomeDlg
23 - WixUI_VerifyReadyDlg
24-->
25
26<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs">
27 <Fragment>
28 <UI Id="WixUI_Mondo">
29 <TextStyle Id="WixUI_Font_Normal" FaceName="Tahoma" Size="8" />
30 <TextStyle Id="WixUI_Font_Bigger" FaceName="Tahoma" Size="12" />
31 <TextStyle Id="WixUI_Font_Title" FaceName="Tahoma" Size="9" Bold="yes" />
32
33 <Property Id="DefaultUIFont" Value="WixUI_Font_Normal" />
34 <Property Id="WixUI_Mode" Value="Mondo" />
35
36 <DialogRef Id="ErrorDlg" />
37 <DialogRef Id="FatalError" />
38 <DialogRef Id="FilesInUse" />
39 <DialogRef Id="MsiRMFilesInUse" />
40 <DialogRef Id="PrepareDlg" />
41 <DialogRef Id="ProgressDlg" />
42 <DialogRef Id="ResumeDlg" />
43 <DialogRef Id="UserExit" />
44
45 <Publish Dialog="ExitDialog" Control="Finish" Event="EndDialog" Value="Return" Order="999" />
46
47 <Publish Dialog="WelcomeDlg" Control="Next" Event="NewDialog" Value="LicenseAgreementDlg" Condition="NOT Installed AND NOT PATCH" />
48 <Publish Dialog="WelcomeDlg" Control="Next" Event="NewDialog" Value="VerifyReadyDlg" Condition="Installed AND PATCH" />
49
50 <Publish Dialog="LicenseAgreementDlg" Control="Back" Event="NewDialog" Value="WelcomeDlg" />
51 <Publish Dialog="LicenseAgreementDlg" Control="Next" Event="NewDialog" Value="SetupTypeDlg" Order="2" Condition="LicenseAccepted = &quot;1&quot;" />
52
53 <Publish Dialog="SetupTypeDlg" Control="Back" Event="NewDialog" Value="LicenseAgreementDlg" />
54 <Publish Dialog="SetupTypeDlg" Control="TypicalButton" Event="NewDialog" Value="VerifyReadyDlg" />
55 <Publish Dialog="SetupTypeDlg" Control="CustomButton" Event="NewDialog" Value="CustomizeDlg" />
56 <Publish Dialog="SetupTypeDlg" Control="CompleteButton" Event="NewDialog" Value="VerifyReadyDlg" />
57
58 <Publish Dialog="CustomizeDlg" Control="Back" Event="NewDialog" Value="MaintenanceTypeDlg" Order="1" Condition="WixUI_InstallMode = &quot;Change&quot;" />
59 <Publish Dialog="CustomizeDlg" Control="Back" Event="NewDialog" Value="SetupTypeDlg" Order="2" Condition="WixUI_InstallMode = &quot;InstallCustom&quot;" />
60 <Publish Dialog="CustomizeDlg" Control="Next" Event="NewDialog" Value="VerifyReadyDlg" />
61
62 <Publish Dialog="VerifyReadyDlg" Control="Back" Event="NewDialog" Value="CustomizeDlg" Order="1" Condition="WixUI_InstallMode = &quot;InstallCustom&quot;" />
63 <Publish Dialog="VerifyReadyDlg" Control="Back" Event="NewDialog" Value="SetupTypeDlg" Order="2" Condition="WixUI_InstallMode = &quot;InstallTypical&quot; OR WixUI_InstallMode = &quot;InstallComplete&quot;" />
64 <Publish Dialog="VerifyReadyDlg" Control="Back" Event="NewDialog" Value="CustomizeDlg" Order="3" Condition="WixUI_InstallMode = &quot;Change&quot;" />
65 <Publish Dialog="VerifyReadyDlg" Control="Back" Event="NewDialog" Value="MaintenanceTypeDlg" Order="4" Condition="WixUI_InstallMode = &quot;Repair&quot; OR WixUI_InstallMode = &quot;Remove&quot;" />
66 <Publish Dialog="VerifyReadyDlg" Control="Back" Event="NewDialog" Value="WelcomeDlg" Order="2" Condition="WixUI_InstallMode = &quot;Update&quot;" />
67
68 <Publish Dialog="MaintenanceWelcomeDlg" Control="Next" Event="NewDialog" Value="MaintenanceTypeDlg" />
69
70 <Publish Dialog="MaintenanceTypeDlg" Control="ChangeButton" Event="NewDialog" Value="CustomizeDlg" />
71 <Publish Dialog="MaintenanceTypeDlg" Control="RepairButton" Event="NewDialog" Value="VerifyReadyDlg" />
72 <Publish Dialog="MaintenanceTypeDlg" Control="RemoveButton" Event="NewDialog" Value="VerifyReadyDlg" />
73 <Publish Dialog="MaintenanceTypeDlg" Control="Back" Event="NewDialog" Value="MaintenanceWelcomeDlg" />
74 </UI>
75
76 <UIRef Id="WixUI_Common" />
77 </Fragment>
78</Wix>