aboutsummaryrefslogtreecommitdiff
path: root/src/ext/UI/wixlib/WixUI_InstallDir.wxs
diff options
context:
space:
mode:
Diffstat (limited to 'src/ext/UI/wixlib/WixUI_InstallDir.wxs')
-rw-r--r--src/ext/UI/wixlib/WixUI_InstallDir.wxs78
1 files changed, 78 insertions, 0 deletions
diff --git a/src/ext/UI/wixlib/WixUI_InstallDir.wxs b/src/ext/UI/wixlib/WixUI_InstallDir.wxs
new file mode 100644
index 00000000..afe7820f
--- /dev/null
+++ b/src/ext/UI/wixlib/WixUI_InstallDir.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_InstallDirDlg
10 - WixUI_VerifyReadyDlg
11 - WixUI_DiskCostDlg
12
13Maintenance dialog sequence:
14 - WixUI_MaintenanceWelcomeDlg
15 - WixUI_MaintenanceTypeDlg
16 - WixUI_InstallDirDlg
17 - WixUI_VerifyReadyDlg
18
19Patch dialog sequence:
20 - WixUI_WelcomeDlg
21 - WixUI_VerifyReadyDlg
22
23-->
24
25<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs">
26 <Fragment>
27 <UI Id="WixUI_InstallDir">
28 <TextStyle Id="WixUI_Font_Normal" FaceName="Tahoma" Size="8" />
29 <TextStyle Id="WixUI_Font_Bigger" FaceName="Tahoma" Size="12" />
30 <TextStyle Id="WixUI_Font_Title" FaceName="Tahoma" Size="9" Bold="yes" />
31
32 <Property Id="DefaultUIFont" Value="WixUI_Font_Normal" />
33 <Property Id="WixUI_Mode" Value="InstallDir" />
34
35 <DialogRef Id="BrowseDlg" />
36 <DialogRef Id="DiskCostDlg" />
37 <DialogRef Id="ErrorDlg" />
38 <DialogRef Id="FatalError" />
39 <DialogRef Id="FilesInUse" />
40 <DialogRef Id="MsiRMFilesInUse" />
41 <DialogRef Id="PrepareDlg" />
42 <DialogRef Id="ProgressDlg" />
43 <DialogRef Id="ResumeDlg" />
44 <DialogRef Id="UserExit" />
45 <Publish Dialog="BrowseDlg" Control="OK" Event="DoAction" Value="WixUIValidatePath" Order="3" />
46 <Publish Dialog="BrowseDlg" Control="OK" Event="SpawnDialog" Value="InvalidDirDlg" Order="4" Condition="NOT WIXUI_DONTVALIDATEPATH AND WIXUI_INSTALLDIR_VALID&lt;&gt;&quot;1&quot;" />
47
48 <Publish Dialog="ExitDialog" Control="Finish" Event="EndDialog" Value="Return" Order="999" />
49
50 <Publish Dialog="WelcomeDlg" Control="Next" Event="NewDialog" Value="LicenseAgreementDlg" Condition="NOT Installed" />
51 <Publish Dialog="WelcomeDlg" Control="Next" Event="NewDialog" Value="VerifyReadyDlg" Condition="Installed AND PATCH" />
52
53 <Publish Dialog="LicenseAgreementDlg" Control="Back" Event="NewDialog" Value="WelcomeDlg" />
54 <Publish Dialog="LicenseAgreementDlg" Control="Next" Event="NewDialog" Value="InstallDirDlg" Condition="LicenseAccepted = &quot;1&quot;" />
55
56 <Publish Dialog="InstallDirDlg" Control="Back" Event="NewDialog" Value="LicenseAgreementDlg" />
57 <Publish Dialog="InstallDirDlg" Control="Next" Event="SetTargetPath" Value="[WIXUI_INSTALLDIR]" Order="1" />
58 <Publish Dialog="InstallDirDlg" Control="Next" Event="DoAction" Value="WixUIValidatePath" Order="2" Condition="NOT WIXUI_DONTVALIDATEPATH" />
59 <Publish Dialog="InstallDirDlg" Control="Next" Event="SpawnDialog" Value="InvalidDirDlg" Order="3" Condition="NOT WIXUI_DONTVALIDATEPATH AND WIXUI_INSTALLDIR_VALID&lt;&gt;&quot;1&quot;" />
60 <Publish Dialog="InstallDirDlg" Control="Next" Event="NewDialog" Value="VerifyReadyDlg" Order="4" Condition="WIXUI_DONTVALIDATEPATH OR WIXUI_INSTALLDIR_VALID=&quot;1&quot;" />
61 <Publish Dialog="InstallDirDlg" Control="ChangeFolder" Property="_BrowseProperty" Value="[WIXUI_INSTALLDIR]" Order="1" />
62 <Publish Dialog="InstallDirDlg" Control="ChangeFolder" Event="SpawnDialog" Value="BrowseDlg" Order="2" />
63 <Publish Dialog="VerifyReadyDlg" Control="Back" Event="NewDialog" Value="InstallDirDlg" Order="1" Condition="NOT Installed" />
64 <Publish Dialog="VerifyReadyDlg" Control="Back" Event="NewDialog" Value="MaintenanceTypeDlg" Order="2" Condition="Installed AND NOT PATCH" />
65 <Publish Dialog="VerifyReadyDlg" Control="Back" Event="NewDialog" Value="WelcomeDlg" Order="2" Condition="Installed AND PATCH" />
66
67 <Publish Dialog="MaintenanceWelcomeDlg" Control="Next" Event="NewDialog" Value="MaintenanceTypeDlg" />
68
69 <Publish Dialog="MaintenanceTypeDlg" Control="RepairButton" Event="NewDialog" Value="VerifyReadyDlg" />
70 <Publish Dialog="MaintenanceTypeDlg" Control="RemoveButton" Event="NewDialog" Value="VerifyReadyDlg" />
71 <Publish Dialog="MaintenanceTypeDlg" Control="Back" Event="NewDialog" Value="MaintenanceWelcomeDlg" />
72
73 <Property Id="ARPNOMODIFY" Value="1" />
74 </UI>
75
76 <UIRef Id="WixUI_Common" />
77 </Fragment>
78</Wix>