VirtualBox

source: vbox/trunk/src/VBox/Installer/win/UserInterface.wxi@ 104464

Last change on this file since 104464 was 104464, checked in by vboxsync, 9 months ago

Windows host installer: More quoting changes for WIX v4 needed for custom action conditions [SCM fix]. ​bugref:10644

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 92.5 KB
Line 
1<!--
2 User interface include for VirtualBox WiX script.
3-->
4<!--
5 Copyright (C) 2006-2023 Oracle and/or its affiliates.
6
7 This file is part of VirtualBox base platform packages, as
8 available from https://www.virtualbox.org.
9
10 This program is free software; you can redistribute it and/or
11 modify it under the terms of the GNU General Public License
12 as published by the Free Software Foundation, in version 3 of the
13 License.
14
15 This program is distributed in the hope that it will be useful, but
16 WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 General Public License for more details.
19
20 You should have received a copy of the GNU General Public License
21 along with this program; if not, see <https://www.gnu.org/licenses>.
22
23 SPDX-License-Identifier: GPL-3.0-only
24-->
25
26<Include xmlns="http://wixtoolset.org/schemas/v4/wxs">
27 <UI>
28 <!-- This dialog will be shown when the user cancels the installation -->
29 <Dialog Id="VBoxCancelDlg" Width="260" Height="85" Title="[ProductName] !(loc.Setup)" NoMinimize="yes">
30 <Control Id="No" Type="PushButton" X="132" Y="57" Width="56" Height="17" Default="yes" Cancel="yes" Text="!(loc.ButtonText_No)">
31 <Publish Event="EndDialog" Value="Return" />
32 </Control>
33 <Control Id="Yes" Type="PushButton" X="72" Y="57" Width="56" Height="17" Text="!(loc.ButtonText_Yes)">
34 <Publish Event="EndDialog" Value="Exit" />
35 </Control>
36 <Control Id="Text" Type="Text" X="48" Y="15" Width="194" Height="30">
37 <Text Value="!(loc.CancelDlg_Question)" />
38 </Control>
39 <Control Id="Icon" Type="Icon" X="15" Y="15" Width="24" Height="24" ToolTip="Information icon" FixedSize="yes" IconSize="32" Text="[InfoIcon]" />
40 </Dialog>
41
42 <!-- This is the very first page the user will see -->
43 <Dialog Id="VBoxWelcomeDlg" Width="370" Height="270" Title="[ProductName] !(loc.Setup)" NoMinimize="yes">
44 <!-- The wizard has a bitmap as background. The source is defined as a property below. -->
45 <Control Id="Bitmap" Type="Bitmap" X="0" Y="0" Width="370" Height="234" TabSkip="no" Text="[DialogBitmap]" />
46
47 <!-- Title text drawn on the background -->
48 <Control Id="Title" Type="Text" X="135" Y="20" Width="220" Height="60" Transparent="yes" NoPrefix="yes">
49 <Text Value="{\DlgVerdanaBold13}!(loc.WelcomeDlg_Header)" />
50 </Control>
51
52 <!-- Text saying what we gonna do -->
53 <Control Id="Description" Type="Text" X="135" Y="70" Width="220" Height="130" Transparent="yes" NoPrefix="yes">
54 <Text Value="!(loc.WelcomeDlg_Body)" />
55 </Control>
56
57 <!-- And a line for looking nice... -->
58 <Control Id="BottomLine" Type="Line" X="0" Y="234" Width="370" Height="0" />
59
60 <!-- Build number text drawn left bottom -->
61 <Control Id="Build" Type="Text" X="20" Y="247" Width="220" Height="10" Transparent="yes" NoPrefix="yes">
62 <Text Value="[Version_text] $(var.Property_Version)" />
63 </Control>
64
65 <Control Id="Next" Type="PushButton" X="236" Y="243" Width="56" Height="17" Default="yes" Text="!(loc.ButtonText_Next)" />
66
67 <!-- Canceling will bring up a confirmation dialog ('SpawnDialog' attribute) -->
68 <Control Id="Cancel" Type="PushButton" X="304" Y="243" Width="56" Height="17" Cancel="yes" Text="!(loc.ButtonText_Cancel)">
69 <Publish Event="SpawnDialog" Value="VBoxCancelDlg" />
70 </Control>
71 </Dialog>
72
73 <!-- The radio button group used for the license agreement page -->
74 <RadioButtonGroup Property="IAgree">
75 <RadioButton Text="{\DlgFont8}!(loc.LicenseAgreementDlg_Accept)" Value="Yes" X="5" Y="0" Width="250" Height="15" />
76 <RadioButton Text="{\DlgFont8}!(loc.LicenseAgreementDlg_Decline)" Value="No" X="5" Y="20" Width="250" Height="15" />
77 </RadioButtonGroup>
78
79 <!-- The dialog page showing the license. The user has to set the appropriate check box to proceed -->
80 <Dialog Id="VBoxLicenseAgreementDlg" Width="370" Height="270" Title="[ProductName] License Agreement" NoMinimize="yes">
81 <!-- The bitmap at the top of the dialog. This dialog doesn't have a background -->
82 <Control Id="BannerBitmap" Type="Bitmap" X="0" Y="0" Width="370" Height="44" TabSkip="no" Text="[BannerBitmap]" />
83
84 <!-- The font used here is defined below -->
85 <Control Id="Title" Type="Text" X="15" Y="6" Width="200" Height="15" Transparent="yes" NoPrefix="yes">
86 <Text Value="[DlgTitleFont]!(loc.LicenseAgreementDlg_Header)" />
87 </Control>
88
89 <Control Id="Description" Type="Text" X="25" Y="23" Width="280" Height="15" Transparent="yes" NoPrefix="yes">
90 <Text Value="!(loc.LicenseAgreementDlg_Body)" />
91 </Control>
92
93 <!-- The line directly below of the banner bmp -->
94 <Control Id="BannerLine" Type="Line" X="0" Y="44" Width="370" Height="0" />
95
96 <!-- The license text should be a RTF text so we have formatting -->
97 <Control Id="AgreementText" Type="ScrollableText" X="20" Y="60" Width="330" Height="120" Sunken="yes" TabSkip="no" Text="!(loc.LicenseText)" />
98
99 <!-- This radio button group is defined below -->
100 <Control Id="Buttons" Type="RadioButtonGroup" X="20" Y="187" Width="330" Height="40" Property="IAgree" />
101
102 <!-- And a line for looking nice... -->
103 <Control Id="BottomLine" Type="Line" X="0" Y="234" Width="370" Height="0" />
104
105 <!-- Build number text drawn left bottom -->
106 <Control Id="Build" Type="Text" X="20" Y="247" Width="220" Height="10" Transparent="yes" NoPrefix="yes">
107 <Text Value="[Version_text] $(var.Property_Version)" />
108 </Control>
109
110 <Control Id="Back" Type="PushButton" X="180" Y="243" Width="56" Height="17" Text="!(loc.ButtonText_Back)" />
111 <Control Id="Next" Type="PushButton" X="236" Y="243" Width="56" Height="17" Default="yes" Text="!(loc.ButtonText_Next)" DisableCondition="IAgree &lt;&gt; &quot;Yes&quot;" EnableCondition="IAgree = &quot;Yes&quot;" />
112
113 <!-- Canceling will bring up a confirmation dialog ('SpawnDialog' attribute) -->
114 <Control Id="Cancel" Type="PushButton" X="304" Y="243" Width="56" Height="17" Cancel="yes" Text="!(loc.ButtonText_Cancel)">
115 <Publish Event="SpawnDialog" Value="VBoxCancelDlg" />
116 </Control>
117 </Dialog>
118
119 <Dialog Id="VBoxCheckSerialDlg" Width="370" Height="270" Title="[ProductName] !(loc.Setup)" NoMinimize="yes">
120 <!-- The wizard has a bitmap as background. The source is defined as a property below. -->
121 <Control Id="Bitmap" Type="Bitmap" X="0" Y="0" Width="370" Height="234" TabSkip="no" Text="[DialogBitmap]" />
122
123 <Control Id="Title" Type="Text" X="135" Y="20" Width="220" Height="60" Transparent="yes" NoPrefix="yes">
124 <Text Value="{\DlgVerdanaBold13}!(loc.CheckSerialDlg_Header)" />
125 </Control>
126
127 <!-- Text saying what we gonna do -->
128 <Control Id="Description" Type="Text" X="135" Y="50" Width="220" Height="130" Transparent="yes" NoPrefix="yes">
129 <Text Value="!(loc.CheckSerialDlg_Body)" />
130 </Control>
131
132 <Control Id="Serial1Edit" Type="Edit" X="135" Y="90" Width="30" Height="18" Property="Serial1" Text="{5}" />
133 <Control Id="Serial2Edit" Type="Edit" X="170" Y="90" Width="30" Height="18" Property="Serial2" Text="{5}" />
134 <Control Id="Serial3Edit" Type="Edit" X="205" Y="90" Width="30" Height="18" Property="Serial3" Text="{5}" />
135 <Control Id="Serial4Edit" Type="Edit" X="240" Y="90" Width="30" Height="18" Property="Serial4" Text="{5}" />
136 <Control Id="Serial5Edit" Type="Edit" X="275" Y="90" Width="30" Height="18" Property="Serial5" Text="{5}" />
137
138 <Control Id="Description3" Type="Text" X="135" Y="120" Width="220" Height="130" Transparent="yes" NoPrefix="yes">
139 <Text Value="!(loc.CheckSerialDlg_Footer)" />
140 </Control>
141
142 <Control Id="Back" Type="PushButton" X="180" Y="243" Width="56" Height="17" Text="!(loc.ButtonText_Back)" />
143 <Control Id="Next" Type="PushButton" X="236" Y="243" Width="56" Height="17" Default="yes" Text="!(loc.ButtonText_Check)" />
144 <Control Id="Cancel" Type="PushButton" X="304" Y="243" Width="56" Height="17" Cancel="yes" Text="!(loc.ButtonText_Cancel)">
145 <Publish Event="SpawnDialog" Value="VBoxCancelDlg" />
146 </Control>
147
148 <!-- And a line for looking nice... -->
149 <Control Id="BottomLine" Type="Line" X="0" Y="234" Width="370" Height="0" />
150
151 <!-- Build number text drawn left bottom -->
152 <Control Id="Build" Type="Text" X="20" Y="247" Width="220" Height="10" Transparent="yes" NoPrefix="yes">
153 <Text Value="[Version_text] $(var.Property_Version)" />
154 </Control>
155
156 </Dialog>
157
158 <Dialog Id="VBoxWrongSerialDlg" Width="370" Height="270" Title="[ProductName] !(loc.Setup)" NoMinimize="yes">
159
160 <!-- The wizard has a bitmap as background. The source is defined as a property below. -->
161 <Control Id="Bitmap" Type="Bitmap" X="0" Y="0" Width="370" Height="234" TabSkip="no" Text="[DialogBitmap]" />
162
163 <!-- Title text drawn on the background -->
164 <Control Id="Title" Type="Text" X="135" Y="20" Width="220" Height="60" Transparent="yes" NoPrefix="yes">
165 <Text Value="{\DlgInvalidSerial}!(loc.WrongSerialDlg_Header)" />
166 </Control>
167
168 <!-- Text saying what we gonna do -->
169 <Control Id="Description" Type="Text" X="135" Y="70" Width="220" Height="130" Transparent="yes" NoPrefix="yes">
170 <Text Value="!(loc.WrongSerialDlg_Desc1)" />
171 </Control>
172
173 <Control Id="Description2" Type="Text" X="135" Y="95" Width="220" Height="130" Transparent="yes" NoPrefix="yes">
174 <Text Value="!(loc.WrongSerialDlg_Desc2)" />
175 </Control>
176
177 <!-- And a line for looking nice... -->
178 <Control Id="BottomLine" Type="Line" X="0" Y="234" Width="370" Height="0" />
179
180 <!-- Build number text drawn left bottom -->
181 <Control Id="Build" Type="Text" X="20" Y="247" Width="220" Height="10" Transparent="yes" NoPrefix="yes">
182 <Text Value="[Version_text] $(var.Property_Version)" />
183 </Control>
184
185 <Control Id="Back" Type="PushButton" X="236" Y="243" Width="56" Height="17" Default="yes" Text="!(loc.ButtonText_Back)" />
186
187 <!-- Canceling will bring up a confirmation dialog ('SpawnDialog' attribute) -->
188 <Control Id="Cancel" Type="PushButton" X="304" Y="243" Width="56" Height="17" Cancel="yes" Text="!(loc.ButtonText_Cancel)">
189 <Publish Event="SpawnDialog" Value="VBoxCancelDlg" />
190 </Control>
191
192 </Dialog>
193
194 <!-- Shows a dialog which tells the user that the chosen installation directory is invalid and therefore cannot be used. -->
195 <Dialog Id="VBoxInvalidTargetDirDlg" Width="370" Height="270" Title="[ProductName] !(loc.Setup)" NoMinimize="yes">
196
197 <!-- The wizard has a bitmap as background. The source is defined as a property below. -->
198 <Control Id="Bitmap" Type="Bitmap" X="0" Y="0" Width="370" Height="234" TabSkip="no" Text="[DialogBitmap]" />
199
200 <!-- Title text drawn on the background -->
201 <Control Id="Title" Type="Text" X="135" Y="20" Width="220" Height="60" Transparent="yes" NoPrefix="yes">
202 <Text Value="{\DlgInvalidSerial}!(loc.InvalidTargetDirDlg_Header)" />
203 </Control>
204
205 <!-- Text saying what we gonna do -->
206 <Control Id="Description" Type="Text" X="135" Y="70" Width="220" Height="130" Transparent="yes" NoPrefix="yes">
207 <Text Value="!(loc.InvalidTargetDirDlg_Desc1)" />
208 </Control>
209
210 <Control Id="Description2" Type="Text" X="135" Y="95" Width="220" Height="130" Transparent="yes" NoPrefix="yes">
211 <Text Value="!(loc.InvalidTargetDirDlg_Desc2)" />
212 </Control>
213
214 <!-- And a line for looking nice... -->
215 <Control Id="BottomLine" Type="Line" X="0" Y="234" Width="370" Height="0" />
216
217 <!-- Build number text drawn left bottom -->
218 <Control Id="Build" Type="Text" X="20" Y="247" Width="220" Height="10" Transparent="yes" NoPrefix="yes">
219 <Text Value="[Version_text] $(var.Property_Version)" />
220 </Control>
221
222 <Control Id="Back" Type="PushButton" X="236" Y="243" Width="56" Height="17" Default="yes" Text="!(loc.ButtonText_Back)" />
223
224 <!-- Canceling will bring up a confirmation dialog ('SpawnDialog' attribute) -->
225 <Control Id="Cancel" Type="PushButton" X="304" Y="243" Width="56" Height="17" Cancel="yes" Text="!(loc.ButtonText_Cancel)">
226 <Publish Event="SpawnDialog" Value="VBoxCancelDlg" />
227 </Control>
228
229 </Dialog>
230
231 <!-- Dialog used to set another installation path. This is taken from the tutorial template on the web and can also be
232 used for package selection etc. if necessary after some tweaking. -->
233 <Dialog Id="VBoxCustomizeDlg" Width="370" Height="270" Title="[ProductName] !(loc.Setup)" NoMinimize="yes" TrackDiskSpace="yes">
234 <Control Id="BannerBitmap" Type="Bitmap" X="0" Y="0" Width="370" Height="44" TabSkip="no" Text="[BannerBitmap]" />
235 <Control Id="BannerLine" Type="Line" X="0" Y="44" Width="370" Height="0" />
236 <Control Id="Title" Type="Text" X="15" Y="6" Width="200" Height="15" Transparent="yes" NoPrefix="yes">
237 <Text Value="[DlgTitleFont]!(loc.CustomizeDlg_CustomSetup)" />
238 </Control>
239 <Control Id="Description" Type="Text" X="25" Y="23" Width="280" Height="15" Transparent="yes" NoPrefix="yes">
240 <Text Value="!(loc.CustomizeDlg_SelFeatures)" />
241 </Control>
242 <Control Id="Text" Type="Text" X="25" Y="55" Width="320" Height="20">
243 <Text Value="!(loc.CustomizeDlg_IconTree)" />
244 </Control>
245 <Control Id="Tree" Type="SelectionTree" X="25" Y="85" Width="175" Height="95" Property="VBOX_TARGET_DIR" Sunken="yes" TabSkip="no" Text="Tree of selections" />
246 <Control Id="Browse" Type="PushButton" X="304" Y="200" Width="56" Height="17" Text="!(loc.ButtonText_Browse)" HideCondition="Installed">
247 <Publish Event="SelectionBrowse" Value="VBoxBrowseDlg" />
248
249 </Control>
250 <Control Id="DiskCost" Type="PushButton" X="111" Y="243" Width="56" Height="17">
251 <Text Value="!(loc.CustomizeDlg_DiskUsage)" />
252 <Publish Event="SpawnDialog" Value="VBoxDiskCostDlg" />
253 <Subscribe Event="SelectionNoItems" Attribute="Enabled" />
254 </Control>
255 <Control Id="Box" Type="GroupBox" X="210" Y="81" Width="140" Height="98" />
256 <Control Id="ItemDescription" Type="Text" X="215" Y="90" Width="131" Height="30">
257 <Text Value="!(loc.CustomizeDlg_SelItemDesc)" />
258 <Subscribe Event="SelectionDescription" Attribute="Text" />
259 </Control>
260 <Control Id="ItemSize" Type="Text" X="215" Y="130" Width="131" Height="45">
261 <Text Value="!(loc.CustomizeDlg_SelItemSize)" />
262 <Subscribe Event="SelectionSize" Attribute="Text" />
263 </Control>
264 <Control Id="Location" Type="Text" X="75" Y="200" Width="215" Height="20" HideCondition="Installed">
265 <Text Value="!(loc.CustomizeDlg_SelItemPath)" />
266 <Subscribe Event="SelectionPath" Attribute="Text" />
267 <Subscribe Event="SelectionPathOn" Attribute="Visible" />
268
269 </Control>
270 <Control Id="LocationLabel" Type="Text" X="25" Y="200" Width="50" Height="10" Text="!(loc.CustomizeDlg_Location)" HideCondition="Installed">
271 <Subscribe Event="SelectionPathOn" Attribute="Visible" />
272
273 </Control>
274
275 <Control Id="Back" Type="PushButton" X="180" Y="243" Width="56" Height="17" Text="!(loc.ButtonText_Back)" />
276 <Control Id="Next" Type="PushButton" X="236" Y="243" Width="56" Height="17" Default="yes" Text="!(loc.ButtonText_Next)">
277 <Subscribe Event="SelectionNoItems" Attribute="Enabled" />
278 </Control>
279 <Control Id="Cancel" Type="PushButton" X="304" Y="243" Width="56" Height="17" Cancel="yes" Text="!(loc.ButtonText_Cancel)">
280 <Publish Event="SpawnDialog" Value="VBoxCancelDlg" />
281 </Control>
282
283 <!-- Build number text drawn left bottom -->
284 <Control Id="BottomLine" Type="Line" X="0" Y="234" Width="370" Height="0" />
285 <Control Id="Build" Type="Text" X="20" Y="247" Width="220" Height="10" Transparent="yes" NoPrefix="yes">
286 <Text Value="[Version_text] $(var.Property_Version)" />
287 </Control>
288 </Dialog>
289
290 <!-- Dialog for selection network adapters type (NDIS5 or NDIS6) -->
291 <RadioButtonGroup Property="NETWORKTYPE">
292 <RadioButton Text="!(loc.SelectionNetworkTypeDlg_RadioButtonNDIS5)" Value="NDIS5" X="5" Y="0" Width="120" Height="20" />
293 <RadioButton Text="!(loc.SelectionNetworkTypeDlg_RadioButtonNDIS6)" Value="NDIS6" X="5" Y="20" Width="120" Height="20" />
294 </RadioButtonGroup>
295
296 <Dialog Id="VBoxSelectionNetworkTypeDlg" Width="370" Height="270" Title="[ProductName] !(loc.Setup)" NoMinimize="yes">
297 <Control Id="BannerBitmap" Type="Bitmap" X="0" Y="0" Width="370" Height="44" TabSkip="no" Text="[BannerBitmap]" />
298 <Control Id="BannerLine" Type="Line" X="0" Y="44" Width="370" Height="0" />
299 <Control Id="Title" Type="Text" X="15" Y="6" Width="220" Height="40" Transparent="yes" NoPrefix="yes">
300 <Text Value="[DlgTitleFont]!(loc.CustomizeDlg_CustomSetup)" />
301 </Control>
302 <Control Id="Description" Type="Text" X="25" Y="23" Width="220" Height="20" Transparent="yes" NoPrefix="yes">
303 <Text Value="!(loc.CustomizeDlg_SelFeatures)" />
304 </Control>
305
306 <Control Id="CommonDescription" Type="Text" X="25" Y="55" Width="325" Height="20" Transparent="yes" NoPrefix="yes">
307 <Text Value="!(loc.SelectionNetworkTypeDlg_CommonDescription)" />
308 </Control>
309
310 <!-- The radio button group used for choosing NDIS5 or NDIS6 network drivers -->
311 <Control Id="Buttons" Type="RadioButtonGroup" X="25" Y="100" Width="130" Height="60" Property="NETWORKTYPE" />
312
313 <!-- Description text -->
314 <Control Id="DescriptionNDIS5" Type="Text" X="200" Y="105" Width="150" Height="60" Transparent="yes" NoPrefix="yes" HideCondition="NETWORKTYPE = &quot;NDIS6&quot;" ShowCondition="NETWORKTYPE = &quot;NDIS5&quot;">
315 <Text Value="!(loc.SelectionNetworkTypeDlg_DescriptionNDIS5)" />
316
317
318 </Control>
319 <Control Id="DescriptionNDIS6" Type="Text" X="200" Y="105" Width="150" Height="60" Transparent="yes" NoPrefix="yes" HideCondition="NETWORKTYPE = &quot;NDIS5&quot;" ShowCondition="NETWORKTYPE = &quot;NDIS6&quot;">
320 <Text Value="!(loc.SelectionNetworkTypeDlg_DescriptionNDIS6)" />
321
322
323 </Control>
324
325 <Control Id="Next" Type="PushButton" X="236" Y="243" Width="56" Height="17" Default="yes" Cancel="yes" Text="!(loc.ButtonText_Next)" />
326 <Control Id="Back" Type="PushButton" X="180" Y="243" Width="56" Height="17" Text="!(loc.ButtonText_Back)" />
327 <Control Id="Cancel" Type="PushButton" X="304" Y="243" Width="56" Height="17" Text="!(loc.ButtonText_Cancel)">
328 <Publish Event="SpawnDialog" Value="VBoxCancelDlg" />
329 </Control>
330
331 <!-- Build number text drawn left bottom -->
332 <Control Id="BottomLine" Type="Line" X="0" Y="234" Width="370" Height="0" />
333 <Control Id="Build" Type="Text" X="20" Y="247" Width="220" Height="10" Transparent="yes" NoPrefix="yes">
334 <Text Value="[Version_text] $(var.Property_Version)" />
335 </Control>
336 </Dialog>
337
338 <Dialog Id="VBoxCustomize2Dlg" Width="370" Height="270" Title="[ProductName] !(loc.Setup)" NoMinimize="yes">
339 <Control Id="BannerBitmap" Type="Bitmap" X="0" Y="0" Width="370" Height="44" TabSkip="no" Text="[BannerBitmap]" />
340 <Control Id="BannerLine" Type="Line" X="0" Y="44" Width="370" Height="0" />
341 <Control Id="Title" Type="Text" X="15" Y="6" Width="220" Height="40" Transparent="yes" NoPrefix="yes">
342 <Text Value="[DlgTitleFont]!(loc.CustomizeDlg_CustomSetup)" />
343 </Control>
344 <Control Id="Description" Type="Text" X="25" Y="23" Width="220" Height="20" Transparent="yes" NoPrefix="yes">
345 <Text Value="!(loc.CustomizeDlg_SelFeatures)" />
346 </Control>
347 <Control Id="Text" Type="Text" X="25" Y="70" Width="320" Height="20">
348 <Text Value="!(loc.Customize2Dlg_Desc)" />
349 </Control>
350<?if $(env.VBOX_WITH_QTGUI) = "yes" ?>
351 <!-- Note the gray background behind the checkboxes. Unfortunately there's no easy way to
352 fix this, without fixing it in the WiX source code. Because the control's background
353 uses the default dialog background color, changing the background image for the dialog to
354 match won't really solve anything. It would still look out of place on different versions
355 of Windows that use other default background colors, and on the machines of users that
356 change their Windows color scheme.
357 Also see: http://osdir.com/ml/windows.devel.wix.user/2005-02/msg00300.html -->
358 <Control Id="StartMenuEntriesCheckBox" Type="CheckBox" X="25" Y="95" Width="200" Height="17" Property="VBOX_INSTALLSTARTMENUENTRIES" CheckBoxValue="1" Default="no">
359 <Text Value="!(loc.Customize2Dlg_CreateStartMenuEntries)" />
360 </Control>
361 <Control Id="DesktopShortcutCheckBox" Type="CheckBox" X="25" Y="115" Width="200" Height="17" Property="VBOX_INSTALLDESKTOPSHORTCUT" CheckBoxValue="1" Default="no">
362 <Text Value="!(loc.Customize2Dlg_CreateDesktopShortcut)" />
363 </Control>
364 <Control Id="QuicklaunchShortcutCheckBox" Type="CheckBox" X="25" Y="135" Width="200" Height="17" Property="VBOX_INSTALLQUICKLAUNCHSHORTCUT" CheckBoxValue="1" Default="no">
365 <Text Value="!(loc.Customize2Dlg_CreateQuickLaunch)" />
366 </Control>
367 <Control Id="RegisterFileExtensionsCheckBox" Type="CheckBox" X="25" Y="155" Width="200" Height="17" Property="VBOX_REGISTERFILEEXTENSIONS" CheckBoxValue="1" Default="no">
368 <Text Value="!(loc.Customize2Dlg_RegisterFileExtensions)" />
369 </Control>
370<?endif?> <!-- VBOX_WITH_QTGUI -->
371 <Control Id="Next" Type="PushButton" X="236" Y="243" Width="56" Height="17" Default="yes" Text="!(loc.ButtonText_Next)" />
372 <Control Id="Back" Type="PushButton" X="180" Y="243" Width="56" Height="17" Text="!(loc.ButtonText_Back)" />
373
374 <!-- Build number text drawn left bottom -->
375 <Control Id="BottomLine" Type="Line" X="0" Y="234" Width="370" Height="0" />
376 <Control Id="Build" Type="Text" X="20" Y="247" Width="220" Height="10" Transparent="yes" NoPrefix="yes">
377 <Text Value="[Version_text] $(var.Property_Version)" />
378 </Control>
379 </Dialog>
380
381 <Dialog Id="VBoxWarnDisconNetIfacesDlg" Width="370" Height="270" Title="[ProductName] [Setup]" NoMinimize="yes">
382
383 <!-- The wizard has a bitmap as background. The source is defined as a property below. -->
384 <Control Id="Bitmap" Type="Bitmap" X="0" Y="0" Width="370" Height="234" TabSkip="no" Text="[DialogBitmap]" />
385
386 <!-- Title text drawn on the background -->
387 <Control Id="Title" Type="Text" X="135" Y="20" Width="220" Height="60" Transparent="yes" NoPrefix="yes">
388 <Text Value="{\DlgWarnDisconNetIfaces}!(loc.WarnDisconNetIfacesDlg_Title)" />
389 </Control>
390
391 <Control Id="Title2" Type="Text" X="135" Y="40" Width="220" Height="60" Transparent="yes" NoPrefix="yes">
392 <Text Value="{\DlgWarnDisconNetIfaces}!(loc.WarnDisconNetIfacesDlg_Title2)" />
393 </Control>
394
395 <!-- Text saying what we gonna do -->
396 <Control Id="Description" Type="Text" X="135" Y="70" Width="220" Height="130" Transparent="yes" NoPrefix="yes">
397 <Text Value="!(loc.WarnDisconNetIfacesDlg_Desc)" />
398 </Control>
399
400 <Control Id="Description2" Type="Text" X="135" Y="115" Width="220" Height="130" Transparent="yes" NoPrefix="yes">
401 <Text Value="!(loc.WarnDisconNetIfacesDlg_Question)" />
402 </Control>
403
404 <!-- And a line for looking nice... -->
405 <Control Id="BottomLine" Type="Line" X="0" Y="234" Width="370" Height="0" />
406
407 <!-- Build number text drawn left bottom -->
408 <Control Id="Build" Type="Text" X="20" Y="247" Width="220" Height="10" Transparent="yes" NoPrefix="yes">
409 <Text Value="[Version_text] $(var.Property_Version)" />
410 </Control>
411
412 <Control Id="Next" Type="PushButton" X="236" Y="243" Width="56" Height="17" Default="yes" Text="!(loc.ButtonText_Yes)" />
413 <Control Id="Cancel" Type="PushButton" X="304" Y="243" Width="56" Height="17" Cancel="yes" Text="!(loc.ButtonText_No)">
414 <Publish Event="SpawnDialog" Value="VBoxCancelDlg" />
415 </Control>
416
417 </Dialog>
418
419 <Dialog Id="VBoxWarnPythonDlg" Width="370" Height="270" Title="[ProductName] [Setup]" NoMinimize="yes">
420
421 <!-- The wizard has a bitmap as background. The source is defined as a property below. -->
422 <Control Id="Bitmap" Type="Bitmap" X="0" Y="0" Width="370" Height="234" TabSkip="no" Text="[DialogBitmap]" />
423
424 <!-- Title text drawn on the background -->
425 <Control Id="Title" Type="Text" X="135" Y="20" Width="220" Height="60" Transparent="yes" NoPrefix="yes">
426 <Text Value="{\DlgWarnPython}!(loc.WarnPythonDlg_Title)" />
427 </Control>
428
429 <Control Id="Title2" Type="Text" X="135" Y="40" Width="220" Height="60" Transparent="yes" NoPrefix="yes">
430 <Text Value="{\DlgWarnPython}!(loc.WarnPythonDlg_Title2)" />
431 </Control>
432
433 <!-- Text saying what we gonna do -->
434 <Control Id="Description" Type="Text" X="135" Y="70" Width="220" Height="130" Transparent="yes" NoPrefix="yes">
435 <Text Value="!(loc.WarnPythonDlg_Desc)" />
436 </Control>
437
438 <Control Id="Description2" Type="Text" X="135" Y="115" Width="220" Height="130" Transparent="yes" NoPrefix="yes">
439 <Text Value="!(loc.WarnPythonDlg_Desc2)" />
440 </Control>
441
442 <Control Id="Description3" Type="Text" X="135" Y="160" Width="220" Height="130" Transparent="yes" NoPrefix="yes">
443 <Text Value="!(loc.WarnPythonDlg_Question)" />
444 </Control>
445
446 <!-- And a line for looking nice... -->
447 <Control Id="BottomLine" Type="Line" X="0" Y="234" Width="370" Height="0" />
448
449 <!-- Build number text drawn left bottom -->
450 <Control Id="Build" Type="Text" X="20" Y="247" Width="220" Height="10" Transparent="yes" NoPrefix="yes">
451 <Text Value="[Version_text] $(var.Property_Version)" />
452 </Control>
453
454 <Control Id="Next" Type="PushButton" X="236" Y="243" Width="56" Height="17" Default="yes" Text="!(loc.ButtonText_Yes)" />
455 <Control Id="Cancel" Type="PushButton" X="304" Y="243" Width="56" Height="17" Cancel="yes" Text="!(loc.ButtonText_No)">
456 <Publish Event="SpawnDialog" Value="VBoxCancelDlg" />
457 </Control>
458
459 </Dialog>
460
461 <Dialog Id="VBoxDiskCostDlg" Width="370" Height="270" Title="[ProductName] !(loc.Setup)" NoMinimize="yes">
462 <Control Id="OK" Type="PushButton" X="304" Y="243" Width="56" Height="17" Default="yes" Cancel="yes" Text="!(loc.ButtonText_OK)">
463 <Publish Event="EndDialog" Value="Return" />
464 </Control>
465 <Control Id="BannerBitmap" Type="Bitmap" X="0" Y="0" Width="370" Height="44" TabSkip="no" Text="[BannerBitmap]" />
466 <Control Id="Description" Type="Text" X="20" Y="20" Width="280" Height="20" Transparent="yes" NoPrefix="yes">
467 <Text Value="!(loc.DiskCostDlg_SpaceRequired)" />
468 </Control>
469 <Control Id="Text" Type="Text" X="20" Y="53" Width="330" Height="40">
470 <Text Value="!(loc.DiskCostDlg_NotEnoughSpace)" />
471 </Control>
472 <Control Id="BottomLine" Type="Line" X="0" Y="234" Width="370" Height="0" />
473 <Control Id="Title" Type="Text" X="15" Y="6" Width="200" Height="15" Transparent="yes" NoPrefix="yes">
474 <Text Value="[DlgTitleFont]!(loc.DiskCostDlg_SpaceRequirements)" />
475 </Control>
476 <Control Id="BannerLine" Type="Line" X="0" Y="44" Width="370" Height="0" />
477 <Control Id="VolumeList" Type="VolumeCostList" X="20" Y="100" Width="330" Height="120" Sunken="yes" Fixed="yes" Remote="yes">
478 <Text Value="!(loc.DiskCostDlg_VolumeList)" />
479 </Control>
480 </Dialog>
481
482 <!-- Dialog used to change the installation directory -->
483 <Dialog Id="VBoxBrowseDlg" Width="370" Height="270" Title="[ProductName] !(loc.Setup)" NoMinimize="yes">
484 <Control Id="PathEdit" Type="PathEdit" X="84" Y="202" Width="261" Height="18" Property="VBOX_TARGET_DIR" Indirect="yes" />
485 <Control Id="OK" Type="PushButton" X="304" Y="243" Width="56" Height="17" Default="yes" Text="!(loc.ButtonText_OK)" />
486 <Control Id="Cancel" Type="PushButton" X="240" Y="243" Width="56" Height="17" Cancel="yes" Text="!(loc.ButtonText_Cancel)" />
487 <Control Id="ComboLabel" Type="Text" X="25" Y="58" Width="44" Height="10" TabSkip="no" Text="!(loc.BrowseDlg_LookIn)" />
488 <Control Id="DirectoryCombo" Type="DirectoryCombo" X="70" Y="55" Width="220" Height="80" Property="VBOX_TARGET_DIR" Indirect="yes" Fixed="yes" Remote="yes">
489 <Subscribe Event="IgnoreChange" Attribute="IgnoreChange" />
490 </Control>
491 <Control Id="Up" Type="PushButton" X="298" Y="55" Width="19" Height="19" ToolTip="!(loc.BrowseDlg_UpOneLevelTooltip)" Icon="yes" FixedSize="yes" IconSize="16" Text="[FolderUp]">
492 <Publish Event="DirectoryListUp" Value="0" />
493 </Control>
494 <Control Id="NewFolder" Type="PushButton" X="325" Y="55" Width="19" Height="19" ToolTip="!(loc.BrowseDlg_CreateNewFolderTooltip)" Icon="yes" FixedSize="yes" IconSize="16" Text="[FolderNew]">
495 <Publish Event="DirectoryListNew" Value="0" />
496 </Control>
497 <Control Id="DirectoryList" Type="DirectoryList" X="25" Y="83" Width="320" Height="110" Property="VBOX_TARGET_DIR" Sunken="yes" Indirect="yes" TabSkip="no" />
498 <Control Id="PathLabel" Type="Text" X="25" Y="205" Width="59" Height="10" TabSkip="no" Text="!(loc.BrowseDlg_FolderName)" />
499 <Control Id="BannerBitmap" Type="Bitmap" X="0" Y="0" Width="370" Height="44" TabSkip="no" Text="[BannerBitmap]" />
500 <Control Id="Description" Type="Text" X="25" Y="23" Width="280" Height="15" Transparent="yes" NoPrefix="yes">
501 <Text Value="!(loc.BrowseDlg_BrowseDestFolder)" />
502 </Control>
503 <Control Id="BottomLine" Type="Line" X="0" Y="234" Width="370" Height="0" />
504 <Control Id="Title" Type="Text" X="15" Y="6" Width="200" Height="15" Transparent="yes" NoPrefix="yes">
505 <Text Value="[DlgTitleFont]!(loc.BrowseDlg_ChangeCurFolder)" />
506 </Control>
507 <Control Id="BannerLine" Type="Line" X="0" Y="44" Width="370" Height="0" />
508 </Dialog>
509
510 <Dialog Id="VBoxPrepareDlg" Width="370" Height="270" Title="[ProductName] !(loc.Setup)" Modeless="yes">
511 <Control Id="Cancel" Type="PushButton" X="304" Y="243" Width="56" Height="17" Default="yes" Cancel="yes" Text="!(loc.ButtonText_Cancel)">
512 <Publish Event="SpawnDialog" Value="VBoxCancelDlg" />
513 </Control>
514 <Control Id="Bitmap" Type="Bitmap" X="0" Y="0" Width="370" Height="234" TabSkip="no" Text="[DialogBitmap]" />
515 </Dialog>
516
517 <Dialog Id="VBoxVerifyReadyDlg" Width="370" Height="270" Title="[ProductName] !(loc.Setup)" NoMinimize="yes" TrackDiskSpace="yes">
518 <Control Id="BannerBitmap" Type="Bitmap" X="0" Y="0" Width="370" Height="44" TabSkip="no" Text="[BannerBitmap]" />
519 <Control Id="BannerLine" Type="Line" X="0" Y="44" Width="370" Height="0" />
520 <Control Id="Title" Type="Text" X="15" Y="6" Width="200" Height="15" Transparent="yes" NoPrefix="yes">
521 <Text Value="[DlgTitleFont]!(loc.VerifyReadyDlg_ReadyToInstall)" />
522 </Control>
523 <Control Id="Description" Type="Text" X="25" Y="23" Width="280" Height="15" Transparent="yes" NoPrefix="yes">
524 <Text Value="!(loc.VerifyReadyDlg_ReadyToBegin)" />
525 </Control>
526 <Control Id="Text" Type="Text" X="25" Y="70" Width="320" Height="80">
527 <Text Value="!(loc.VerifyReadyDlg_ClickInstall)" />
528 </Control>
529 <Control Id="BottomLine" Type="Line" X="0" Y="234" Width="370" Height="0" />
530 <Control Id="Install" Type="PushButton" X="236" Y="243" Width="56" Height="17" Default="yes" Text="!(loc.ButtonText_Install)">
531 <Publish Event="EndDialog" Value="Return" Condition="OutOfDiskSpace &lt;&gt; 1" />
532 <Publish Event="SpawnDialog" Value="VBoxOutOfRbDiskDlg" Condition="OutOfDiskSpace = 1 AND OutOfNoRbDiskSpace = 0 AND (PROMPTROLLBACKCOST=&quot;P&quot; OR NOT PROMPTROLLBACKCOST)" />
533 <Publish Event="EndDialog" Value="Return" Condition="OutOfDiskSpace = 1 AND OutOfNoRbDiskSpace = 0 AND PROMPTROLLBACKCOST=&quot;D&quot;" />
534 <Publish Event="EnableRollback" Value="False" Condition="OutOfDiskSpace = 1 AND OutOfNoRbDiskSpace = 0 AND PROMPTROLLBACKCOST=&quot;D&quot;" />
535 <Publish Event="SpawnDialog" Value="VBoxOutOfDiskDlg" Condition="(OutOfDiskSpace = 1 AND OutOfNoRbDiskSpace = 1) OR (OutOfDiskSpace = 1 AND PROMPTROLLBACKCOST=&quot;F&quot;)" />
536 </Control>
537 <Control Id="Back" Type="PushButton" X="180" Y="243" Width="56" Height="17" Text="!(loc.ButtonText_Back)" />
538 <Control Id="Cancel" Type="PushButton" X="304" Y="243" Width="56" Height="17" Cancel="yes" Text="!(loc.ButtonText_Cancel)">
539 <Publish Event="SpawnDialog" Value="VBoxCancelDlg" />
540 </Control>
541
542 <!-- Build number text drawn left bottom -->
543 <Control Id="Build" Type="Text" X="20" Y="247" Width="220" Height="10" Transparent="yes" NoPrefix="yes">
544 <Text Value="[Version_text] $(var.Property_Version)" />
545 </Control>
546 </Dialog>
547
548 <!-- This dialog is called after successful installation -->
549 <Dialog Id="VBoxExitDlg" Width="370" Height="270" Title="[ProductName] !(loc.Setup)" NoMinimize="yes">
550 <Control Id="Finish" Type="PushButton" X="236" Y="243" Width="56" Height="17" Default="yes" Cancel="yes" Text="!(loc.ButtonText_Finish)">
551<?if $(env.VBOX_WITH_QTGUI) = "yes" ?> <!-- Only expose action to start VirtualBox if we also ship FE/Qt with it. -->
552 <Publish Event="DoAction" Value="ca_StartVBox" Condition="VBOX_START" />
553<?endif?>
554 <Publish Event="EndDialog" Value="Return" />
555 </Control>
556
557 <!-- Build number text drawn left bottom -->
558 <Control Id="Build" Type="Text" X="20" Y="247" Width="220" Height="10" Transparent="yes" NoPrefix="yes">
559 <Text Value="[Version_text] $(var.Property_Version)" />
560 </Control>
561
562 <Control Id="Cancel" Type="PushButton" X="304" Y="243" Width="56" Height="17" Disabled="yes" Text="!(loc.ButtonText_Cancel)" />
563 <Control Id="Bitmap" Type="Bitmap" X="0" Y="0" Width="370" Height="234" TabSkip="no" Text="[DialogBitmap]" />
564 <Control Id="Back" Type="PushButton" X="180" Y="243" Width="56" Height="17" Disabled="yes" Text="!(loc.ButtonText_Back)" />
565 <Control Id="Description" Type="Text" X="135" Y="70" Width="220" Height="20" Transparent="yes" NoPrefix="yes">
566 <Text Value="!(loc.ExitDlg_ClickFinish)" />
567 </Control>
568
569 <!-- Only show the checkbox to start VirtualBox if we also ship FE/Qt with it. -->
570<?if $(env.VBOX_WITH_QTGUI) = "yes" ?>
571 <!-- Note the gray background behind the checkboxes. Unfortunately there's no easy way to
572 fix this, without fixing it in the WiX source code. Because the control's background
573 uses the default dialog background color, changing the background image for the dialog to
574 match won't really solve anything. It would still look out of place on different versions
575 of Windows that use other default background colors, and on the machines of users that
576 change their Windows color scheme.
577 Also see: http://osdir.com/ml/windows.devel.wix.user/2005-02/msg00300.html -->
578 <Control Id="StartVBoxCheckBox" Type="CheckBox" X="135" Y="115" Width="200" Height="17" Property="VBOX_START" CheckBoxValue="1" Default="no"
579 HideCondition="(InstallMode=&quot;Repair&quot;) OR (InstallMode=&quot;Remove&quot;) OR (InstallMode=&quot;Change&quot;)">
580 <Text Value="!(loc.ExitDlg_StartVBox)" />
581
582 </Control>
583<?endif?>
584 <Control Id="BottomLine" Type="Line" X="0" Y="234" Width="370" Height="0" />
585 <Control Id="Title" Type="Text" X="135" Y="20" Width="220" Height="60" Transparent="yes" NoPrefix="yes">
586 <Text Value="{\DlgVerdanaBold13}!(loc.ExitDlg_InstComplete)" />
587 </Control>
588 </Dialog>
589
590 <!-- This dialog is called via the ErrorDialog property on an installation error. -->
591 <Dialog Id="VBoxErrorDlg" ErrorDialog="yes" Width="270" Height="150" Title="[ProductName] !(loc.Setup)" NoMinimize="yes">
592 <!-- Do *not* change the control IDs in the dialog! -->
593 <Control Id="ErrorText" Type="Text" X="75" Y="20" Width="155" Height="80" TabSkip="no" NoPrefix="yes" Text="Error information text" />
594 <Control Id="Y" Type="PushButton" X="20" Y="110" Width="80" Height="18" TabSkip="yes" Text="!(loc.ButtonText_Yes)">
595 <Publish Event="EndDialog" Value="ErrorYes" />
596 </Control>
597 <Control Id="A" Type="PushButton" X="20" Y="110" Width="80" Height="18" TabSkip="yes" Text="!(loc.ButtonText_Cancel)">
598 <Publish Event="EndDialog" Value="ErrorAbort" />
599 </Control>
600 <Control Id="C" Type="PushButton" X="20" Y="110" Width="80" Height="18" TabSkip="yes" Text="!(loc.ButtonText_Cancel)">
601 <Publish Event="EndDialog" Value="ErrorCancel" />
602 </Control>
603 <Control Id="ErrorIcon" Type="Icon" X="15" Y="15" Width="24" Height="24" ToolTip="Information icon" FixedSize="yes" IconSize="32" Text="[InfoIcon]" />
604 <Control Id="I" Type="PushButton" X="20" Y="110" Width="80" Height="18" TabSkip="yes" Text="!(loc.ButtonText_Ignore)">
605 <Publish Event="EndDialog" Value="ErrorIgnore" />
606 </Control>
607 <Control Id="N" Type="PushButton" X="20" Y="110" Width="80" Height="18" TabSkip="yes" Text="!(loc.ButtonText_No)">
608 <Publish Event="EndDialog" Value="ErrorNo" />
609 </Control>
610 <Control Id="O" Type="PushButton" X="20" Y="110" Width="80" Height="18" TabSkip="yes" Text="!(loc.ButtonText_OK)">
611 <Publish Event="EndDialog" Value="ErrorOk" />
612 </Control>
613 <Control Id="R" Type="PushButton" X="20" Y="110" Width="80" Height="18" TabSkip="yes" Text="!(loc.ButtonText_Retry)">
614 <Publish Event="EndDialog" Value="ErrorRetry" />
615 </Control>
616 </Dialog>
617
618 <!-- Used to signal a fatal error in the 'OnExit="error"' fashion. -->
619 <Dialog Id="VBoxFatalErrorDlg" Width="370" Height="270" Title="[ProductName] !(loc.Setup)" NoMinimize="yes">
620 <Control Id="Finish" Type="PushButton" X="236" Y="243" Width="56" Height="17" Default="yes" Cancel="yes" Text="!(loc.ButtonText_Finish)">
621 <Publish Event="EndDialog" Value="Exit" />
622 </Control>
623 <Control Id="Cancel" Type="PushButton" X="304" Y="243" Width="56" Height="17" Disabled="yes" Text="!(loc.ButtonText_Cancel)" />
624 <Control Id="Bitmap" Type="Bitmap" X="0" Y="0" Width="370" Height="234" TabSkip="no" Text="[DialogBitmap]" />
625 <Control Id="Back" Type="PushButton" X="180" Y="243" Width="56" Height="17" Disabled="yes" Text="!(loc.ButtonText_Back)" />
626 <Control Id="BottomLine" Type="Line" X="0" Y="234" Width="370" Height="0" />
627 <Control Id="Title" Type="Text" X="135" Y="20" Width="220" Height="60" Transparent="yes" NoPrefix="yes" Text="!(loc.FatalErrorTitle)" />
628 <Control Id="Description" Type="Text" X="135" Y="70" Width="220" Height="80" Transparent="yes" NoPrefix="yes" Text="!(loc.FatalErrorDescription1) !(loc.FatalErrorDescription2)" />
629 <Control Id="Build" Type="Text" X="20" Y="247" Width="220" Height="10" Transparent="yes" NoPrefix="yes">
630 <Text Value="[Version_text] $(var.Property_Version)" />
631 </Control>
632 </Dialog>
633
634 <Dialog Id="FilesInUse" Width="370" Height="270" Title="[ProductName] !(loc.Setup)" KeepModeless="yes">
635 <Control Id="Retry" Type="PushButton" X="304" Y="243" Width="56" Height="17" Default="yes" Cancel="yes" Text="!(loc.ButtonText_Retry)">
636 <Publish Event="EndDialog" Value="Retry" />
637 </Control>
638 <!-- Currently we don't want to let the users ignore a running VirtualBox installation, as this
639 will result in an unstable mix of the old and new installation until a reboot is performed. See #9139.
640 <Control Id="Ignore" Type="PushButton" X="235" Y="243" Width="56" Height="17" Text="!(loc.ButtonText_Ignore)">
641 <Publish Event="EndDialog" Value="Ignore">1</Publish>
642 </Control>
643 -->
644 <Control Id="Exit" Type="PushButton" X="235" Y="243" Width="56" Height="17" Text="!(loc.ButtonText_Exit)">
645 <Publish Event="EndDialog" Value="Exit" />
646 </Control>
647 <Control Id="BannerBitmap" Type="Bitmap" X="0" Y="0" Width="370" Height="44" TabSkip="no" Text="[BannerBitmap]" />
648 <Control Id="Text" Type="Text" X="20" Y="55" Width="330" Height="50" Text="!(loc.FilesInUse_Text)" />
649 <Control Id="BannerLine" Type="Line" X="0" Y="44" Width="370" Height="0" />
650 <Control Id="BottomLine" Type="Line" X="0" Y="234" Width="370" Height="0" />
651 <Control Id="Description" Type="Text" X="20" Y="23" Width="280" Height="20" Transparent="yes" NoPrefix="yes" Text="!(loc.FilesInUse_Description)" />
652 <Control Id="Title" Type="Text" X="15" Y="6" Width="200" Height="15" Transparent="yes" NoPrefix="yes" Text="[DlgTitleFont]!(loc.FilesInUse_Title)" />
653 <Control Id="List" Type="ListBox" X="20" Y="107" Width="330" Height="130" Property="FileInUseProcess" Sunken="yes" TabSkip="yes" />
654 </Dialog>
655
656 <!-- This dialog is shown if the user interrupts the installation process -->
657 <Dialog Id="VBoxUserExitDlg" Width="370" Height="270" Title="[ProductName] !(loc.Setup)" NoMinimize="yes">
658 <Control Id="Finish" Type="PushButton" X="236" Y="243" Width="56" Height="17" Default="yes" Cancel="yes" Text="!(loc.ButtonText_Finish)">
659 <Publish Event="EndDialog" Value="Exit" />
660 </Control>
661 <!-- Build number text drawn left bottom -->
662 <Control Id="Build" Type="Text" X="20" Y="247" Width="220" Height="10" Transparent="yes" NoPrefix="yes">
663 <Text Value="[Version_text] $(var.Property_Version)" />
664 </Control>
665
666 <Control Id="Cancel" Type="PushButton" X="304" Y="243" Width="56" Height="17" Disabled="yes" Text="!(loc.ButtonText_Cancel)" />
667 <Control Id="Bitmap" Type="Bitmap" X="0" Y="0" Width="370" Height="234" TabSkip="no" Text="[DialogBitmap]" />
668 <Control Id="Back" Type="PushButton" X="180" Y="243" Width="56" Height="17" Disabled="yes" Text="!(loc.ButtonText_Back)" />
669 <Control Id="BottomLine" Type="Line" X="0" Y="234" Width="370" Height="0" />
670 <Control Id="Title" Type="Text" X="135" Y="20" Width="220" Height="60" Transparent="yes" NoPrefix="yes">
671 <Text Value="{\DlgVerdanaBold13}!(loc.UserExitDlg_Header)" />
672 </Control>
673 <Control Id="Description1" Type="Text" X="135" Y="70" Width="220" Height="40" Transparent="yes" NoPrefix="yes">
674 <Text Value="!(loc.UserExitDlg_Desc)" />
675 </Control>
676 <Control Id="Description2" Type="Text" X="135" Y="115" Width="220" Height="20" Transparent="yes" NoPrefix="yes">
677 <Text Value="!(loc.UserExitDlg_Footer)" />
678 </Control>
679 </Dialog>
680
681 <!-- Progress dialog shown during file copying and other lengthy operations -->
682 <Dialog Id="VBoxProgressDlg" Width="370" Height="270" Title="[ProductName] !(loc.Setup)" Modeless="yes">
683 <Control Id="Cancel" Type="PushButton" X="304" Y="243" Width="56" Height="17" Default="yes" Cancel="yes" Text="!(loc.ButtonText_Cancel)">
684 <Publish Event="SpawnDialog" Value="VBoxCancelDlg" />
685 </Control>
686
687 <!-- Build number text drawn left bottom -->
688 <Control Id="Build" Type="Text" X="20" Y="247" Width="220" Height="10" Transparent="yes" NoPrefix="yes">
689 <Text Value="[Version_text] $(var.Property_Version)" />
690 </Control>
691
692 <Control Id="BannerBitmap" Type="Bitmap" X="0" Y="0" Width="370" Height="44" TabSkip="no" Text="[BannerBitmap]" />
693 <Control Id="Back" Type="PushButton" X="180" Y="243" Width="56" Height="17" Disabled="yes" Text="!(loc.ButtonText_Back)" />
694 <Control Id="Next" Type="PushButton" X="236" Y="243" Width="56" Height="17" Disabled="yes" Text="!(loc.ButtonText_Next)" />
695 <Control Id="ActionText" Type="Text" X="70" Y="100" Width="265" Height="10">
696 <Subscribe Event="ActionText" Attribute="Text" />
697 </Control>
698 <Control Id="Text" Type="Text" X="35" Y="65" Width="300" Height="20">
699 <Text Value="!(loc.ProgressDlg_PleaseWait)" />
700 </Control>
701 <Control Id="BottomLine" Type="Line" X="0" Y="234" Width="370" Height="0" />
702 <Control Id="Title" Type="Text" X="20" Y="15" Width="200" Height="15" Transparent="yes" NoPrefix="yes">
703 <Text Value="[DlgTitleFont][Progress1] [ProductName]" />
704 </Control>
705 <Control Id="BannerLine" Type="Line" X="0" Y="44" Width="370" Height="0" />
706 <Control Id="ProgressBar" Type="ProgressBar" X="35" Y="115" Width="300" Height="10" ProgressBlocks="yes" Text="Progress done">
707 <Subscribe Event="SetProgress" Attribute="Progress" />
708 </Control>
709 <Control Id="StatusLabel" Type="Text" X="35" Y="100" Width="35" Height="10" Text="Status:" />
710 </Dialog>
711
712 <Dialog Id="VBoxResumeDlg" Width="370" Height="270" Title="[ProductName] !(loc.Setup)" NoMinimize="yes">
713 <Control Id="Install" Type="PushButton" X="236" Y="243" Width="56" Height="17" Default="yes" Text="!(loc.ButtonText_Install)">
714 <Publish Event="SpawnWaitDialog" Value="VBoxWaitForCostingDlg" Condition="CostingComplete = 1" />
715 <Publish Event="EndDialog" Value="Return" Condition="OutOfDiskSpace &lt;&gt; 1" />
716 <Publish Event="SpawnDialog" Value="VBoxOutOfRbDiskDlg" Condition="OutOfDiskSpace = 1 AND OutOfNoRbDiskSpace = 0 AND (PROMPTROLLBACKCOST=&quot;P&quot; OR NOT PROMPTROLLBACKCOST)" />
717 <Publish Event="EndDialog" Value="Return" Condition="OutOfDiskSpace = 1 AND OutOfNoRbDiskSpace = 0 AND PROMPTROLLBACKCOST=&quot;D&quot;" />
718 <Publish Event="EnableRollback" Value="False" Condition="OutOfDiskSpace = 1 AND OutOfNoRbDiskSpace = 0 AND PROMPTROLLBACKCOST=&quot;D&quot;" />
719 <Publish Event="SpawnDialog" Value="VBoxOutOfDiskDlg" Condition="(OutOfDiskSpace = 1 AND OutOfNoRbDiskSpace = 1) OR (OutOfDiskSpace = 1 AND PROMPTROLLBACKCOST=&quot;F&quot;)" />
720 </Control>
721
722 <!-- Build number text drawn left bottom -->
723 <Control Id="Cancel" Type="PushButton" X="304" Y="243" Width="56" Height="17" Cancel="yes" Text="!(loc.ButtonText_Cancel)">
724 <Publish Event="SpawnDialog" Value="VBoxCancelDlg" />
725 </Control>
726 <Control Id="Bitmap" Type="Bitmap" X="0" Y="0" Width="370" Height="234" TabSkip="no" Text="[DialogBitmap]" />
727 <Control Id="Back" Type="PushButton" X="180" Y="243" Width="56" Height="17" Disabled="yes" Text="!(loc.ButtonText_Back)" />
728 <Control Id="Title" Type="Text" X="135" Y="20" Width="220" Height="60" Transparent="yes" NoPrefix="yes">
729 <Text Value="{\DlgVerdanaBold13}!(loc.ResumeDlg_Header)" />
730 </Control>
731 <Control Id="Description" Type="Text" X="135" Y="70" Width="220" Height="30" Transparent="yes" NoPrefix="yes">
732 <Text Value="!(loc.ResumeDlg_Desc)" />
733 </Control>
734 <Control Id="BottomLine" Type="Line" X="0" Y="234" Width="370" Height="0" />
735 <Control Id="Build" Type="Text" X="20" Y="247" Width="220" Height="10" Transparent="yes" NoPrefix="yes">
736 <Text Value="[Version_text] $(var.Property_Version)" />
737 </Control>
738 </Dialog>
739
740 <!-- This dialog is shown after the welcome page if the user restarts the MSI package on a system where the product is already installed. The user
741 may choose to repair the installation or remove it. -->
742 <Dialog Id="VBoxMaintenanceTypeDlg" Width="370" Height="270" Title="[ProductName] !(loc.Setup)" NoMinimize="yes">
743 <Control Id="RepairLabel" Type="Text" X="105" Y="90" Width="100" Height="10" TabSkip="no">
744 <Text Value="[DlgTitleFont]!(loc.MaintenanceTypeDlg_Repair)" />
745 </Control>
746 <Control Id="RepairButton" Type="PushButton" X="50" Y="90" Width="38" Height="38" ToolTip="!(loc.MaintenanceTypeDlg_RepairTooltip)" Icon="yes" FixedSize="yes" IconSize="32" Text="[RepairIcon]">
747 <Publish Property="InstallMode" Value="Repair" />
748 <Publish Property="Progress1" Value="!(loc.MaintenanceTypeDlg_RepairProgress1)" />
749 <Publish Property="Progress2" Value="!(loc.MaintenanceTypeDlg_RepairProgress2)" />
750 <Publish Event="NewDialog" Value="VBoxVerifyRepairDlg" />
751 </Control>
752 <Control Id="RemoveLabel" Type="Text" X="105" Y="163" Width="100" Height="10" TabSkip="no">
753 <Text Value="[DlgTitleFont]!(loc.MaintenanceTypeDlg_Remove)" />
754 </Control>
755 <Control Id="RemoveButton" Type="PushButton" X="50" Y="163" Width="38" Height="38" ToolTip="!(loc.MaintenanceTypeDlg_RemoveTooltip)" Icon="yes" FixedSize="yes" IconSize="32" Text="[RemoveIcon]">
756 <Publish Property="InstallMode" Value="Remove" />
757 <Publish Property="Progress1" Value="!(loc.MaintenanceTypeDlg_RemoveProgress1)" />
758 <Publish Property="Progress2" Value="!(loc.MaintenanceTypeDlg_RemoveProgress2)" />
759 <Publish Event="NewDialog" Value="VBoxVerifyRemoveDlg" />
760 </Control>
761
762 <!-- Build number text drawn left bottom -->
763 <Control Id="Build" Type="Text" X="20" Y="247" Width="220" Height="10" Transparent="yes" NoPrefix="yes">
764 <Text Value="[Version_text] $(var.Property_Version)" />
765 </Control>
766
767 <Control Id="Back" Type="PushButton" X="180" Y="243" Width="56" Height="17" Text="!(loc.ButtonText_Back)">
768 <Publish Event="NewDialog" Value="VBoxMaintenanceWelcomeDlg" />
769 </Control>
770 <Control Id="Next" Type="PushButton" X="236" Y="243" Width="56" Height="17" Disabled="yes" Text="!(loc.ButtonText_Next)" />
771 <Control Id="Cancel" Type="PushButton" X="304" Y="243" Width="56" Height="17" Cancel="yes" Text="!(loc.ButtonText_Cancel)">
772 <Publish Event="SpawnDialog" Value="VBoxCancelDlg" />
773 </Control>
774 <Control Id="BannerBitmap" Type="Bitmap" X="0" Y="0" Width="370" Height="44" TabSkip="no" Text="[BannerBitmap]" />
775 <Control Id="Description" Type="Text" X="25" Y="23" Width="280" Height="20" Transparent="yes" NoPrefix="yes">
776 <Text Value="!(loc.MaintenanceTypeDlg_SelOption)" />
777 </Control>
778 <Control Id="BottomLine" Type="Line" X="0" Y="234" Width="370" Height="0" />
779 <Control Id="Title" Type="Text" X="15" Y="6" Width="240" Height="15" Transparent="yes" NoPrefix="yes">
780 <Text Value="[DlgTitleFont]!(loc.MaintenanceTypeDlg_Header)" />
781 </Control>
782 <Control Id="BannerLine" Type="Line" X="0" Y="44" Width="370" Height="0" />
783 <Control Id="RemoveText" Type="Text" X="105" Y="176" Width="230" Height="20">
784 <Text Value="!(loc.MaintenanceTypeDlg_RemoveText)" />
785 </Control>
786 <Control Id="RepairText" Type="Text" X="105" Y="102" Width="230" Height="30">
787 <Text Value="!(loc.MaintenanceTypeDlg_RepairText)" />
788 </Control>
789 </Dialog>
790
791 <!-- This dialog is shown if the app is installed and the installation package is started again. It's the welcome
792 screen for maintenance -->
793 <Dialog Id="VBoxMaintenanceWelcomeDlg" Width="370" Height="270" Title="[ProductName] !(loc.Setup)" NoMinimize="yes">
794 <Control Id="Title" Type="Text" X="135" Y="20" Width="220" Height="60" Transparent="yes" NoPrefix="yes">
795 <Text Value="{\DlgVerdanaBold13}!(loc.MaintenanceWelcomeDlg_Header)" />
796 </Control>
797
798 <!-- Build number text drawn left bottom -->
799 <Control Id="Build" Type="Text" X="20" Y="247" Width="220" Height="10" Transparent="yes" NoPrefix="yes">
800 <Text Value="[Version_text] $(var.Property_Version)" />
801 </Control>
802
803 <Control Id="Next" Type="PushButton" X="236" Y="243" Width="56" Height="17" Default="yes" Text="!(loc.ButtonText_Next)">
804 <Publish Event="SpawnWaitDialog" Value="VBoxWaitForCostingDlg" Condition="CostingComplete = 1" />
805 <Publish Event="NewDialog" Value="VBoxMaintenanceTypeDlg" />
806 </Control>
807 <Control Id="Cancel" Type="PushButton" X="304" Y="243" Width="56" Height="17" Cancel="yes" Text="!(loc.ButtonText_Cancel)">
808 <Publish Event="SpawnDialog" Value="VBoxCancelDlg" />
809 </Control>
810 <Control Id="Bitmap" Type="Bitmap" X="0" Y="0" Width="370" Height="234" TabSkip="no" Text="[DialogBitmap]" />
811 <Control Id="Back" Type="PushButton" X="180" Y="243" Width="56" Height="17" Disabled="yes" Text="!(loc.ButtonText_Back)" />
812 <Control Id="Description" Type="Text" X="135" Y="70" Width="220" Height="60" Transparent="yes" NoPrefix="yes">
813 <Text Value="!(loc.MaintenanceWelcomeDlg_Desc)" />
814 </Control>
815 <Control Id="BottomLine" Type="Line" X="0" Y="234" Width="370" Height="0" />
816 </Dialog>
817
818 <!-- Out of disk error dialog -->
819 <Dialog Id="VBoxOutOfDiskDlg" Width="370" Height="270" Title="[ProductName] !(loc.Setup)" NoMinimize="yes">
820
821 <!-- Build number text drawn left bottom -->
822 <Control Id="Build" Type="Text" X="20" Y="247" Width="220" Height="10" Transparent="yes" NoPrefix="yes">
823 <Text Value="[Version_text] $(var.Property_Version)" />
824 </Control>
825
826 <Control Id="OK" Type="PushButton" X="304" Y="243" Width="56" Height="17" Default="yes" Cancel="yes" Text="!(loc.ButtonText_OK)">
827 <Publish Event="EndDialog" Value="Return" />
828 </Control>
829 <Control Id="BannerBitmap" Type="Bitmap" X="0" Y="0" Width="370" Height="44" TabSkip="no" Text="[BannerBitmap]" />
830 <Control Id="Description" Type="Text" X="20" Y="20" Width="280" Height="20" Transparent="yes" NoPrefix="yes">
831 <Text Value="!(loc.OutOfDiskDlg_InstallationExceeds)" />
832 </Control>
833 <Control Id="Text" Type="Text" X="20" Y="53" Width="330" Height="40">
834 <Text Value="!(loc.OutOfDiskDlg_NotEnoughDiskSpace)" />
835 </Control>
836 <Control Id="BottomLine" Type="Line" X="0" Y="234" Width="370" Height="0" />
837 <Control Id="Title" Type="Text" X="15" Y="6" Width="200" Height="15" Transparent="yes" NoPrefix="yes">
838 <Text Value="[DlgTitleFont]!(loc.OutOfDiskDlg_OutOfDiskSpace)" />
839 </Control>
840 <Control Id="BannerLine" Type="Line" X="0" Y="44" Width="370" Height="0" />
841 <Control Id="VolumeList" Type="VolumeCostList" X="20" Y="100" Width="330" Height="120" Sunken="yes" Fixed="yes" Remote="yes">
842 <Text Value="{120}{70}{70}{70}{70}" />
843 </Control>
844 </Dialog>
845
846 <Dialog Id="VBoxOutOfRbDiskDlg" Width="370" Height="270" Title="[ProductName] !(loc.Setup)" NoMinimize="yes">
847 <Control Id="No" Type="PushButton" X="304" Y="243" Width="56" Height="17" Default="yes" Cancel="yes" Text="!(loc.ButtonText_No)">
848 <Publish Event="EndDialog" Value="Return" />
849 </Control>
850 <Control Id="Yes" Type="PushButton" X="240" Y="243" Width="56" Height="17" Text="!(loc.ButtonText_Yes)">
851 <Publish Event="EnableRollback" Value="False" />
852 <Publish Event="EndDialog" Value="Return" />
853 </Control>
854 <Control Id="BannerBitmap" Type="Bitmap" X="0" Y="0" Width="370" Height="44" TabSkip="no" Text="[BannerBitmap]" />
855 <Control Id="Description" Type="Text" X="20" Y="20" Width="280" Height="20" Transparent="yes" NoPrefix="yes">
856 <Text Value="!(loc.OutOfRbDiskDlg_InstallationExceeds)" />
857 </Control>
858 <Control Id="Text" Type="Text" X="20" Y="53" Width="330" Height="40">
859 <Text Value="!(loc.OutOfRbDiskDlg_NotEnoughDiskSpace)" />
860 </Control>
861 <Control Id="BottomLine" Type="Line" X="0" Y="234" Width="370" Height="0" />
862 <Control Id="Title" Type="Text" X="15" Y="6" Width="200" Height="15" Transparent="yes" NoPrefix="yes">
863 <Text Value="[DlgTitleFont]!(loc.OutOfRbDiskDlg_OutOfDiskSpace)" />
864 </Control>
865 <Control Id="BannerLine" Type="Line" X="0" Y="44" Width="370" Height="0" />
866 <Control Id="VolumeList" Type="VolumeCostList" X="20" Y="140" Width="330" Height="80" Sunken="yes" Fixed="yes" Remote="yes" ShowRollbackCost="yes">
867 <Text Value="{120}{70}{70}{70}{70}" />
868 </Control>
869 <Control Id="Text2" Type="Text" X="20" Y="94" Width="330" Height="40">
870 <Text Value="!(loc.OutOfRbDiskDlg_Desc)" />
871 </Control>
872 </Dialog>
873
874 <Dialog Id="VBoxVerifyRemoveDlg" Width="370" Height="270" Title="[ProductName] !(loc.Setup)" NoMinimize="yes" TrackDiskSpace="yes">
875
876 <!-- Build number text drawn left bottom -->
877 <Control Id="Build" Type="Text" X="20" Y="247" Width="220" Height="10" Transparent="yes" NoPrefix="yes">
878 <Text Value="[Version_text] $(var.Property_Version)" />
879 </Control>
880
881 <Control Id="Back" Type="PushButton" X="180" Y="243" Width="56" Height="17" Default="yes" Text="!(loc.ButtonText_Back)">
882 <Publish Event="NewDialog" Value="VBoxMaintenanceTypeDlg" />
883 </Control>
884 <Control Id="Remove" Type="PushButton" X="236" Y="243" Width="56" Height="17" Text="!(loc.ButtonText_Remove)">
885 <Publish Event="Remove" Value="All" Condition="OutOfDiskSpace &lt;&gt; 1" />
886 <Publish Event="EndDialog" Value="Return" Condition="OutOfDiskSpace &lt;&gt; 1" />
887 <Publish Event="SpawnDialog" Value="VBoxOutOfRbDiskDlg" Condition="OutOfDiskSpace = 1 AND OutOfNoRbDiskSpace = 0 AND (PROMPTROLLBACKCOST=&quot;P&quot; OR NOT PROMPTROLLBACKCOST)" />
888 <Publish Event="EndDialog" Value="Return" Condition="OutOfDiskSpace = 1 AND OutOfNoRbDiskSpace = 0 AND PROMPTROLLBACKCOST=&quot;D&quot;" />
889 <Publish Event="EnableRollback" Value="False" Condition="OutOfDiskSpace = 1 AND OutOfNoRbDiskSpace = 0 AND PROMPTROLLBACKCOST=&quot;D&quot;" />
890 <Publish Event="SpawnDialog" Value="VBoxOutOfDiskDlg" Condition="(OutOfDiskSpace = 1 AND OutOfNoRbDiskSpace = 1) OR (OutOfDiskSpace = 1 AND PROMPTROLLBACKCOST=&quot;F&quot;)" />
891 </Control>
892 <Control Id="Cancel" Type="PushButton" X="304" Y="243" Width="56" Height="17" Cancel="yes" Text="!(loc.ButtonText_Cancel)">
893 <Publish Event="SpawnDialog" Value="VBoxCancelDlg" />
894 </Control>
895 <Control Id="BannerBitmap" Type="Bitmap" X="0" Y="0" Width="370" Height="44" TabSkip="no" Text="[BannerBitmap]" />
896 <Control Id="Description" Type="Text" X="25" Y="23" Width="280" Height="15" Transparent="yes" NoPrefix="yes">
897 <Text Value="!(loc.VerifyRemoveDlg_Desc)" />
898 </Control>
899 <Control Id="Text" Type="Text" X="25" Y="70" Width="320" Height="30">
900 <Text Value="!(loc.VerifyRemoveDlg_ClickRemove)" />
901 </Control>
902 <Control Id="BottomLine" Type="Line" X="0" Y="234" Width="370" Height="0" />
903 <Control Id="Title" Type="Text" X="15" Y="6" Width="200" Height="15" Transparent="yes" NoPrefix="yes">
904 <Text Value="[DlgTitleFont]!(loc.VerifyRemoveDlg_Header)" />
905 </Control>
906 <Control Id="BannerLine" Type="Line" X="0" Y="44" Width="370" Height="0" />
907 </Dialog>
908
909 <Dialog Id="VBoxVerifyRepairDlg" Width="370" Height="270" Title="[ProductName] !(loc.Setup)" NoMinimize="yes" TrackDiskSpace="yes">
910 <Control Id="Repair" Type="PushButton" X="236" Y="243" Width="56" Height="17" Default="yes" Text="!(loc.ButtonText_Repair)">
911 <Publish Event="ReinstallMode" Value="ecmus" Condition="OutOfDiskSpace &lt;&gt; 1" />
912 <Publish Event="Reinstall" Value="All" Condition="OutOfDiskSpace &lt;&gt; 1" />
913 <Publish Event="EndDialog" Value="Return" Condition="OutOfDiskSpace &lt;&gt; 1" />
914 <Publish Event="SpawnDialog" Value="VBoxOutOfRbDiskDlg" Condition="OutOfDiskSpace = 1 AND OutOfNoRbDiskSpace = 0 AND (PROMPTROLLBACKCOST=&quot;P&quot; OR NOT PROMPTROLLBACKCOST)" />
915 <Publish Event="EndDialog" Value="Return" Condition="OutOfDiskSpace = 1 AND OutOfNoRbDiskSpace = 0 AND PROMPTROLLBACKCOST=&quot;D&quot;" />
916 <Publish Event="EnableRollback" Value="False" Condition="OutOfDiskSpace = 1 AND OutOfNoRbDiskSpace = 0 AND PROMPTROLLBACKCOST=&quot;D&quot;" />
917 <Publish Event="SpawnDialog" Value="VBoxOutOfDiskDlg" Condition="(OutOfDiskSpace = 1 AND OutOfNoRbDiskSpace = 1) OR (OutOfDiskSpace = 1 AND PROMPTROLLBACKCOST=&quot;F&quot;)" />
918 </Control>
919
920 <!-- Build number text drawn left bottom -->
921 <Control Id="Build" Type="Text" X="20" Y="247" Width="220" Height="10" Transparent="yes" NoPrefix="yes">
922 <Text Value="[Version_text] $(var.Property_Version)" />
923 </Control>
924
925 <Control Id="Cancel" Type="PushButton" X="304" Y="243" Width="56" Height="17" Cancel="yes" Text="!(loc.ButtonText_Cancel)">
926 <Publish Event="SpawnDialog" Value="VBoxCancelDlg" />
927 </Control>
928 <Control Id="BannerBitmap" Type="Bitmap" X="0" Y="0" Width="370" Height="44" TabSkip="no" Text="[BannerBitmap]" />
929 <Control Id="Back" Type="PushButton" X="180" Y="243" Width="56" Height="17" Text="!(loc.ButtonText_Back)">
930 <Publish Event="NewDialog" Value="VBoxMaintenanceTypeDlg" />
931 </Control>
932 <Control Id="Description" Type="Text" X="25" Y="23" Width="280" Height="15" Transparent="yes" NoPrefix="yes">
933 <Text Value="!(loc.VerifyRepairDlg_ReadyToBegin)" />
934 </Control>
935 <Control Id="Text" Type="Text" X="25" Y="70" Width="320" Height="30">
936 <Text Value="!(loc.VerifyRepairDlg_ClickRepair)" />
937 </Control>
938 <Control Id="BottomLine" Type="Line" X="0" Y="234" Width="370" Height="0" />
939 <Control Id="Title" Type="Text" X="15" Y="6" Width="200" Height="15" Transparent="yes" NoPrefix="yes">
940 <Text Value="[DlgTitleFont]!(loc.VerifyRepairDlg_Header)" />
941 </Control>
942 <Control Id="BannerLine" Type="Line" X="0" Y="44" Width="370" Height="0" />
943 </Dialog>
944
945 <Dialog Id="VBoxWaitForCostingDlg" Width="260" Height="85" Title="[ProductName] !(loc.Setup)" NoMinimize="yes">
946 <Control Id="Return" Type="PushButton" X="102" Y="57" Width="56" Height="17" Default="yes" Cancel="yes" Text="[ButtonText_Return]">
947 <Publish Event="EndDialog" Value="Exit" />
948 </Control>
949 <Control Id="Text" Type="Text" X="48" Y="15" Width="194" Height="30">
950 <Text Value="!(loc.WaitForCostingDlg_PleaseWait)" />
951 </Control>
952 <Control Id="Icon" Type="Icon" X="15" Y="15" Width="24" Height="24" ToolTip="Exclamation icon" FixedSize="yes" IconSize="32" Text="[ExclamationIcon]" />
953 </Dialog>
954
955 <!-- Dialog property table. -->
956 <Property Id="ErrorDialog" Value="VBoxErrorDlg" />
957
958 <!-- Define some textstyles used for formatting dialog items. -->
959 <Property Id="DefaultUIFont" Value="DlgFont8" />
960 <TextStyle Id="DlgFont8" FaceName="Tahoma" Size="8" />
961 <TextStyle Id="DlgFontBold8" FaceName="Tahoma" Size="8" Bold="yes" />
962 <TextStyle Id="DlgVerdanaBold13" FaceName="Verdana" Size="13" Bold="yes" />
963 <TextStyle Id="DlgInvalidSerial" FaceName="Verdana" Size="13" Bold="yes" Red="255" />
964 <TextStyle Id="DlgWarnDisconNetIfaces" FaceName="Verdana" Size="13" Bold="yes" Red="255" />
965 <TextStyle Id="DlgWarnPython" FaceName="Verdana" Size="13" Bold="yes" />
966
967 <!-- The UIText table contains the localized versions of some of the strings used in the user interface.
968 These strings are not part of any other table. The UIText table is for strings that have no logical place in any other table. -->
969 <ProgressText Action="CostFinalize" Message="!(loc.ProgressTextCostFinalize)" />
970 <ProgressText Action="CostInitialize" Message="!(loc.ProgressTextCostInitialize)" />
971 <ProgressText Action="FileCost" Message="!(loc.ProgressTextFileCost)" />
972 <ProgressText Action="InstallValidate" Message="!(loc.ProgressTextInstallValidate)" />
973 <ProgressText Action="InstallFiles" Template="File: [1], Directory: [9], Size: [6]" Message="!(loc.ProgressTextInstallFiles)" />
974 <ProgressText Action="InstallAdminPackage" Template="File: [1], Directory: [9], Size: [6]" Message="!(loc.ProgressTextInstallAdminPackage)" />
975 <ProgressText Action="CreateShortcuts" Template="Shortcut: [1]" Message="!(loc.ProgressTextCreateShortcuts)" />
976 <ProgressText Action="PublishComponents" Template="Component ID: [1], Qualifier: [2]" Message="!(loc.ProgressTextPublishComponents)" />
977 <ProgressText Action="PublishFeatures" Template="Feature: [1]" Message="!(loc.ProgressTextPublishFeatures)" />
978 <ProgressText Action="PublishProduct" Message="!(loc.ProgressTextPublishProduct)" />
979 <ProgressText Action="RegisterClassInfo" Template="Class Id: [1]" Message="!(loc.ProgressTextRegisterClassInfo)" />
980 <ProgressText Action="RegisterExtensionInfo" Template="Extension: [1]" Message="!(loc.ProgressTextRegisterExtensionInfo)" />
981 <ProgressText Action="RegisterMIMEInfo" Template="MIME Content Type: [1], Extension: [2]" Message="!(loc.ProgressTextRegisterMIMEInfo)" />
982 <ProgressText Action="RegisterProgIdInfo" Template="ProgId: [1]" Message="!(loc.ProgressTextRegisterProgIdInfo)" />
983 <ProgressText Action="AllocateRegistrySpace" Template="Free space: [1]" Message="!(loc.ProgressTextAllocateRegistrySpace)" />
984 <ProgressText Action="AppSearch" Template="Property: [1], Signature: [2]" Message="!(loc.ProgressTextAppSearch)" />
985 <ProgressText Action="BindImage" Template="File: [1]" Message="!(loc.ProgressTextBindImage)" />
986 <ProgressText Action="CCPSearch" Message="!(loc.ProgressTextCCPSearch)" />
987 <ProgressText Action="CreateFolders" Template="Folder: [1]" Message="!(loc.ProgressTextCreateFolders)" />
988 <ProgressText Action="DeleteServices" Template="Service: [1]" Message="!(loc.ProgressTextDeleteServices)" />
989 <ProgressText Action="DuplicateFiles" Template="File: [1], Directory: [9], Size: [6]" Message="!(loc.ProgressTextDuplicateFiles)" />
990 <ProgressText Action="FindRelatedProducts" Template="Found application: [1]" Message="!(loc.ProgressTextFindRelatedProducts)" />
991 <ProgressText Action="InstallODBC" Message="!(loc.ProgressTextInstallODBC)" />
992 <ProgressText Action="InstallServices" Template="Service: [2]" Message="!(loc.ProgressTextInstallServices)" />
993 <ProgressText Action="LaunchConditions" Message="!(loc.ProgressTextLaunchConditions)" />
994 <ProgressText Action="MigrateFeatureStates" Template="Application: [1]" Message="!(loc.ProgressTextMigrateFeatureStates)" />
995 <ProgressText Action="MoveFiles" Template="File: [1], Directory: [9], Size: [6]" Message="!(loc.ProgressTextMoveFiles)" />
996 <ProgressText Action="PatchFiles" Template="File: [1], Directory: [2], Size: [3]" Message="!(loc.ProgressTextPatchFiles)" />
997 <ProgressText Action="ProcessComponents" Message="!(loc.ProgressTextProcessComponents)" />
998 <ProgressText Action="RegisterComPlus" Template="AppId: [1]{{, AppType: [2], Users: [3], RSN: [4]}}" Message="!(loc.ProgressTextRegisterComPlus)" />
999 <ProgressText Action="RegisterFonts" Template="Font: [1]" Message="!(loc.ProgressTextRegisterFonts)" />
1000 <ProgressText Action="RegisterProduct" Template="[1]" Message="!(loc.ProgressTextRegisterProduct)" />
1001 <ProgressText Action="RegisterTypeLibraries" Template="LibID: [1]" Message="!(loc.ProgressTextRegisterTypeLibraries)" />
1002 <ProgressText Action="RegisterUser" Template="[1]" Message="!(loc.ProgressTextRegisterUser)" />
1003 <ProgressText Action="RemoveDuplicateFiles" Template="File: [1], Directory: [9]" Message="!(loc.ProgressTextRemoveDuplicateFiles)" />
1004 <ProgressText Action="RemoveEnvironmentStrings" Template="Name: [1], Value: [2], Action [3]" Message="!(loc.ProgressTextRemoveEnvironmentStrings)" />
1005 <ProgressText Action="RemoveExistingProducts" Template="Application: [1], Command line: [2]" Message="!(loc.ProgressTextRemoveExistingProducts)" />
1006 <ProgressText Action="RemoveFiles" Template="File: [1], Directory: [9]" Message="!(loc.ProgressTextRemoveFiles)" />
1007 <ProgressText Action="RemoveFolders" Template="Folder: [1]" Message="!(loc.ProgressTextRemoveFolders)" />
1008 <ProgressText Action="RemoveIniValues" Template="File: [1], Section: [2], Key: [3], Value: [4]" Message="!(loc.ProgressTextRemoveIniValues)" />
1009 <ProgressText Action="RemoveODBC" Message="!(loc.ProgressTextRemoveODBC)" />
1010 <ProgressText Action="RemoveRegistryValues" Template="Key: [1], Name: [2]" Message="!(loc.ProgressTextRemoveRegistryValues)" />
1011 <ProgressText Action="RemoveShortcuts" Template="Shortcut: [1]" Message="!(loc.ProgressTextRemoveShortcuts)" />
1012 <ProgressText Action="RMCCPSearch" Message="!(loc.ProgressTextRMCCPSearch)" />
1013 <ProgressText Action="SelfRegModules" Template="File: [1], Folder: [2]" Message="!(loc.ProgressTextSelfRegModules)" />
1014 <ProgressText Action="SelfUnregModules" Template="File: [1], Folder: [2]" Message="!(loc.ProgressTextSelfUnregModules)" />
1015 <ProgressText Action="SetODBCFolders" Message="!(loc.ProgressTextSetODBCFolders)" />
1016 <ProgressText Action="StartServices" Template="Service: [1]" Message="!(loc.ProgressTextStartServices)" />
1017 <ProgressText Action="StopServices" Template="Service: [1]" Message="!(loc.ProgressTextStopServices)" />
1018 <ProgressText Action="UnpublishComponents" Template="Component ID: [1], Qualifier: [2]" Message="!(loc.ProgressTextUnpublishComponents)" />
1019 <ProgressText Action="UnpublishFeatures" Template="Feature: [1]" Message="!(loc.ProgressTextUnpublishFeatures)" />
1020 <ProgressText Action="UnregisterClassInfo" Template="Class Id: [1]" Message="!(loc.ProgressTextUnregisterClassInfo)" />
1021 <ProgressText Action="UnregisterComPlus" Template="AppId: [1]{{, AppType: [2]}}" Message="!(loc.ProgressTextUnregisterComPlus)" />
1022 <ProgressText Action="UnregisterExtensionInfo" Template="Extension: [1]" Message="!(loc.ProgressTextUnregisterExtensionInfo)" />
1023 <ProgressText Action="UnregisterFonts" Template="Font: [1]" Message="!(loc.ProgressTextUnregisterFonts)" />
1024 <ProgressText Action="UnregisterMIMEInfo" Template="MIME Content Type: [1], Extension: [2]" Message="!(loc.ProgressTextUnregisterMIMEInfo)" />
1025 <ProgressText Action="UnregisterProgIdInfo" Template="ProgId: [1]" Message="!(loc.ProgressTextUnregisterProgIdInfo)" />
1026 <ProgressText Action="UnregisterTypeLibraries" Template="LibID: [1]" Message="!(loc.ProgressTextUnregisterTypeLibraries)" />
1027 <ProgressText Action="WriteEnvironmentStrings" Template="Name: [1], Value: [2], Action [3]" Message="!(loc.ProgressTextWriteEnvironmentStrings)" />
1028 <ProgressText Action="WriteIniValues" Template="File: [1], Section: [2], Key: [3], Value: [4]" Message="!(loc.ProgressTextWriteIniValues)" />
1029 <ProgressText Action="WriteRegistryValues" Template="Key: [1], Name: [2], Value: [3]" Message="!(loc.ProgressTextWriteRegistryValues)" />
1030 <ProgressText Action="Advertise" Message="!(loc.ProgressTextAdvertise)" />
1031 <ProgressText Action="GenerateScript" Template="[1]" Message="!(loc.ProgressTextGenerateScript)" />
1032 <ProgressText Action="InstallSFPCatalogFile" Template="File: [1], Dependencies: [2]" Message="!(loc.ProgressTextInstallSFPCatalogFile)" />
1033 <ProgressText Action="MsiPublishAssemblies" Template="Application Context:[1], Assembly Name:[2]" Message="!(loc.ProgressTextMsiPublishAssemblies)" />
1034 <ProgressText Action="MsiUnpublishAssemblies" Template="Application Context:[1], Assembly Name:[2]" Message="!(loc.ProgressTextMsiUnpublishAssemblies)" />
1035 <ProgressText Action="Rollback" Template="[1]" Message="!(loc.ProgressTextRollback)" />
1036 <ProgressText Action="RollbackCleanup" Template="File: [1]" Message="!(loc.ProgressTextRollbackCleanup)" />
1037 <ProgressText Action="UnmoveFiles" Template="File: [1], Directory: [9]" Message="!(loc.ProgressTextUnmoveFiles)" />
1038 <ProgressText Action="UnpublishProduct" Message="!(loc.ProgressTextUnpublishProduct)" />
1039
1040 <UIText Id="bytes" Value="!(loc.UITextbytes)" />
1041 <UIText Id="GB" Value="!(loc.UITextGB)" />
1042 <UIText Id="KB" Value="!(loc.UITextKB)" />
1043 <UIText Id="MB" Value="!(loc.UITextMB)" />
1044 <UIText Id="AbsentPath" Value="-" />
1045 <UIText Id="MenuAbsent" Value="!(loc.UITextMenuAbsent)" />
1046 <UIText Id="MenuAdvertise" Value="!(loc.UITextMenuAdvertise)" />
1047 <UIText Id="MenuAllCD" Value="!(loc.UITextMenuAllCD)" />
1048 <UIText Id="MenuAllLocal" Value="!(loc.UITextMenuAllLocal)" />
1049 <UIText Id="MenuAllNetwork" Value="!(loc.UITextMenuAllNetwork)" />
1050 <UIText Id="MenuCD" Value="!(loc.UITextMenuCD)" />
1051 <UIText Id="MenuLocal" Value="!(loc.UITextMenuLocal)" />
1052 <UIText Id="MenuNetwork" Value="!(loc.UITextMenuNetwork)" />
1053 <UIText Id="ScriptInProgress" Value="!(loc.UITextScriptInProgress)" />
1054 <UIText Id="SelAbsentAbsent" Value="!(loc.UITextSelAbsentAbsent)" />
1055 <UIText Id="SelAbsentAdvertise" Value="!(loc.UITextSelAbsentAdvertise)" />
1056 <UIText Id="SelAbsentCD" Value="!(loc.UITextSelAbsentCD)" />
1057 <UIText Id="SelAbsentLocal" Value="!(loc.UITextSelAbsentLocal)" />
1058 <UIText Id="SelAbsentNetwork" Value="!(loc.UITextSelAbsentNetwork)" />
1059 <UIText Id="SelAdvertiseAbsent" Value="!(loc.UITextSelAdvertiseAbsent)" />
1060 <UIText Id="SelAdvertiseAdvertise" Value="!(loc.UITextSelAdvertiseAdvertise)" />
1061 <UIText Id="SelAdvertiseCD" Value="!(loc.UITextSelAdvertiseCD)" />
1062 <UIText Id="SelAdvertiseLocal" Value="!(loc.UITextSelAdvertiseLocal)" />
1063 <UIText Id="SelAdvertiseNetwork" Value="!(loc.UITextSelAdvertiseNetwork)" />
1064 <UIText Id="SelCDAbsent" Value="!(loc.UITextSelCDAbsent)" />
1065 <UIText Id="SelCDAdvertise" Value="!(loc.UITextSelCDAdvertise)" />
1066 <UIText Id="SelCDCD" Value="!(loc.UITextSelCDCD)" />
1067 <UIText Id="SelCDLocal" Value="!(loc.UITextSelCDLocal)" />
1068 <UIText Id="SelChildCostNeg" Value="!(loc.UITextSelChildCostNeg)" />
1069 <UIText Id="SelChildCostPos" Value="!(loc.UITextSelChildCostPos)" />
1070 <UIText Id="SelCostPending" Value="!(loc.UITextSelCostPending)" />
1071 <UIText Id="SelLocalAbsent" Value="!(loc.UITextSelLocalAbsent)" />
1072 <UIText Id="SelLocalAdvertise" Value="!(loc.UITextSelLocalAdvertise)" />
1073 <UIText Id="SelLocalCD" Value="!(loc.UITextSelLocalCD)" />
1074 <UIText Id="SelLocalLocal" Value="!(loc.UITextSelLocalLocal)" />
1075 <UIText Id="SelLocalNetwork" Value="!(loc.UITextSelLocalNetwork)" />
1076 <UIText Id="SelNetworkAbsent" Value="!(loc.UITextSelNetworkAbsent)" />
1077 <UIText Id="SelNetworkAdvertise" Value="!(loc.UITextSelNetworkAdvertise)" />
1078 <UIText Id="SelNetworkLocal" Value="!(loc.UITextSelNetworkLocal)" />
1079 <UIText Id="SelNetworkNetwork" Value="!(loc.UITextSelNetworkNetwork)" />
1080 <UIText Id="SelParentCostNegNeg" Value="!(loc.UITextSelParentCostNegNeg)" />
1081 <UIText Id="SelParentCostNegPos" Value="!(loc.UITextSelParentCostNegPos)" />
1082 <UIText Id="SelParentCostPosNeg" Value="!(loc.UITextSelParentCostPosNeg)" />
1083 <UIText Id="SelParentCostPosPos" Value="!(loc.UITextSelParentCostPosPos)" />
1084 <UIText Id="TimeRemaining" Value="!(loc.UITextTimeRemaining)" />
1085 <UIText Id="VolumeCostAvailable" Value="!(loc.UITextVolumeCostAvailable)" />
1086 <UIText Id="VolumeCostDifference" Value="!(loc.UITextVolumeCostDifference)" />
1087 <UIText Id="VolumeCostRequired" Value="!(loc.UITextVolumeCostRequired)" />
1088 <UIText Id="VolumeCostSize" Value="!(loc.UITextVolumeCostSize)" />
1089 <UIText Id="VolumeCostVolume" Value="!(loc.UITextVolumeCostVolume)" />
1090
1091 <!-- Own error messages -->
1092 <Error Id="25001" Message="!(loc.Error25001)" />
1093
1094 <!-- The text used in front of the build number -->
1095 <Property Id="Version_text" Value="Version" />
1096
1097 <!-- Define an alias for the font to be used in dialogs -->
1098 <Property Id="DlgTitleFont" Value="{&amp;DlgFontBold8}" />
1099
1100 <!-- This property preselects the "Don't agree" radio button in the license page -->
1101 <Property Id="IAgree" Value="No" />
1102
1103 <!-- Icon files used for the UI -->
1104 <Binary Id="infoico" SourceFile="$(env.VBOX_PATH_WIN_INST_SRC)\Binary\Info.ico" />
1105 <Binary Id="exclico" SourceFile="$(env.VBOX_PATH_WIN_INST_SRC)\Binary\Exclamation.ico" />
1106 <Binary Id="folderupico" SourceFile="$(env.VBOX_PATH_WIN_INST_SRC)\Binary\Up.ico" />
1107 <Binary Id="foldernewico" SourceFile="$(env.VBOX_PATH_WIN_INST_SRC)\Binary\New.ico" />
1108 <Binary Id="removico" SourceFile="$(env.VBOX_PATH_WIN_INST_SRC)\Binary\Remove.ico" />
1109 <Binary Id="repairic" SourceFile="$(env.VBOX_PATH_WIN_INST_SRC)\Binary\Repair.ico" />
1110
1111 <!-- Graphic files used for the UI -->
1112 <!-- See: http://wix.sourceforge.net/manual-wix3/WixUI_customizations.htm -->
1113 <Binary Id="bannerjpg" SourceFile="$(env.VBOX_PATH_WIN_INST_SRC)\Binary\Banner.jpg" />
1114 <Binary Id="dlgjpg" SourceFile="$(env.VBOX_BRAND_WIN_INST_DLGJPG)" />
1115
1116 <!-- Aliases for the graphic files -->
1117 <Property Id="InfoIcon" Value="infoico" />
1118 <Property Id="ExclamationIcon" Value="exclico" />
1119 <Property Id="RemoveIcon" Value="removico" />
1120 <Property Id="RepairIcon" Value="repairic" />
1121 <Property Id="DialogBitmap" Value="dlgjpg" />
1122 <Property Id="BannerBitmap" Value="bannerjpg" />
1123 <Property Id="FolderUp" Value="folderupico" />
1124 <Property Id="FolderNew" Value="foldernewico" />
1125
1126 <!-- Property which defines if we need to show the customization dialog or not.
1127 We only show the dialog on new installs to let the users choose the components to install. -->
1128 <Property Id="VBOX_SHOW_CUSTOMIZE_DLG" Value="((PREVIOUSVERSIONSINSTALLED OR NEWERVERSIONDETECTED) OR ((NOT PREVIOUSVERSIONSINSTALLED) AND (NOT NEWERVERSIONDETECTED)))" />
1129<?if $(env.VBOX_WITH_LICENSE_DISPLAY) = "yes" ?>
1130 <!-- Property which defines whether the license dialog will be shown or not. -->
1131 <Property Id="VBOX_SHOW_LICENSE_DLG" Value="1" />
1132<?endif?>
1133<?if $(env.VBOX_WITH_SERIALNUMBER_INSTALL) = "yes2" ?>
1134 <!-- Property which defines whether the installer checks the serial number or not. -->
1135 <Property Id="VBOX_SHOW_SERIAL_CHECK_DLG" Value="1" />
1136<?endif?>
1137<?if $(env.VBOX_WITH_QTGUI) = "no" ?>
1138 <!-- Property which defines whether to show the second customization dialog. This second customization
1139 dialog only is needed for GUI-based options, so skip if we either don't ship FE/Qt or don't show
1140 the (first) customization dialog. -->
1141 <Property Id="VBOX_SHOW_CUSTOMIZE2_DLG" Value="VBOX_SHOW_CUSTOMIZE_DLG" />
1142<?endif?>
1143
1144
1145 <!-- In graphical (attended) mode we always choose a custom installation to let the user chose. -->
1146 <Property Id="InstallMode" Value="!(loc.InstallModeCustom)" />
1147
1148 <!-- Dialog routing table (sort-of truth table).
1149 Here (and only here!) the routing for the customized dialogs are defined, e.g.
1150 what happens next when pressing the "Next" or "Back" buttons on a dialog.
1151
1152 This can vary based on the defines we (don't) set above or custom actions in our
1153 install helper DLL. -->
1154
1155 <!-- Note: All values except 0 and "" (empty string) are interpreted as TRUE. -->
1156
1157 <Publish Dialog="VBoxWelcomeDlg" Control="Next" Event="NewDialog" Value="VBoxLicenseAgreementDlg" Condition="VBOX_SHOW_LICENSE_DLG" />
1158 <Publish Dialog="VBoxWelcomeDlg" Control="Next" Event="NewDialog" Value="VBoxCheckSerialDlg" Condition="(NOT VBOX_SHOW_LICENSE_DLG) AND VBOX_SHOW_SERIAL_CHECK_DLG" />
1159 <Publish Dialog="VBoxWelcomeDlg" Control="Next" Event="NewDialog" Value="VBoxCustomizeDlg" Condition="VBOX_SHOW_CUSTOMIZE_DLG AND (NOT VBOX_SHOW_LICENSE_DLG) AND (NOT VBOX_SHOW_SERIAL_CHECK_DLG)" />
1160 <Publish Dialog="VBoxWelcomeDlg" Control="Next" Event="NewDialog" Value="VBoxVerifyReadyDlg" Condition="NOT VBOX_SHOW_CUSTOMIZE_DLG AND (NOT VBOX_SHOW_LICENSE_DLG) AND (NOT VBOX_SHOW_SERIAL_CHECK_DLG)" />
1161
1162 <Publish Dialog="VBoxLicenseAgreementDlg" Control="Next" Event="NewDialog" Value="VBoxCheckSerialDlg" Condition="VBOX_SHOW_SERIAL_CHECK_DLG" />
1163 <Publish Dialog="VBoxLicenseAgreementDlg" Control="Next" Event="NewDialog" Value="VBoxCustomizeDlg" Condition="(NOT VBOX_SHOW_SERIAL_CHECK_DLG) AND (VBOX_SHOW_CUSTOMIZE_DLG)" />
1164 <Publish Dialog="VBoxLicenseAgreementDlg" Control="Next" Event="NewDialog" Value="VBoxVerifyReadyDlg" Condition="(NOT VBOX_SHOW_SERIAL_CHECK_DLG) AND (NOT VBOX_SHOW_CUSTOMIZE_DLG)" />
1165 <Publish Dialog="VBoxLicenseAgreementDlg" Control="Back" Event="NewDialog" Value="VBoxWelcomeDlg" />
1166
1167 <Publish Dialog="VBoxCheckSerialDlg" Control="Back" Event="NewDialog" Value="VBoxLicenseAgreementDlg" Condition="VBOX_SHOW_LICENSE_DLG" />
1168 <Publish Dialog="VBoxCheckSerialDlg" Control="Back" Event="NewDialog" Value="VBoxWelcomeDlg" Condition="NOT VBOX_SHOW_LICENSE_DLG" />
1169 <Publish Dialog="VBoxCheckSerialDlg" Control="Next" Event="DoAction" Value="ca_CheckSerial" Order="1" />
1170 <Publish Dialog="VBoxCheckSerialDlg" Control="Next" Event="NewDialog" Value="VBoxCustomizeDlg" Condition="(PREVIOUSVERSIONSINSTALLED OR NEWERVERSIONDETECTED) AND (VBOX_SERIAL_IS_VALID=&quot;1&quot;)" />
1171 <Publish Dialog="VBoxCheckSerialDlg" Control="Next" Event="NewDialog" Value="VBoxCustomizeDlg" Condition="(NOT PREVIOUSVERSIONSINSTALLED) AND (NOT NEWERVERSIONDETECTED) AND (VBOX_SERIAL_IS_VALID=&quot;1&quot;)" />
1172 <Publish Dialog="VBoxCheckSerialDlg" Control="Next" Event="NewDialog" Value="VBoxWrongSerialDlg" Condition="VBOX_SERIAL_IS_VALID=&quot;0&quot;" />
1173
1174 <Publish Dialog="VBoxWrongSerialDlg" Control="Back" Event="NewDialog" Value="VBoxCheckSerialDlg" />
1175
1176 <Publish Dialog="VBoxBrowseDlg" Control="OK" Event="SetTargetPath" Value="[VBOX_TARGET_DIR]" Order="1" />
1177 <Publish Dialog="VBoxBrowseDlg" Control="OK" Event="EndDialog" Value="Return" Order="2" />
1178 <Publish Dialog="VBoxBrowseDlg" Control="Cancel" Event="Reset" Value="0" Order="1" />
1179 <Publish Dialog="VBoxBrowseDlg" Control="Cancel" Event="EndDialog" Value="Return" Order="2" />
1180
1181 <Publish Dialog="VBoxInvalidTargetDirDlg" Control="Back" Event="NewDialog" Value="VBoxCustomizeDlg" />
1182
1183 <!-- Note: We have to set (1) or unset ({}) the properties first (see order #), as those will be needed for further routing.
1184 Note2: I'd love to make this easier to read/follow, but this is how Windows Installer XML works for processing all these events, sigh. -->
1185
1186 <!-- Check if the chosen installation directory turned out to be invalid by calling our installation helper DLL
1187 and performing a custom action. See @bugref{10616} -->
1188 <Publish Dialog="VBoxCustomizeDlg" Control="Next" Event="DoAction" Value="ca_CheckTargetDirPre" Order="1" />
1189 <Publish Dialog="VBoxCustomizeDlg" Control="Next" Property="VBOX_SHOW_INVALID_TARGET_DLG" Value="1" Order="2" Condition="VBox_Target_Dir_Is_Valid=&quot;0&quot;" />
1190 <Publish Dialog="VBoxCustomizeDlg" Control="Next" Property="VBOX_SHOW_INVALID_TARGET_DLG" Value="{}" Order="3" Condition="VBox_Target_Dir_Is_Valid=&quot;1&quot;" />
1191 <Publish Dialog="VBoxCustomizeDlg" Control="Next" Property="VBOX_SHOW_WARN_PYTHONAPI_DLG" Value="1" Order="4" Condition="(&amp;VBoxPython=3) AND (VBOX_PYTHON_DEPS_INSTALLED=&quot;0&quot;)" />
1192 <Publish Dialog="VBoxCustomizeDlg" Control="Next" Property="VBOX_SHOW_WARN_PYTHONAPI_DLG" Value="{}" Order="5" Condition="(&amp;VBoxPython&lt;3)" />
1193 <Publish Dialog="VBoxCustomizeDlg" Control="Next" Property="VBOX_SHOW_WARN_DISCONNECTIFACES_DLG" Value="1" Order="6" Condition="&amp;VBoxNetworkFlt=3" />
1194 <Publish Dialog="VBoxCustomizeDlg" Control="Next" Property="VBOX_SHOW_WARN_DISCONNECTIFACES_DLG" Value="{}" Order="7" Condition="&amp;VBoxNetworkFlt&lt;3" />
1195
1196 <!-- Show an error dialog if the chosen installation directory was found to be invalid. See @bugref{10616} -->
1197 <Publish Dialog="VBoxCustomizeDlg" Control="Next" Event="NewDialog" Value="VBoxInvalidTargetDirDlg" Order="10" Condition="VBOX_SHOW_INVALID_TARGET_DLG" />
1198 <Publish Dialog="VBoxCustomizeDlg" Control="Next" Event="NewDialog" Value="VBoxWarnDisconNetIfacesDlg" Order="20" Condition="VBOX_SHOW_WARN_DISCONNECTIFACES_DLG and (NOT VBOX_SHOW_INVALID_TARGET_DLG)" />
1199 <Publish Dialog="VBoxCustomizeDlg" Control="Next" Event="NewDialog" Value="VBoxWarnPythonDlg" Order="30" Condition="VBOX_SHOW_WARN_PYTHONAPI_DLG AND (NOT VBOX_SHOW_WARN_DISCONNECTIFACES_DLG) AND (NOT VBOX_SHOW_INVALID_TARGET_DLG)" />
1200 <!-- Only allow going to the next stage if the chosen installation directory is valid. See @bugref{10616} -->
1201 <Publish Dialog="VBoxCustomizeDlg" Control="Next" Event="NewDialog" Value="VBoxCustomize2Dlg" Order="40" Condition="VBOX_SHOW_CUSTOMIZE2_DLG AND (NOT VBOX_SHOW_WARN_DISCONNECTIFACES_DLG) AND (NOT VBOX_SHOW_WARN_PYTHONAPI_DLG) AND (NOT VBOX_SHOW_INVALID_TARGET_DLG)" />
1202 <Publish Dialog="VBoxCustomizeDlg" Control="Next" Event="NewDialog" Value="VBoxVerifyReadyDlg" Order="50" Condition="(NOT VBOX_SHOW_CUSTOMIZE2_DLG) AND (NOT VBOX_SHOW_WARN_DISCONNECTIFACES_DLG) AND (NOT VBOX_SHOW_WARN_PYTHONAPI_DLG)" />
1203 <Publish Dialog="VBoxCustomizeDlg" Control="Back" Event="NewDialog" Value="VBoxCheckSerialDlg" Condition="VBOX_SHOW_SERIAL_CHECK_DLG" />
1204 <Publish Dialog="VBoxCustomizeDlg" Control="Back" Event="NewDialog" Value="VBoxLicenseAgreementDlg" Condition="NOT VBOX_SHOW_SERIAL_CHECK_DLG AND VBOX_SHOW_LICENSE_DLG" />
1205 <Publish Dialog="VBoxCustomizeDlg" Control="Back" Event="NewDialog" Value="VBoxWelcomeDlg" Condition="NOT VBOX_SHOW_SERIAL_CHECK_DLG AND NOT VBOX_SHOW_LICENSE_DLG" />
1206
1207 <Publish Dialog="VBoxWarnDisconNetIfacesDlg" Control="Next" Event="NewDialog" Value="VBoxVerifyReadyDlg" Condition="(NOT VBOX_SHOW_CUSTOMIZE2_DLG) AND (NOT VBOX_SHOW_WARN_PYTHONAPI_DLG)" />
1208 <Publish Dialog="VBoxWarnDisconNetIfacesDlg" Control="Next" Event="NewDialog" Value="VBoxCustomize2Dlg" Condition="VBOX_SHOW_CUSTOMIZE2_DLG AND (NOT VBOX_SHOW_WARN_PYTHONAPI_DLG)" />
1209 <Publish Dialog="VBoxWarnDisconNetIfacesDlg" Control="Next" Event="NewDialog" Value="VBoxWarnPythonDlg" Condition="VBOX_SHOW_WARN_PYTHONAPI_DLG" />
1210 <!-- Note: VBoxWarnDisconNetIfacesDlg only has a "Cancel" button which aborts the installation. -->
1211
1212 <Publish Dialog="VBoxWarnPythonDlg" Control="Next" Event="NewDialog" Value="VBoxCustomize2Dlg" Condition="VBOX_SHOW_CUSTOMIZE2_DLG" />
1213 <Publish Dialog="VBoxWarnPythonDlg" Control="Next" Event="NewDialog" Value="VBoxVerifyReadyDlg" Condition="NOT VBOX_SHOW_CUSTOMIZE2_DLG" />
1214 <!-- Note: VBoxWarnPythonDlg only has a "Cancel" button which aborts the installation. -->
1215
1216 <Publish Dialog="VBoxCustomize2Dlg" Control="Back" Event="NewDialog" Value="VBoxCustomizeDlg" />
1217 <Publish Dialog="VBoxCustomize2Dlg" Control="Next" Event="NewDialog" Value="VBoxVerifyReadyDlg" />
1218
1219 <Publish Dialog="VBoxVerifyReadyDlg" Control="Back" Event="NewDialog" Value="VBoxCustomize2Dlg" Condition="VBOX_SHOW_CUSTOMIZE2_DLG" />
1220 <Publish Dialog="VBoxVerifyReadyDlg" Control="Back" Event="NewDialog" Value="VBoxCustomizeDlg" Condition="NOT VBOX_SHOW_CUSTOMIZE2_DLG" />
1221 <Publish Dialog="VBoxVerifyReadyDlg" Control="Next" Event="NewDialog" Value="VBoxVerifyReadyDlg" />
1222
1223 <!-- This defines the order in which the GUI panels will be shown to the user. -->
1224 <InstallUISequence>
1225
1226<?if $(env.VBOX_WITH_CRT_PACKING) = "no" ?>
1227 <Custom Action="ca_IsMSCRTInstalled" After="AppSearch" />
1228<?endif?>
1229 <Custom Action="ca_CheckTargetDirPre" After="AppSearch" /> <!-- Required for launch conditions. See @bugref{10616} -->
1230 <Custom Action="ca_OriginalTargetDir" After="FileCost" Condition="(NOT INSTALLDIR) AND (NOT EXISTINGINSTALLDIR)" />
1231 <Custom Action="ca_DefaultTargetDir" After="FileCost" Condition="NOT Installed AND (NOT INSTALLDIR) AND EXISTINGINSTALLDIR" />
1232 <Custom Action="ca_IsWindows10" After="CostFinalize" />
1233
1234<?if $(env.VBOX_WITH_PYTHON) = "yes" ?>
1235 <!-- Check for the Python core package and other dependencies first.
1236 The install helper code will set the public properties VBOX_PYTHON_INSTALLED / VBOX_PYTHON_DEPS_INSTALLED. -->
1237 <Custom Action="ca_IsPythonInstalled" After="CostFinalize" />
1238 <Custom Action="ca_ArePythonAPIDepsInstalled" After="CostFinalize" />
1239<?endif?>
1240 <FindRelatedProducts Suppress="no" />
1241
1242 <Show Dialog="VBoxFatalErrorDlg" OnExit="error" />
1243 <Show Dialog="VBoxUserExitDlg" OnExit="cancel" />
1244 <Show Dialog="VBoxPrepareDlg" After="LaunchConditions" />
1245 <Show Dialog="VBoxWelcomeDlg" After="MigrateFeatureStates" Condition="NOT Installed" />
1246 <Show Dialog="VBoxResumeDlg" After="VBoxWelcomeDlg" Condition="Installed AND (RESUME OR Preselected)" />
1247 <Show Dialog="VBoxMaintenanceWelcomeDlg" After="VBoxResumeDlg" Condition="Installed AND (NOT RESUME) AND (NOT Preselected)" />
1248 <Show Dialog="VBoxExitDlg" OnExit="success" />
1249 <Show Dialog="VBoxProgressDlg" After="VBoxMaintenanceWelcomeDlg" />
1250
1251 </InstallUISequence>
1252
1253 <!-- The AdminUISequence table lists actions that the installer calls in sequence when the top-level ADMIN
1254 action is executed and the internal user interface level is set to full UI or reduced UI. The installer
1255 skips the actions in this table if the user interface level is set to basic UI or no UI. -->
1256 <AdminUISequence>
1257 <Show Dialog="VBoxFatalErrorDlg" OnExit="error" />
1258 <Show Dialog="VBoxUserExitDlg" OnExit="cancel" />
1259 <Show Dialog="VBoxExitDlg" OnExit="success" />
1260 </AdminUISequence>
1261 </UI>
1262
1263</Include>
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette