-
Notifications
You must be signed in to change notification settings - Fork 87
Expand file tree
/
Copy pathWixUI_IDEasySetup.wxs
More file actions
94 lines (73 loc) · 5.54 KB
/
Copy pathWixUI_IDEasySetup.wxs
File metadata and controls
94 lines (73 loc) · 5.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs">
<?foreach WIXUIARCH in X86;X64;A64 ?>
<Fragment>
<UI Id="WixUI_InstallDirCustom_$(WIXUIARCH)">
<Publish Dialog="LicenseAgreementDlg" Control="Print" Event="DoAction" Value="WixUIPrintEula_$(WIXUIARCH)" />
</UI>
<UIRef Id="WixUI_InstallDirCustom" />
</Fragment>
<?endforeach?>
<Fragment>
<UI Id="file WixUI_InstallDirCustom">
<TextStyle Id="WixUI_Font_Normal" FaceName="Segoe UI" Size="8" />
<TextStyle Id="WixUI_Font_Bigger" FaceName="Segoe UI" Size="12" />
<TextStyle Id="WixUI_Font_Title" FaceName="Segoe UI" Size="9" Bold="yes" />
<Property Id="DefaultUIFont" Value="WixUI_Font_Normal" />
<DialogRef Id="BrowseDlg" />
<DialogRef Id="DiskCostDlg" />
<DialogRef Id="ErrorDlg" />
<DialogRef Id="FatalError" />
<DialogRef Id="FilesInUse" />
<DialogRef Id="MsiRMFilesInUse" />
<DialogRef Id="PrepareDlg" />
<DialogRef Id="ProgressDlg" />
<DialogRef Id="ResumeDlg" />
<DialogRef Id="UserExit" />
<Publish Dialog="ExitDialog" Control="Finish" Event="EndDialog" Value="Return" Order="999" />
<Publish Dialog="WelcomeDlg" Control="Next" Event="NewDialog" Value="LicenseAgreementDlg" Condition="NOT Installed" />
<Publish Dialog="WelcomeDlg" Control="Next" Event="NewDialog" Value="VerifyReadyDlg" Condition="Installed AND PATCH" />
<Publish Dialog="LicenseAgreementDlg" Control="Back" Event="NewDialog" Value="WelcomeDlg" />
<Publish Dialog="LicenseAgreementDlg" Control="Next" Event="NewDialog" Value="InstallPathDlg" Condition="LicenseAccepted = "1"" />
<Publish Dialog="InstallPathDlg" Control="Back" Event="NewDialog" Value="LicenseAgreementDlg" />
<Publish Dialog="InstallPathDlg" Control="Next" Event="NewDialog" Value="VerifyReadyDlg" Order="2" />
<Publish Dialog="VerifyReadyDlg" Control="Back" Event="NewDialog" Value="InstallPathDlg" Order="1" Condition="NOT Installed" />
<Publish Dialog="VerifyReadyDlg" Control="Back" Event="NewDialog" Value="MaintenanceTypeDlg" Order="2" Condition="Installed AND NOT PATCH" />
<Publish Dialog="VerifyReadyDlg" Control="Back" Event="NewDialog" Value="WelcomeDlg" Order="2" Condition="Installed AND PATCH" />
<Publish Dialog="MaintenanceWelcomeDlg" Control="Next" Event="NewDialog" Value="MaintenanceTypeDlg" />
<Publish Dialog="MaintenanceTypeDlg" Control="RemoveButton" Event="NewDialog" Value="VerifyReadyDlg" />
<Publish Dialog="MaintenanceTypeDlg" Control="Back" Event="NewDialog" Value="MaintenanceWelcomeDlg" />
<Property Id="ARPNOMODIFY" Value="1" />
</UI>
<UIRef Id="WixUI_Common" />
</Fragment>
<Fragment>
<UI>
<Dialog Id="InstallPathDlg" Width="370" Height="270" Title="!(loc.InstallPathDlg_Title)">
<Control Id="Description" Type="Text" X="25" Y="23" Width="280" Height="15" Transparent="yes" NoPrefix="yes" Text="!(loc.InstallPathDlgDescription)" />
<Control Id="Title" Type="Text" X="15" Y="6" Width="200" Height="15" Transparent="yes" NoPrefix="yes" Text="!(loc.InstallPathDlgTitle)" />
<Control Id="BannerBitmap" Type="Bitmap" X="0" Y="0" Width="370" Height="44" TabSkip="no" Text="!(loc.InstallDirDlgBannerBitmap)" />
<Control Id="BannerLine" Type="Line" X="0" Y="44" Width="370" Height="0" />
<Control Id="BottomLine" Type="Line" X="0" Y="234" Width="370" Height="0" />
<!-- Radio Buttons to select USERHOME or CUSTOM folder -->
<Control Id="InstallLocationText" Type="Text" X="20" Y="60" Width="250" Height="15" Transparent="yes" NoPrefix="yes" Text="!(loc.SelectInstallLocationText)" />
<Control Id="InstallLocation" Type="RadioButtonGroup" Property="INSTALLTYPE" X="20" Y="75" Width="280" Height="40">
<RadioButtonGroup Property="INSTALLTYPE">
<RadioButton Value="USERHOME" Text="!(loc.InstallUserHomeOption)" X="20" Y="0" Width="260" Height="20" />
<RadioButton Value="CUSTOM" Text="!(loc.InstallCustomOption)" X="20" Y="20" Width="260" Height="20" />
</RadioButtonGroup>
</Control>
<Control Id="VolumeSelectorText" Type="Text" X="51" Y="115" Width="250" Height="15" Transparent="yes" NoPrefix="yes" HideCondition="INSTALLTYPE="USERHOME"" ShowCondition="INSTALLTYPE="CUSTOM"" Text="!(loc.SelectCustomDriveText)" />
<Control Id="VolumeSelector" Type="VolumeSelectCombo" X="51" Y="130" Width="52" Height="40" Fixed="yes" Remote="yes" HideCondition="INSTALLTYPE="USERHOME"" ShowCondition="INSTALLTYPE="CUSTOM"" Property="ROOTDIRECTORY" Text="!(loc.SelectCustomDrive)" />
<Control Id="Next" Type="PushButton" X="236" Y="243" Width="56" Height="17" Default="yes" Text="!(loc.WixUINext)" >
<Publish Event="DoAction" Value="SetIDE_ROOT" Condition="INSTALLTYPE="CUSTOM"" Order="1" />
<Publish Event="DoAction" Value="SetTEMP_FOLDER" Order="2" />
</Control>
<Control Id="Back" Type="PushButton" X="180" Y="243" Width="56" Height="17" Text="!(loc.WixUIBack)" />
<Control Id="Cancel" Type="PushButton" X="304" Y="243" Width="56" Height="17" Cancel="yes" Text="!(loc.WixUICancel)">
<Publish Event="SpawnDialog" Value="CancelDlg" />
</Control>
<Control Id="InstallLogInfoText" Type="Text" X="20" Y="170" Width="320" Height="30" Transparent="no" NoPrefix="yes" Text="We will write an install log to: [USERFOLDER].ide\logs"/>
</Dialog>
</UI>
</Fragment>
</Wix>