VirtualBox

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

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

Windows host installer: Upgraded to WIX v4 (4.0.5). This is a massive change that accumulates the transition from WIX v3 -> v4 where the WIX XML scheme as well as the build system has changed. See comments for details [SCM fixes]. ​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" HideCondition="(InstallMode=&quot;Repair&quot;) OR (InstallMode=&quot;Remove&quot;) OR&#xA; (InstallMode=&quot;Change&quot;)">
579 <Text Value="!(loc.ExitDlg_StartVBox)" />
580
581 </Control>
582<?endif?>
583 <Control Id="BottomLine" Type="Line" X="0" Y="234" Width="370" Height="0" />
584 <Control Id="Title" Type="Text" X="135" Y="20" Width="220" Height="60" Transparent="yes" NoPrefix="yes">
585 <Text Value="{\DlgVerdanaBold13}!(loc.ExitDlg_InstComplete)" />
586 </Control>
587 </Dialog>
588
589 <!-- This dialog is called via the ErrorDialog property on an installation error. -->
590 <Dialog Id="VBoxErrorDlg" ErrorDialog="yes" Width="270" Height="150" Title="[ProductName] !(loc.Setup)" NoMinimize="yes">
591 <!-- Do *not* change the control IDs in the dialog! -->
592 <Control Id="ErrorText" Type="Text" X="75" Y="20" Width="155" Height="80" TabSkip="no" NoPrefix="yes" Text="Error information text" />
593 <Control Id="Y" Type="PushButton" X="20" Y="110" Width="80" Height="18" TabSkip="yes" Text="!(loc.ButtonText_Yes)">
594 <Publish Event="EndDialog" Value="ErrorYes" />
595 </Control>
596 <Control Id="A" Type="PushButton" X="20" Y="110" Width="80" Height="18" TabSkip="yes" Text="!(loc.ButtonText_Cancel)">
597 <Publish Event="EndDialog" Value="ErrorAbort" />
598 </Control>
599 <Control Id="C" Type="PushButton" X="20" Y="110" Width="80" Height="18" TabSkip="yes" Text="!(loc.ButtonText_Cancel)">
600 <Publish Event="EndDialog" Value="ErrorCancel" />
601 </Control>
602 <Control Id="ErrorIcon" Type="Icon" X="15" Y="15" Width="24" Height="24" ToolTip="Information icon" FixedSize="yes" IconSize="32" Text="[InfoIcon]" />
603 <Control Id="I" Type="PushButton" X="20" Y="110" Width="80" Height="18" TabSkip="yes" Text="!(loc.ButtonText_Ignore)">
604 <Publish Event="EndDialog" Value="ErrorIgnore" />
605 </Control>
606 <Control Id="N" Type="PushButton" X="20" Y="110" Width="80" Height="18" TabSkip="yes" Text="!(loc.ButtonText_No)">
607 <Publish Event="EndDialog" Value="ErrorNo" />
608 </Control>
609 <Control Id="O" Type="PushButton" X="20" Y="110" Width="80" Height="18" TabSkip="yes" Text="!(loc.ButtonText_OK)">
610 <Publish Event="EndDialog" Value="ErrorOk" />
611 </Control>
612 <Control Id="R" Type="PushButton" X="20" Y="110" Width="80" Height="18" TabSkip="yes" Text="!(loc.ButtonText_Retry)">
613 <Publish Event="EndDialog" Value="ErrorRetry" />
614 </Control>
615 </Dialog>
616
617 <!-- Used to signal a fatal error in the 'OnExit="error"' fashion. -->
618 <Dialog Id="VBoxFatalErrorDlg" Width="370" Height="270" Title="[ProductName] !(loc.Setup)" NoMinimize="yes">
619 <Control Id="Finish" Type="PushButton" X="236" Y="243" Width="56" Height="17" Default="yes" Cancel="yes" Text="!(loc.ButtonText_Finish)">
620 <Publish Event="EndDialog" Value="Exit" />
621 </Control>
622 <Control Id="Cancel" Type="PushButton" X="304" Y="243" Width="56" Height="17" Disabled="yes" Text="!(loc.ButtonText_Cancel)" />
623 <Control Id="Bitmap" Type="Bitmap" X="0" Y="0" Width="370" Height="234" TabSkip="no" Text="[DialogBitmap]" />
624 <Control Id="Back" Type="PushButton" X="180" Y="243" Width="56" Height="17" Disabled="yes" Text="!(loc.ButtonText_Back)" />
625 <Control Id="BottomLine" Type="Line" X="0" Y="234" Width="370" Height="0" />
626 <Control Id="Title" Type="Text" X="135" Y="20" Width="220" Height="60" Transparent="yes" NoPrefix="yes" Text="!(loc.FatalErrorTitle)" />
627 <Control Id="Description" Type="Text" X="135" Y="70" Width="220" Height="80" Transparent="yes" NoPrefix="yes" Text="!(loc.FatalErrorDescription1) !(loc.FatalErrorDescription2)" />
628 <Control Id="Build" Type="Text" X="20" Y="247" Width="220" Height="10" Transparent="yes" NoPrefix="yes">
629 <Text Value="[Version_text] $(var.Property_Version)" />
630 </Control>
631 </Dialog>
632
633 <Dialog Id="FilesInUse" Width="370" Height="270" Title="[ProductName] !(loc.Setup)" KeepModeless="yes">
634 <Control Id="Retry" Type="PushButton" X="304" Y="243" Width="56" Height="17" Default="yes" Cancel="yes" Text="!(loc.ButtonText_Retry)">
635 <Publish Event="EndDialog" Value="Retry" />
636 </Control>
637 <!-- Currently we don't want to let the users ignore a running VirtualBox installation, as this
638 will result in an unstable mix of the old and new installation until a reboot is performed. See #9139.
639 <Control Id="Ignore" Type="PushButton" X="235" Y="243" Width="56" Height="17" Text="!(loc.ButtonText_Ignore)">
640 <Publish Event="EndDialog" Value="Ignore">1</Publish>
641 </Control>
642 -->
643 <Control Id="Exit" Type="PushButton" X="235" Y="243" Width="56" Height="17" Text="!(loc.ButtonText_Exit)">
644 <Publish Event="EndDialog" Value="Exit" />
645 </Control>
646 <Control Id="BannerBitmap" Type="Bitmap" X="0" Y="0" Width="370" Height="44" TabSkip="no" Text="[BannerBitmap]" />
647 <Control Id="Text" Type="Text" X="20" Y="55" Width="330" Height="50" Text="!(loc.FilesInUse_Text)" />
648 <Control Id="BannerLine" Type="Line" X="0" Y="44" Width="370" Height="0" />
649 <Control Id="BottomLine" Type="Line" X="0" Y="234" Width="370" Height="0" />
650 <Control Id="Description" Type="Text" X="20" Y="23" Width="280" Height="20" Transparent="yes" NoPrefix="yes" Text="!(loc.FilesInUse_Description)" />
651 <Control Id="Title" Type="Text" X="15" Y="6" Width="200" Height="15" Transparent="yes" NoPrefix="yes" Text="[DlgTitleFont]!(loc.FilesInUse_Title)" />
652 <Control Id="List" Type="ListBox" X="20" Y="107" Width="330" Height="130" Property="FileInUseProcess" Sunken="yes" TabSkip="yes" />
653 </Dialog>
654
655 <!-- This dialog is shown if the user interrupts the installation process -->
656 <Dialog Id="VBoxUserExitDlg" Width="370" Height="270" Title="[ProductName] !(loc.Setup)" NoMinimize="yes">
657 <Control Id="Finish" Type="PushButton" X="236" Y="243" Width="56" Height="17" Default="yes" Cancel="yes" Text="!(loc.ButtonText_Finish)">
658 <Publish Event="EndDialog" Value="Exit" />
659 </Control>
660 <!-- Build number text drawn left bottom -->
661 <Control Id="Build" Type="Text" X="20" Y="247" Width="220" Height="10" Transparent="yes" NoPrefix="yes">
662 <Text Value="[Version_text] $(var.Property_Version)" />
663 </Control>
664
665 <Control Id="Cancel" Type="PushButton" X="304" Y="243" Width="56" Height="17" Disabled="yes" Text="!(loc.ButtonText_Cancel)" />
666 <Control Id="Bitmap" Type="Bitmap" X="0" Y="0" Width="370" Height="234" TabSkip="no" Text="[DialogBitmap]" />
667 <Control Id="Back" Type="PushButton" X="180" Y="243" Width="56" Height="17" Disabled="yes" Text="!(loc.ButtonText_Back)" />
668 <Control Id="BottomLine" Type="Line" X="0" Y="234" Width="370" Height="0" />
669 <Control Id="Title" Type="Text" X="135" Y="20" Width="220" Height="60" Transparent="yes" NoPrefix="yes">
670 <Text Value="{\DlgVerdanaBold13}!(loc.UserExitDlg_Header)" />
671 </Control>
672 <Control Id="Description1" Type="Text" X="135" Y="70" Width="220" Height="40" Transparent="yes" NoPrefix="yes">
673 <Text Value="!(loc.UserExitDlg_Desc)" />
674 </Control>
675 <Control Id="Description2" Type="Text" X="135" Y="115" Width="220" Height="20" Transparent="yes" NoPrefix="yes">
676 <Text Value="!(loc.UserExitDlg_Footer)" />
677 </Control>
678 </Dialog>
679
680 <!-- Progress dialog shown during file copying and other lengthy operations -->
681 <Dialog Id="VBoxProgressDlg" Width="370" Height="270" Title="[ProductName] !(loc.Setup)" Modeless="yes">
682 <Control Id="Cancel" Type="PushButton" X="304" Y="243" Width="56" Height="17" Default="yes" Cancel="yes" Text="!(loc.ButtonText_Cancel)">
683 <Publish Event="SpawnDialog" Value="VBoxCancelDlg" />
684 </Control>
685
686 <!-- Build number text drawn left bottom -->
687 <Control Id="Build" Type="Text" X="20" Y="247" Width="220" Height="10" Transparent="yes" NoPrefix="yes">
688 <Text Value="[Version_text] $(var.Property_Version)" />
689 </Control>
690
691 <Control Id="BannerBitmap" Type="Bitmap" X="0" Y="0" Width="370" Height="44" TabSkip="no" Text="[BannerBitmap]" />
692 <Control Id="Back" Type="PushButton" X="180" Y="243" Width="56" Height="17" Disabled="yes" Text="!(loc.ButtonText_Back)" />
693 <Control Id="Next" Type="PushButton" X="236" Y="243" Width="56" Height="17" Disabled="yes" Text="!(loc.ButtonText_Next)" />
694 <Control Id="ActionText" Type="Text" X="70" Y="100" Width="265" Height="10">
695 <Subscribe Event="ActionText" Attribute="Text" />
696 </Control>
697 <Control Id="Text" Type="Text" X="35" Y="65" Width="300" Height="20">
698 <Text Value="!(loc.ProgressDlg_PleaseWait)" />
699 </Control>
700 <Control Id="BottomLine" Type="Line" X="0" Y="234" Width="370" Height="0" />
701 <Control Id="Title" Type="Text" X="20" Y="15" Width="200" Height="15" Transparent="yes" NoPrefix="yes">
702 <Text Value="[DlgTitleFont][Progress1] [ProductName]" />
703 </Control>
704 <Control Id="BannerLine" Type="Line" X="0" Y="44" Width="370" Height="0" />
705 <Control Id="ProgressBar" Type="ProgressBar" X="35" Y="115" Width="300" Height="10" ProgressBlocks="yes" Text="Progress done">
706 <Subscribe Event="SetProgress" Attribute="Progress" />
707 </Control>
708 <Control Id="StatusLabel" Type="Text" X="35" Y="100" Width="35" Height="10" Text="Status:" />
709 </Dialog>
710
711 <Dialog Id="VBoxResumeDlg" Width="370" Height="270" Title="[ProductName] !(loc.Setup)" NoMinimize="yes">
712 <Control Id="Install" Type="PushButton" X="236" Y="243" Width="56" Height="17" Default="yes" Text="!(loc.ButtonText_Install)">
713 <Publish Event="SpawnWaitDialog" Value="VBoxWaitForCostingDlg" Condition="CostingComplete = 1" />
714 <Publish Event="EndDialog" Value="Return" Condition="OutOfDiskSpace &lt;&gt; 1" />
715 <Publish Event="SpawnDialog" Value="VBoxOutOfRbDiskDlg" Condition="OutOfDiskSpace = 1 AND OutOfNoRbDiskSpace = 0 AND (PROMPTROLLBACKCOST=&quot;P&quot; OR NOT PROMPTROLLBACKCOST)" />
716 <Publish Event="EndDialog" Value="Return" Condition="OutOfDiskSpace = 1 AND OutOfNoRbDiskSpace = 0 AND PROMPTROLLBACKCOST=&quot;D&quot;" />
717 <Publish Event="EnableRollback" Value="False" Condition="OutOfDiskSpace = 1 AND OutOfNoRbDiskSpace = 0 AND PROMPTROLLBACKCOST=&quot;D&quot;" />
718 <Publish Event="SpawnDialog" Value="VBoxOutOfDiskDlg" Condition="(OutOfDiskSpace = 1 AND OutOfNoRbDiskSpace = 1) OR (OutOfDiskSpace = 1 AND PROMPTROLLBACKCOST=&quot;F&quot;)" />
719 </Control>
720
721 <!-- Build number text drawn left bottom -->
722 <Control Id="Cancel" Type="PushButton" X="304" Y="243" Width="56" Height="17" Cancel="yes" Text="!(loc.ButtonText_Cancel)">
723 <Publish Event="SpawnDialog" Value="VBoxCancelDlg" />
724 </Control>
725 <Control Id="Bitmap" Type="Bitmap" X="0" Y="0" Width="370" Height="234" TabSkip="no" Text="[DialogBitmap]" />
726 <Control Id="Back" Type="PushButton" X="180" Y="243" Width="56" Height="17" Disabled="yes" Text="!(loc.ButtonText_Back)" />
727 <Control Id="Title" Type="Text" X="135" Y="20" Width="220" Height="60" Transparent="yes" NoPrefix="yes">
728 <Text Value="{\DlgVerdanaBold13}!(loc.ResumeDlg_Header)" />
729 </Control>
730 <Control Id="Description" Type="Text" X="135" Y="70" Width="220" Height="30" Transparent="yes" NoPrefix="yes">
731 <Text Value="!(loc.ResumeDlg_Desc)" />
732 </Control>
733 <Control Id="BottomLine" Type="Line" X="0" Y="234" Width="370" Height="0" />
734 <Control Id="Build" Type="Text" X="20" Y="247" Width="220" Height="10" Transparent="yes" NoPrefix="yes">
735 <Text Value="[Version_text] $(var.Property_Version)" />
736 </Control>
737 </Dialog>
738
739 <!-- 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
740 may choose to repair the installation or remove it. -->
741 <Dialog Id="VBoxMaintenanceTypeDlg" Width="370" Height="270" Title="[ProductName] !(loc.Setup)" NoMinimize="yes">
742 <Control Id="RepairLabel" Type="Text" X="105" Y="90" Width="100" Height="10" TabSkip="no">
743 <Text Value="[DlgTitleFont]!(loc.MaintenanceTypeDlg_Repair)" />
744 </Control>
745 <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]">
746 <Publish Property="InstallMode" Value="Repair" />
747 <Publish Property="Progress1" Value="!(loc.MaintenanceTypeDlg_RepairProgress1)" />
748 <Publish Property="Progress2" Value="!(loc.MaintenanceTypeDlg_RepairProgress2)" />
749 <Publish Event="NewDialog" Value="VBoxVerifyRepairDlg" />
750 </Control>
751 <Control Id="RemoveLabel" Type="Text" X="105" Y="163" Width="100" Height="10" TabSkip="no">
752 <Text Value="[DlgTitleFont]!(loc.MaintenanceTypeDlg_Remove)" />
753 </Control>
754 <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]">
755 <Publish Property="InstallMode" Value="Remove" />
756 <Publish Property="Progress1" Value="!(loc.MaintenanceTypeDlg_RemoveProgress1)" />
757 <Publish Property="Progress2" Value="!(loc.MaintenanceTypeDlg_RemoveProgress2)" />
758 <Publish Event="NewDialog" Value="VBoxVerifyRemoveDlg" />
759 </Control>
760
761 <!-- Build number text drawn left bottom -->
762 <Control Id="Build" Type="Text" X="20" Y="247" Width="220" Height="10" Transparent="yes" NoPrefix="yes">
763 <Text Value="[Version_text] $(var.Property_Version)" />
764 </Control>
765
766 <Control Id="Back" Type="PushButton" X="180" Y="243" Width="56" Height="17" Text="!(loc.ButtonText_Back)">
767 <Publish Event="NewDialog" Value="VBoxMaintenanceWelcomeDlg" />
768 </Control>
769 <Control Id="Next" Type="PushButton" X="236" Y="243" Width="56" Height="17" Disabled="yes" Text="!(loc.ButtonText_Next)" />
770 <Control Id="Cancel" Type="PushButton" X="304" Y="243" Width="56" Height="17" Cancel="yes" Text="!(loc.ButtonText_Cancel)">
771 <Publish Event="SpawnDialog" Value="VBoxCancelDlg" />
772 </Control>
773 <Control Id="BannerBitmap" Type="Bitmap" X="0" Y="0" Width="370" Height="44" TabSkip="no" Text="[BannerBitmap]" />
774 <Control Id="Description" Type="Text" X="25" Y="23" Width="280" Height="20" Transparent="yes" NoPrefix="yes">
775 <Text Value="!(loc.MaintenanceTypeDlg_SelOption)" />
776 </Control>
777 <Control Id="BottomLine" Type="Line" X="0" Y="234" Width="370" Height="0" />
778 <Control Id="Title" Type="Text" X="15" Y="6" Width="240" Height="15" Transparent="yes" NoPrefix="yes">
779 <Text Value="[DlgTitleFont]!(loc.MaintenanceTypeDlg_Header)" />
780 </Control>
781 <Control Id="BannerLine" Type="Line" X="0" Y="44" Width="370" Height="0" />
782 <Control Id="RemoveText" Type="Text" X="105" Y="176" Width="230" Height="20">
783 <Text Value="!(loc.MaintenanceTypeDlg_RemoveText)" />
784 </Control>
785 <Control Id="RepairText" Type="Text" X="105" Y="102" Width="230" Height="30">
786 <Text Value="!(loc.MaintenanceTypeDlg_RepairText)" />
787 </Control>
788 </Dialog>
789
790 <!-- This dialog is shown if the app is installed and the installation package is started again. It's the welcome
791 screen for maintenance -->
792 <Dialog Id="VBoxMaintenanceWelcomeDlg" Width="370" Height="270" Title="[ProductName] !(loc.Setup)" NoMinimize="yes">
793 <Control Id="Title" Type="Text" X="135" Y="20" Width="220" Height="60" Transparent="yes" NoPrefix="yes">
794 <Text Value="{\DlgVerdanaBold13}!(loc.MaintenanceWelcomeDlg_Header)" />
795 </Control>
796
797 <!-- Build number text drawn left bottom -->
798 <Control Id="Build" Type="Text" X="20" Y="247" Width="220" Height="10" Transparent="yes" NoPrefix="yes">
799 <Text Value="[Version_text] $(var.Property_Version)" />
800 </Control>
801
802 <Control Id="Next" Type="PushButton" X="236" Y="243" Width="56" Height="17" Default="yes" Text="!(loc.ButtonText_Next)">
803 <Publish Event="SpawnWaitDialog" Value="VBoxWaitForCostingDlg" Condition="CostingComplete = 1" />
804 <Publish Event="NewDialog" Value="VBoxMaintenanceTypeDlg" />
805 </Control>
806 <Control Id="Cancel" Type="PushButton" X="304" Y="243" Width="56" Height="17" Cancel="yes" Text="!(loc.ButtonText_Cancel)">
807 <Publish Event="SpawnDialog" Value="VBoxCancelDlg" />
808 </Control>
809 <Control Id="Bitmap" Type="Bitmap" X="0" Y="0" Width="370" Height="234" TabSkip="no" Text="[DialogBitmap]" />
810 <Control Id="Back" Type="PushButton" X="180" Y="243" Width="56" Height="17" Disabled="yes" Text="!(loc.ButtonText_Back)" />
811 <Control Id="Description" Type="Text" X="135" Y="70" Width="220" Height="60" Transparent="yes" NoPrefix="yes">
812 <Text Value="!(loc.MaintenanceWelcomeDlg_Desc)" />
813 </Control>
814 <Control Id="BottomLine" Type="Line" X="0" Y="234" Width="370" Height="0" />
815 </Dialog>
816
817 <!-- Out of disk error dialog -->
818 <Dialog Id="VBoxOutOfDiskDlg" Width="370" Height="270" Title="[ProductName] !(loc.Setup)" NoMinimize="yes">
819
820 <!-- Build number text drawn left bottom -->
821 <Control Id="Build" Type="Text" X="20" Y="247" Width="220" Height="10" Transparent="yes" NoPrefix="yes">
822 <Text Value="[Version_text] $(var.Property_Version)" />
823 </Control>
824
825 <Control Id="OK" Type="PushButton" X="304" Y="243" Width="56" Height="17" Default="yes" Cancel="yes" Text="!(loc.ButtonText_OK)">
826 <Publish Event="EndDialog" Value="Return" />
827 </Control>
828 <Control Id="BannerBitmap" Type="Bitmap" X="0" Y="0" Width="370" Height="44" TabSkip="no" Text="[BannerBitmap]" />
829 <Control Id="Description" Type="Text" X="20" Y="20" Width="280" Height="20" Transparent="yes" NoPrefix="yes">
830 <Text Value="!(loc.OutOfDiskDlg_InstallationExceeds)" />
831 </Control>
832 <Control Id="Text" Type="Text" X="20" Y="53" Width="330" Height="40">
833 <Text Value="!(loc.OutOfDiskDlg_NotEnoughDiskSpace)" />
834 </Control>
835 <Control Id="BottomLine" Type="Line" X="0" Y="234" Width="370" Height="0" />
836 <Control Id="Title" Type="Text" X="15" Y="6" Width="200" Height="15" Transparent="yes" NoPrefix="yes">
837 <Text Value="[DlgTitleFont]!(loc.OutOfDiskDlg_OutOfDiskSpace)" />
838 </Control>
839 <Control Id="BannerLine" Type="Line" X="0" Y="44" Width="370" Height="0" />
840 <Control Id="VolumeList" Type="VolumeCostList" X="20" Y="100" Width="330" Height="120" Sunken="yes" Fixed="yes" Remote="yes">
841 <Text Value="{120}{70}{70}{70}{70}" />
842 </Control>
843 </Dialog>
844
845 <Dialog Id="VBoxOutOfRbDiskDlg" Width="370" Height="270" Title="[ProductName] !(loc.Setup)" NoMinimize="yes">
846 <Control Id="No" Type="PushButton" X="304" Y="243" Width="56" Height="17" Default="yes" Cancel="yes" Text="!(loc.ButtonText_No)">
847 <Publish Event="EndDialog" Value="Return" />
848 </Control>
849 <Control Id="Yes" Type="PushButton" X="240" Y="243" Width="56" Height="17" Text="!(loc.ButtonText_Yes)">
850 <Publish Event="EnableRollback" Value="False" />
851 <Publish Event="EndDialog" Value="Return" />
852 </Control>
853 <Control Id="BannerBitmap" Type="Bitmap" X="0" Y="0" Width="370" Height="44" TabSkip="no" Text="[BannerBitmap]" />
854 <Control Id="Description" Type="Text" X="20" Y="20" Width="280" Height="20" Transparent="yes" NoPrefix="yes">
855 <Text Value="!(loc.OutOfRbDiskDlg_InstallationExceeds)" />
856 </Control>
857 <Control Id="Text" Type="Text" X="20" Y="53" Width="330" Height="40">
858 <Text Value="!(loc.OutOfRbDiskDlg_NotEnoughDiskSpace)" />
859 </Control>
860 <Control Id="BottomLine" Type="Line" X="0" Y="234" Width="370" Height="0" />
861 <Control Id="Title" Type="Text" X="15" Y="6" Width="200" Height="15" Transparent="yes" NoPrefix="yes">
862 <Text Value="[DlgTitleFont]!(loc.OutOfRbDiskDlg_OutOfDiskSpace)" />
863 </Control>
864 <Control Id="BannerLine" Type="Line" X="0" Y="44" Width="370" Height="0" />
865 <Control Id="VolumeList" Type="VolumeCostList" X="20" Y="140" Width="330" Height="80" Sunken="yes" Fixed="yes" Remote="yes" ShowRollbackCost="yes">
866 <Text Value="{120}{70}{70}{70}{70}" />
867 </Control>
868 <Control Id="Text2" Type="Text" X="20" Y="94" Width="330" Height="40">
869 <Text Value="!(loc.OutOfRbDiskDlg_Desc)" />
870 </Control>
871 </Dialog>
872
873 <Dialog Id="VBoxVerifyRemoveDlg" Width="370" Height="270" Title="[ProductName] !(loc.Setup)" NoMinimize="yes" TrackDiskSpace="yes">
874
875 <!-- Build number text drawn left bottom -->
876 <Control Id="Build" Type="Text" X="20" Y="247" Width="220" Height="10" Transparent="yes" NoPrefix="yes">
877 <Text Value="[Version_text] $(var.Property_Version)" />
878 </Control>
879
880 <Control Id="Back" Type="PushButton" X="180" Y="243" Width="56" Height="17" Default="yes" Text="!(loc.ButtonText_Back)">
881 <Publish Event="NewDialog" Value="VBoxMaintenanceTypeDlg" />
882 </Control>
883 <Control Id="Remove" Type="PushButton" X="236" Y="243" Width="56" Height="17" Text="!(loc.ButtonText_Remove)">
884 <Publish Event="Remove" Value="All" Condition="OutOfDiskSpace &lt;&gt; 1" />
885 <Publish Event="EndDialog" Value="Return" Condition="OutOfDiskSpace &lt;&gt; 1" />
886 <Publish Event="SpawnDialog" Value="VBoxOutOfRbDiskDlg" Condition="OutOfDiskSpace = 1 AND OutOfNoRbDiskSpace = 0 AND (PROMPTROLLBACKCOST=&quot;P&quot; OR NOT PROMPTROLLBACKCOST)" />
887 <Publish Event="EndDialog" Value="Return" Condition="OutOfDiskSpace = 1 AND OutOfNoRbDiskSpace = 0 AND PROMPTROLLBACKCOST=&quot;D&quot;" />
888 <Publish Event="EnableRollback" Value="False" Condition="OutOfDiskSpace = 1 AND OutOfNoRbDiskSpace = 0 AND PROMPTROLLBACKCOST=&quot;D&quot;" />
889 <Publish Event="SpawnDialog" Value="VBoxOutOfDiskDlg" Condition="(OutOfDiskSpace = 1 AND OutOfNoRbDiskSpace = 1) OR (OutOfDiskSpace = 1 AND PROMPTROLLBACKCOST=&quot;F&quot;)" />
890 </Control>
891 <Control Id="Cancel" Type="PushButton" X="304" Y="243" Width="56" Height="17" Cancel="yes" Text="!(loc.ButtonText_Cancel)">
892 <Publish Event="SpawnDialog" Value="VBoxCancelDlg" />
893 </Control>
894 <Control Id="BannerBitmap" Type="Bitmap" X="0" Y="0" Width="370" Height="44" TabSkip="no" Text="[BannerBitmap]" />
895 <Control Id="Description" Type="Text" X="25" Y="23" Width="280" Height="15" Transparent="yes" NoPrefix="yes">
896 <Text Value="!(loc.VerifyRemoveDlg_Desc)" />
897 </Control>
898 <Control Id="Text" Type="Text" X="25" Y="70" Width="320" Height="30">
899 <Text Value="!(loc.VerifyRemoveDlg_ClickRemove)" />
900 </Control>
901 <Control Id="BottomLine" Type="Line" X="0" Y="234" Width="370" Height="0" />
902 <Control Id="Title" Type="Text" X="15" Y="6" Width="200" Height="15" Transparent="yes" NoPrefix="yes">
903 <Text Value="[DlgTitleFont]!(loc.VerifyRemoveDlg_Header)" />
904 </Control>
905 <Control Id="BannerLine" Type="Line" X="0" Y="44" Width="370" Height="0" />
906 </Dialog>
907
908 <Dialog Id="VBoxVerifyRepairDlg" Width="370" Height="270" Title="[ProductName] !(loc.Setup)" NoMinimize="yes" TrackDiskSpace="yes">
909 <Control Id="Repair" Type="PushButton" X="236" Y="243" Width="56" Height="17" Default="yes" Text="!(loc.ButtonText_Repair)">
910 <Publish Event="ReinstallMode" Value="ecmus" Condition="OutOfDiskSpace &lt;&gt; 1" />
911 <Publish Event="Reinstall" Value="All" Condition="OutOfDiskSpace &lt;&gt; 1" />
912 <Publish Event="EndDialog" Value="Return" Condition="OutOfDiskSpace &lt;&gt; 1" />
913 <Publish Event="SpawnDialog" Value="VBoxOutOfRbDiskDlg" Condition="OutOfDiskSpace = 1 AND OutOfNoRbDiskSpace = 0 AND (PROMPTROLLBACKCOST=&quot;P&quot; OR NOT PROMPTROLLBACKCOST)" />
914 <Publish Event="EndDialog" Value="Return" Condition="OutOfDiskSpace = 1 AND OutOfNoRbDiskSpace = 0 AND PROMPTROLLBACKCOST=&quot;D&quot;" />
915 <Publish Event="EnableRollback" Value="False" Condition="OutOfDiskSpace = 1 AND OutOfNoRbDiskSpace = 0 AND PROMPTROLLBACKCOST=&quot;D&quot;" />
916 <Publish Event="SpawnDialog" Value="VBoxOutOfDiskDlg" Condition="(OutOfDiskSpace = 1 AND OutOfNoRbDiskSpace = 1) OR (OutOfDiskSpace = 1 AND PROMPTROLLBACKCOST=&quot;F&quot;)" />
917 </Control>
918
919 <!-- Build number text drawn left bottom -->
920 <Control Id="Build" Type="Text" X="20" Y="247" Width="220" Height="10" Transparent="yes" NoPrefix="yes">
921 <Text Value="[Version_text] $(var.Property_Version)" />
922 </Control>
923
924 <Control Id="Cancel" Type="PushButton" X="304" Y="243" Width="56" Height="17" Cancel="yes" Text="!(loc.ButtonText_Cancel)">
925 <Publish Event="SpawnDialog" Value="VBoxCancelDlg" />
926 </Control>
927 <Control Id="BannerBitmap" Type="Bitmap" X="0" Y="0" Width="370" Height="44" TabSkip="no" Text="[BannerBitmap]" />
928 <Control Id="Back" Type="PushButton" X="180" Y="243" Width="56" Height="17" Text="!(loc.ButtonText_Back)">
929 <Publish Event="NewDialog" Value="VBoxMaintenanceTypeDlg" />
930 </Control>
931 <Control Id="Description" Type="Text" X="25" Y="23" Width="280" Height="15" Transparent="yes" NoPrefix="yes">
932 <Text Value="!(loc.VerifyRepairDlg_ReadyToBegin)" />
933 </Control>
934 <Control Id="Text" Type="Text" X="25" Y="70" Width="320" Height="30">
935 <Text Value="!(loc.VerifyRepairDlg_ClickRepair)" />
936 </Control>
937 <Control Id="BottomLine" Type="Line" X="0" Y="234" Width="370" Height="0" />
938 <Control Id="Title" Type="Text" X="15" Y="6" Width="200" Height="15" Transparent="yes" NoPrefix="yes">
939 <Text Value="[DlgTitleFont]!(loc.VerifyRepairDlg_Header)" />
940 </Control>
941 <Control Id="BannerLine" Type="Line" X="0" Y="44" Width="370" Height="0" />
942 </Dialog>
943
944 <Dialog Id="VBoxWaitForCostingDlg" Width="260" Height="85" Title="[ProductName] !(loc.Setup)" NoMinimize="yes">
945 <Control Id="Return" Type="PushButton" X="102" Y="57" Width="56" Height="17" Default="yes" Cancel="yes" Text="[ButtonText_Return]">
946 <Publish Event="EndDialog" Value="Exit" />
947 </Control>
948 <Control Id="Text" Type="Text" X="48" Y="15" Width="194" Height="30">
949 <Text Value="!(loc.WaitForCostingDlg_PleaseWait)" />
950 </Control>
951 <Control Id="Icon" Type="Icon" X="15" Y="15" Width="24" Height="24" ToolTip="Exclamation icon" FixedSize="yes" IconSize="32" Text="[ExclamationIcon]" />
952 </Dialog>
953
954 <!-- Dialog property table. -->
955 <Property Id="ErrorDialog" Value="VBoxErrorDlg" />
956
957 <!-- Define some textstyles used for formatting dialog items. -->
958 <Property Id="DefaultUIFont" Value="DlgFont8" />
959 <TextStyle Id="DlgFont8" FaceName="Tahoma" Size="8" />
960 <TextStyle Id="DlgFontBold8" FaceName="Tahoma" Size="8" Bold="yes" />
961 <TextStyle Id="DlgVerdanaBold13" FaceName="Verdana" Size="13" Bold="yes" />
962 <TextStyle Id="DlgInvalidSerial" FaceName="Verdana" Size="13" Bold="yes" Red="255" />
963 <TextStyle Id="DlgWarnDisconNetIfaces" FaceName="Verdana" Size="13" Bold="yes" Red="255" />
964 <TextStyle Id="DlgWarnPython" FaceName="Verdana" Size="13" Bold="yes" />
965
966 <!-- The UIText table contains the localized versions of some of the strings used in the user interface.
967 These strings are not part of any other table. The UIText table is for strings that have no logical place in any other table. -->
968 <ProgressText Action="CostFinalize" Message="!(loc.ProgressTextCostFinalize)" />
969 <ProgressText Action="CostInitialize" Message="!(loc.ProgressTextCostInitialize)" />
970 <ProgressText Action="FileCost" Message="!(loc.ProgressTextFileCost)" />
971 <ProgressText Action="InstallValidate" Message="!(loc.ProgressTextInstallValidate)" />
972 <ProgressText Action="InstallFiles" Template="File: [1], Directory: [9], Size: [6]" Message="!(loc.ProgressTextInstallFiles)" />
973 <ProgressText Action="InstallAdminPackage" Template="File: [1], Directory: [9], Size: [6]" Message="!(loc.ProgressTextInstallAdminPackage)" />
974 <ProgressText Action="CreateShortcuts" Template="Shortcut: [1]" Message="!(loc.ProgressTextCreateShortcuts)" />
975 <ProgressText Action="PublishComponents" Template="Component ID: [1], Qualifier: [2]" Message="!(loc.ProgressTextPublishComponents)" />
976 <ProgressText Action="PublishFeatures" Template="Feature: [1]" Message="!(loc.ProgressTextPublishFeatures)" />
977 <ProgressText Action="PublishProduct" Message="!(loc.ProgressTextPublishProduct)" />
978 <ProgressText Action="RegisterClassInfo" Template="Class Id: [1]" Message="!(loc.ProgressTextRegisterClassInfo)" />
979 <ProgressText Action="RegisterExtensionInfo" Template="Extension: [1]" Message="!(loc.ProgressTextRegisterExtensionInfo)" />
980 <ProgressText Action="RegisterMIMEInfo" Template="MIME Content Type: [1], Extension: [2]" Message="!(loc.ProgressTextRegisterMIMEInfo)" />
981 <ProgressText Action="RegisterProgIdInfo" Template="ProgId: [1]" Message="!(loc.ProgressTextRegisterProgIdInfo)" />
982 <ProgressText Action="AllocateRegistrySpace" Template="Free space: [1]" Message="!(loc.ProgressTextAllocateRegistrySpace)" />
983 <ProgressText Action="AppSearch" Template="Property: [1], Signature: [2]" Message="!(loc.ProgressTextAppSearch)" />
984 <ProgressText Action="BindImage" Template="File: [1]" Message="!(loc.ProgressTextBindImage)" />
985 <ProgressText Action="CCPSearch" Message="!(loc.ProgressTextCCPSearch)" />
986 <ProgressText Action="CreateFolders" Template="Folder: [1]" Message="!(loc.ProgressTextCreateFolders)" />
987 <ProgressText Action="DeleteServices" Template="Service: [1]" Message="!(loc.ProgressTextDeleteServices)" />
988 <ProgressText Action="DuplicateFiles" Template="File: [1], Directory: [9], Size: [6]" Message="!(loc.ProgressTextDuplicateFiles)" />
989 <ProgressText Action="FindRelatedProducts" Template="Found application: [1]" Message="!(loc.ProgressTextFindRelatedProducts)" />
990 <ProgressText Action="InstallODBC" Message="!(loc.ProgressTextInstallODBC)" />
991 <ProgressText Action="InstallServices" Template="Service: [2]" Message="!(loc.ProgressTextInstallServices)" />
992 <ProgressText Action="LaunchConditions" Message="!(loc.ProgressTextLaunchConditions)" />
993 <ProgressText Action="MigrateFeatureStates" Template="Application: [1]" Message="!(loc.ProgressTextMigrateFeatureStates)" />
994 <ProgressText Action="MoveFiles" Template="File: [1], Directory: [9], Size: [6]" Message="!(loc.ProgressTextMoveFiles)" />
995 <ProgressText Action="PatchFiles" Template="File: [1], Directory: [2], Size: [3]" Message="!(loc.ProgressTextPatchFiles)" />
996 <ProgressText Action="ProcessComponents" Message="!(loc.ProgressTextProcessComponents)" />
997 <ProgressText Action="RegisterComPlus" Template="AppId: [1]{{, AppType: [2], Users: [3], RSN: [4]}}" Message="!(loc.ProgressTextRegisterComPlus)" />
998 <ProgressText Action="RegisterFonts" Template="Font: [1]" Message="!(loc.ProgressTextRegisterFonts)" />
999 <ProgressText Action="RegisterProduct" Template="[1]" Message="!(loc.ProgressTextRegisterProduct)" />
1000 <ProgressText Action="RegisterTypeLibraries" Template="LibID: [1]" Message="!(loc.ProgressTextRegisterTypeLibraries)" />
1001 <ProgressText Action="RegisterUser" Template="[1]" Message="!(loc.ProgressTextRegisterUser)" />
1002 <ProgressText Action="RemoveDuplicateFiles" Template="File: [1], Directory: [9]" Message="!(loc.ProgressTextRemoveDuplicateFiles)" />
1003 <ProgressText Action="RemoveEnvironmentStrings" Template="Name: [1], Value: [2], Action [3]" Message="!(loc.ProgressTextRemoveEnvironmentStrings)" />
1004 <ProgressText Action="RemoveExistingProducts" Template="Application: [1], Command line: [2]" Message="!(loc.ProgressTextRemoveExistingProducts)" />
1005 <ProgressText Action="RemoveFiles" Template="File: [1], Directory: [9]" Message="!(loc.ProgressTextRemoveFiles)" />
1006 <ProgressText Action="RemoveFolders" Template="Folder: [1]" Message="!(loc.ProgressTextRemoveFolders)" />
1007 <ProgressText Action="RemoveIniValues" Template="File: [1], Section: [2], Key: [3], Value: [4]" Message="!(loc.ProgressTextRemoveIniValues)" />
1008 <ProgressText Action="RemoveODBC" Message="!(loc.ProgressTextRemoveODBC)" />
1009 <ProgressText Action="RemoveRegistryValues" Template="Key: [1], Name: [2]" Message="!(loc.ProgressTextRemoveRegistryValues)" />
1010 <ProgressText Action="RemoveShortcuts" Template="Shortcut: [1]" Message="!(loc.ProgressTextRemoveShortcuts)" />
1011 <ProgressText Action="RMCCPSearch" Message="!(loc.ProgressTextRMCCPSearch)" />
1012 <ProgressText Action="SelfRegModules" Template="File: [1], Folder: [2]" Message="!(loc.ProgressTextSelfRegModules)" />
1013 <ProgressText Action="SelfUnregModules" Template="File: [1], Folder: [2]" Message="!(loc.ProgressTextSelfUnregModules)" />
1014 <ProgressText Action="SetODBCFolders" Message="!(loc.ProgressTextSetODBCFolders)" />
1015 <ProgressText Action="StartServices" Template="Service: [1]" Message="!(loc.ProgressTextStartServices)" />
1016 <ProgressText Action="StopServices" Template="Service: [1]" Message="!(loc.ProgressTextStopServices)" />
1017 <ProgressText Action="UnpublishComponents" Template="Component ID: [1], Qualifier: [2]" Message="!(loc.ProgressTextUnpublishComponents)" />
1018 <ProgressText Action="UnpublishFeatures" Template="Feature: [1]" Message="!(loc.ProgressTextUnpublishFeatures)" />
1019 <ProgressText Action="UnregisterClassInfo" Template="Class Id: [1]" Message="!(loc.ProgressTextUnregisterClassInfo)" />
1020 <ProgressText Action="UnregisterComPlus" Template="AppId: [1]{{, AppType: [2]}}" Message="!(loc.ProgressTextUnregisterComPlus)" />
1021 <ProgressText Action="UnregisterExtensionInfo" Template="Extension: [1]" Message="!(loc.ProgressTextUnregisterExtensionInfo)" />
1022 <ProgressText Action="UnregisterFonts" Template="Font: [1]" Message="!(loc.ProgressTextUnregisterFonts)" />
1023 <ProgressText Action="UnregisterMIMEInfo" Template="MIME Content Type: [1], Extension: [2]" Message="!(loc.ProgressTextUnregisterMIMEInfo)" />
1024 <ProgressText Action="UnregisterProgIdInfo" Template="ProgId: [1]" Message="!(loc.ProgressTextUnregisterProgIdInfo)" />
1025 <ProgressText Action="UnregisterTypeLibraries" Template="LibID: [1]" Message="!(loc.ProgressTextUnregisterTypeLibraries)" />
1026 <ProgressText Action="WriteEnvironmentStrings" Template="Name: [1], Value: [2], Action [3]" Message="!(loc.ProgressTextWriteEnvironmentStrings)" />
1027 <ProgressText Action="WriteIniValues" Template="File: [1], Section: [2], Key: [3], Value: [4]" Message="!(loc.ProgressTextWriteIniValues)" />
1028 <ProgressText Action="WriteRegistryValues" Template="Key: [1], Name: [2], Value: [3]" Message="!(loc.ProgressTextWriteRegistryValues)" />
1029 <ProgressText Action="Advertise" Message="!(loc.ProgressTextAdvertise)" />
1030 <ProgressText Action="GenerateScript" Template="[1]" Message="!(loc.ProgressTextGenerateScript)" />
1031 <ProgressText Action="InstallSFPCatalogFile" Template="File: [1], Dependencies: [2]" Message="!(loc.ProgressTextInstallSFPCatalogFile)" />
1032 <ProgressText Action="MsiPublishAssemblies" Template="Application Context:[1], Assembly Name:[2]" Message="!(loc.ProgressTextMsiPublishAssemblies)" />
1033 <ProgressText Action="MsiUnpublishAssemblies" Template="Application Context:[1], Assembly Name:[2]" Message="!(loc.ProgressTextMsiUnpublishAssemblies)" />
1034 <ProgressText Action="Rollback" Template="[1]" Message="!(loc.ProgressTextRollback)" />
1035 <ProgressText Action="RollbackCleanup" Template="File: [1]" Message="!(loc.ProgressTextRollbackCleanup)" />
1036 <ProgressText Action="UnmoveFiles" Template="File: [1], Directory: [9]" Message="!(loc.ProgressTextUnmoveFiles)" />
1037 <ProgressText Action="UnpublishProduct" Message="!(loc.ProgressTextUnpublishProduct)" />
1038
1039 <UIText Id="bytes" Value="!(loc.UITextbytes)" />
1040 <UIText Id="GB" Value="!(loc.UITextGB)" />
1041 <UIText Id="KB" Value="!(loc.UITextKB)" />
1042 <UIText Id="MB" Value="!(loc.UITextMB)" />
1043 <UIText Id="AbsentPath" Value="-" />
1044 <UIText Id="MenuAbsent" Value="!(loc.UITextMenuAbsent)" />
1045 <UIText Id="MenuAdvertise" Value="!(loc.UITextMenuAdvertise)" />
1046 <UIText Id="MenuAllCD" Value="!(loc.UITextMenuAllCD)" />
1047 <UIText Id="MenuAllLocal" Value="!(loc.UITextMenuAllLocal)" />
1048 <UIText Id="MenuAllNetwork" Value="!(loc.UITextMenuAllNetwork)" />
1049 <UIText Id="MenuCD" Value="!(loc.UITextMenuCD)" />
1050 <UIText Id="MenuLocal" Value="!(loc.UITextMenuLocal)" />
1051 <UIText Id="MenuNetwork" Value="!(loc.UITextMenuNetwork)" />
1052 <UIText Id="ScriptInProgress" Value="!(loc.UITextScriptInProgress)" />
1053 <UIText Id="SelAbsentAbsent" Value="!(loc.UITextSelAbsentAbsent)" />
1054 <UIText Id="SelAbsentAdvertise" Value="!(loc.UITextSelAbsentAdvertise)" />
1055 <UIText Id="SelAbsentCD" Value="!(loc.UITextSelAbsentCD)" />
1056 <UIText Id="SelAbsentLocal" Value="!(loc.UITextSelAbsentLocal)" />
1057 <UIText Id="SelAbsentNetwork" Value="!(loc.UITextSelAbsentNetwork)" />
1058 <UIText Id="SelAdvertiseAbsent" Value="!(loc.UITextSelAdvertiseAbsent)" />
1059 <UIText Id="SelAdvertiseAdvertise" Value="!(loc.UITextSelAdvertiseAdvertise)" />
1060 <UIText Id="SelAdvertiseCD" Value="!(loc.UITextSelAdvertiseCD)" />
1061 <UIText Id="SelAdvertiseLocal" Value="!(loc.UITextSelAdvertiseLocal)" />
1062 <UIText Id="SelAdvertiseNetwork" Value="!(loc.UITextSelAdvertiseNetwork)" />
1063 <UIText Id="SelCDAbsent" Value="!(loc.UITextSelCDAbsent)" />
1064 <UIText Id="SelCDAdvertise" Value="!(loc.UITextSelCDAdvertise)" />
1065 <UIText Id="SelCDCD" Value="!(loc.UITextSelCDCD)" />
1066 <UIText Id="SelCDLocal" Value="!(loc.UITextSelCDLocal)" />
1067 <UIText Id="SelChildCostNeg" Value="!(loc.UITextSelChildCostNeg)" />
1068 <UIText Id="SelChildCostPos" Value="!(loc.UITextSelChildCostPos)" />
1069 <UIText Id="SelCostPending" Value="!(loc.UITextSelCostPending)" />
1070 <UIText Id="SelLocalAbsent" Value="!(loc.UITextSelLocalAbsent)" />
1071 <UIText Id="SelLocalAdvertise" Value="!(loc.UITextSelLocalAdvertise)" />
1072 <UIText Id="SelLocalCD" Value="!(loc.UITextSelLocalCD)" />
1073 <UIText Id="SelLocalLocal" Value="!(loc.UITextSelLocalLocal)" />
1074 <UIText Id="SelLocalNetwork" Value="!(loc.UITextSelLocalNetwork)" />
1075 <UIText Id="SelNetworkAbsent" Value="!(loc.UITextSelNetworkAbsent)" />
1076 <UIText Id="SelNetworkAdvertise" Value="!(loc.UITextSelNetworkAdvertise)" />
1077 <UIText Id="SelNetworkLocal" Value="!(loc.UITextSelNetworkLocal)" />
1078 <UIText Id="SelNetworkNetwork" Value="!(loc.UITextSelNetworkNetwork)" />
1079 <UIText Id="SelParentCostNegNeg" Value="!(loc.UITextSelParentCostNegNeg)" />
1080 <UIText Id="SelParentCostNegPos" Value="!(loc.UITextSelParentCostNegPos)" />
1081 <UIText Id="SelParentCostPosNeg" Value="!(loc.UITextSelParentCostPosNeg)" />
1082 <UIText Id="SelParentCostPosPos" Value="!(loc.UITextSelParentCostPosPos)" />
1083 <UIText Id="TimeRemaining" Value="!(loc.UITextTimeRemaining)" />
1084 <UIText Id="VolumeCostAvailable" Value="!(loc.UITextVolumeCostAvailable)" />
1085 <UIText Id="VolumeCostDifference" Value="!(loc.UITextVolumeCostDifference)" />
1086 <UIText Id="VolumeCostRequired" Value="!(loc.UITextVolumeCostRequired)" />
1087 <UIText Id="VolumeCostSize" Value="!(loc.UITextVolumeCostSize)" />
1088 <UIText Id="VolumeCostVolume" Value="!(loc.UITextVolumeCostVolume)" />
1089
1090 <!-- Own error messages -->
1091 <Error Id="25001" Message="!(loc.Error25001)" />
1092
1093 <!-- The text used in front of the build number -->
1094 <Property Id="Version_text" Value="Version" />
1095
1096 <!-- Define an alias for the font to be used in dialogs -->
1097 <Property Id="DlgTitleFont" Value="{&amp;DlgFontBold8}" />
1098
1099 <!-- This property preselects the "Don't agree" radio button in the license page -->
1100 <Property Id="IAgree" Value="No" />
1101
1102 <!-- Icon files used for the UI -->
1103 <Binary Id="infoico" SourceFile="$(env.VBOX_PATH_WIN_INST_SRC)\Binary\Info.ico" />
1104 <Binary Id="exclico" SourceFile="$(env.VBOX_PATH_WIN_INST_SRC)\Binary\Exclamation.ico" />
1105 <Binary Id="folderupico" SourceFile="$(env.VBOX_PATH_WIN_INST_SRC)\Binary\Up.ico" />
1106 <Binary Id="foldernewico" SourceFile="$(env.VBOX_PATH_WIN_INST_SRC)\Binary\New.ico" />
1107 <Binary Id="removico" SourceFile="$(env.VBOX_PATH_WIN_INST_SRC)\Binary\Remove.ico" />
1108 <Binary Id="repairic" SourceFile="$(env.VBOX_PATH_WIN_INST_SRC)\Binary\Repair.ico" />
1109
1110 <!-- Graphic files used for the UI -->
1111 <!-- See: http://wix.sourceforge.net/manual-wix3/WixUI_customizations.htm -->
1112 <Binary Id="bannerjpg" SourceFile="$(env.VBOX_PATH_WIN_INST_SRC)\Binary\Banner.jpg" />
1113 <Binary Id="dlgjpg" SourceFile="$(env.VBOX_BRAND_WIN_INST_DLGJPG)" />
1114
1115 <!-- Aliases for the graphic files -->
1116 <Property Id="InfoIcon" Value="infoico" />
1117 <Property Id="ExclamationIcon" Value="exclico" />
1118 <Property Id="RemoveIcon" Value="removico" />
1119 <Property Id="RepairIcon" Value="repairic" />
1120 <Property Id="DialogBitmap" Value="dlgjpg" />
1121 <Property Id="BannerBitmap" Value="bannerjpg" />
1122 <Property Id="FolderUp" Value="folderupico" />
1123 <Property Id="FolderNew" Value="foldernewico" />
1124
1125 <!-- Property which defines if we need to show the customization dialog or not.
1126 We only show the dialog on new installs to let the users choose the components to install. -->
1127 <Property Id="VBOX_SHOW_CUSTOMIZE_DLG" Value="((PREVIOUSVERSIONSINSTALLED OR NEWERVERSIONDETECTED) OR ((NOT PREVIOUSVERSIONSINSTALLED) AND (NOT NEWERVERSIONDETECTED)))" />
1128<?if $(env.VBOX_WITH_LICENSE_DISPLAY) = "yes" ?>
1129 <!-- Property which defines whether the license dialog will be shown or not. -->
1130 <Property Id="VBOX_SHOW_LICENSE_DLG" Value="1" />
1131<?endif?>
1132<?if $(env.VBOX_WITH_SERIALNUMBER_INSTALL) = "yes2" ?>
1133 <!-- Property which defines whether the installer checks the serial number or not. -->
1134 <Property Id="VBOX_SHOW_SERIAL_CHECK_DLG" Value="1" />
1135<?endif?>
1136<?if $(env.VBOX_WITH_QTGUI) = "no" ?>
1137 <!-- Property which defines whether to show the second customization dialog. This second customization
1138 dialog only is needed for GUI-based options, so skip if we either don't ship FE/Qt or don't show
1139 the (first) customization dialog. -->
1140 <Property Id="VBOX_SHOW_CUSTOMIZE2_DLG" Value="VBOX_SHOW_CUSTOMIZE_DLG" />
1141<?endif?>
1142
1143
1144 <!-- In graphical (attended) mode we always choose a custom installation to let the user chose. -->
1145 <Property Id="InstallMode" Value="!(loc.InstallModeCustom)" />
1146
1147 <!-- Dialog routing table (sort-of truth table).
1148 Here (and only here!) the routing for the customized dialogs are defined, e.g.
1149 what happens next when pressing the "Next" or "Back" buttons on a dialog.
1150
1151 This can vary based on the defines we (don't) set above or custom actions in our
1152 install helper DLL. -->
1153
1154 <!-- Note: All values except 0 and "" (empty string) are interpreted as TRUE. -->
1155
1156 <Publish Dialog="VBoxWelcomeDlg" Control="Next" Event="NewDialog" Value="VBoxLicenseAgreementDlg" Condition="VBOX_SHOW_LICENSE_DLG" />
1157 <Publish Dialog="VBoxWelcomeDlg" Control="Next" Event="NewDialog" Value="VBoxCheckSerialDlg" Condition="(NOT VBOX_SHOW_LICENSE_DLG) AND VBOX_SHOW_SERIAL_CHECK_DLG" />
1158 <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)" />
1159 <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)" />
1160
1161 <Publish Dialog="VBoxLicenseAgreementDlg" Control="Next" Event="NewDialog" Value="VBoxCheckSerialDlg" Condition="VBOX_SHOW_SERIAL_CHECK_DLG" />
1162 <Publish Dialog="VBoxLicenseAgreementDlg" Control="Next" Event="NewDialog" Value="VBoxCustomizeDlg" Condition="(NOT VBOX_SHOW_SERIAL_CHECK_DLG) AND (VBOX_SHOW_CUSTOMIZE_DLG)" />
1163 <Publish Dialog="VBoxLicenseAgreementDlg" Control="Next" Event="NewDialog" Value="VBoxVerifyReadyDlg" Condition="(NOT VBOX_SHOW_SERIAL_CHECK_DLG) AND (NOT VBOX_SHOW_CUSTOMIZE_DLG)" />
1164 <Publish Dialog="VBoxLicenseAgreementDlg" Control="Back" Event="NewDialog" Value="VBoxWelcomeDlg" />
1165
1166 <Publish Dialog="VBoxCheckSerialDlg" Control="Back" Event="NewDialog" Value="VBoxLicenseAgreementDlg" Condition="VBOX_SHOW_LICENSE_DLG" />
1167 <Publish Dialog="VBoxCheckSerialDlg" Control="Back" Event="NewDialog" Value="VBoxWelcomeDlg" Condition="NOT VBOX_SHOW_LICENSE_DLG" />
1168 <Publish Dialog="VBoxCheckSerialDlg" Control="Next" Event="DoAction" Value="ca_CheckSerial" Order="1" />
1169 <Publish Dialog="VBoxCheckSerialDlg" Control="Next" Event="NewDialog" Value="VBoxCustomizeDlg" Condition="(PREVIOUSVERSIONSINSTALLED OR NEWERVERSIONDETECTED) AND (VBOX_SERIAL_IS_VALID=&quot;1&quot;)" />
1170 <Publish Dialog="VBoxCheckSerialDlg" Control="Next" Event="NewDialog" Value="VBoxCustomizeDlg" Condition="(NOT PREVIOUSVERSIONSINSTALLED) AND (NOT NEWERVERSIONDETECTED) AND (VBOX_SERIAL_IS_VALID=&quot;1&quot;)" />
1171 <Publish Dialog="VBoxCheckSerialDlg" Control="Next" Event="NewDialog" Value="VBoxWrongSerialDlg" Condition="VBOX_SERIAL_IS_VALID=&quot;0&quot;" />
1172
1173 <Publish Dialog="VBoxWrongSerialDlg" Control="Back" Event="NewDialog" Value="VBoxCheckSerialDlg" />
1174
1175 <Publish Dialog="VBoxBrowseDlg" Control="OK" Event="SetTargetPath" Value="[VBOX_TARGET_DIR]" Order="1" />
1176 <Publish Dialog="VBoxBrowseDlg" Control="OK" Event="EndDialog" Value="Return" Order="2" />
1177 <Publish Dialog="VBoxBrowseDlg" Control="Cancel" Event="Reset" Value="0" Order="1" />
1178 <Publish Dialog="VBoxBrowseDlg" Control="Cancel" Event="EndDialog" Value="Return" Order="2" />
1179
1180 <Publish Dialog="VBoxInvalidTargetDirDlg" Control="Back" Event="NewDialog" Value="VBoxCustomizeDlg" />
1181
1182 <!-- Note: We have to set (1) or unset ({}) the properties first (see order #), as those will be needed for further routing.
1183 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. -->
1184
1185 <!-- Check if the chosen installation directory turned out to be invalid by calling our installation helper DLL
1186 and performing a custom action. See @bugref{10616} -->
1187 <Publish Dialog="VBoxCustomizeDlg" Control="Next" Event="DoAction" Value="ca_CheckTargetDirPre" Order="1" />
1188 <Publish Dialog="VBoxCustomizeDlg" Control="Next" Property="VBOX_SHOW_INVALID_TARGET_DLG" Value="1" Order="2" Condition="VBox_Target_Dir_Is_Valid=&quot;0&quot;" />
1189 <Publish Dialog="VBoxCustomizeDlg" Control="Next" Property="VBOX_SHOW_INVALID_TARGET_DLG" Value="{}" Order="3" Condition="VBox_Target_Dir_Is_Valid=&quot;1&quot;" />
1190 <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;)" />
1191 <Publish Dialog="VBoxCustomizeDlg" Control="Next" Property="VBOX_SHOW_WARN_PYTHONAPI_DLG" Value="{}" Order="5" Condition="(&amp;VBoxPython&lt;3)" />
1192 <Publish Dialog="VBoxCustomizeDlg" Control="Next" Property="VBOX_SHOW_WARN_DISCONNECTIFACES_DLG" Value="1" Order="6" Condition="&amp;VBoxNetworkFlt=3" />
1193 <Publish Dialog="VBoxCustomizeDlg" Control="Next" Property="VBOX_SHOW_WARN_DISCONNECTIFACES_DLG" Value="{}" Order="7" Condition="&amp;VBoxNetworkFlt&lt;3" />
1194
1195 <!-- Show an error dialog if the chosen installation directory was found to be invalid. See @bugref{10616} -->
1196 <Publish Dialog="VBoxCustomizeDlg" Control="Next" Event="NewDialog" Value="VBoxInvalidTargetDirDlg" Order="10" Condition="VBOX_SHOW_INVALID_TARGET_DLG" />
1197 <Publish Dialog="VBoxCustomizeDlg" Control="Next" Event="NewDialog" Value="VBoxWarnDisconNetIfacesDlg" Order="20" Condition="VBOX_SHOW_WARN_DISCONNECTIFACES_DLG and (NOT VBOX_SHOW_INVALID_TARGET_DLG)" />
1198 <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)" />
1199 <!-- Only allow going to the next stage if the chosen installation directory is valid. See @bugref{10616} -->
1200 <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)" />
1201 <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)" />
1202 <Publish Dialog="VBoxCustomizeDlg" Control="Back" Event="NewDialog" Value="VBoxCheckSerialDlg" Condition="VBOX_SHOW_SERIAL_CHECK_DLG" />
1203 <Publish Dialog="VBoxCustomizeDlg" Control="Back" Event="NewDialog" Value="VBoxLicenseAgreementDlg" Condition="NOT VBOX_SHOW_SERIAL_CHECK_DLG AND VBOX_SHOW_LICENSE_DLG" />
1204 <Publish Dialog="VBoxCustomizeDlg" Control="Back" Event="NewDialog" Value="VBoxWelcomeDlg" Condition="NOT VBOX_SHOW_SERIAL_CHECK_DLG AND NOT VBOX_SHOW_LICENSE_DLG" />
1205
1206 <Publish Dialog="VBoxWarnDisconNetIfacesDlg" Control="Next" Event="NewDialog" Value="VBoxVerifyReadyDlg" Condition="(NOT VBOX_SHOW_CUSTOMIZE2_DLG) AND (NOT VBOX_SHOW_WARN_PYTHONAPI_DLG)" />
1207 <Publish Dialog="VBoxWarnDisconNetIfacesDlg" Control="Next" Event="NewDialog" Value="VBoxCustomize2Dlg" Condition="VBOX_SHOW_CUSTOMIZE2_DLG AND (NOT VBOX_SHOW_WARN_PYTHONAPI_DLG)" />
1208 <Publish Dialog="VBoxWarnDisconNetIfacesDlg" Control="Next" Event="NewDialog" Value="VBoxWarnPythonDlg" Condition="VBOX_SHOW_WARN_PYTHONAPI_DLG" />
1209 <!-- Note: VBoxWarnDisconNetIfacesDlg only has a "Cancel" button which aborts the installation. -->
1210
1211 <Publish Dialog="VBoxWarnPythonDlg" Control="Next" Event="NewDialog" Value="VBoxCustomize2Dlg" Condition="VBOX_SHOW_CUSTOMIZE2_DLG" />
1212 <Publish Dialog="VBoxWarnPythonDlg" Control="Next" Event="NewDialog" Value="VBoxVerifyReadyDlg" Condition="NOT VBOX_SHOW_CUSTOMIZE2_DLG" />
1213 <!-- Note: VBoxWarnPythonDlg only has a "Cancel" button which aborts the installation. -->
1214
1215 <Publish Dialog="VBoxCustomize2Dlg" Control="Back" Event="NewDialog" Value="VBoxCustomizeDlg" />
1216 <Publish Dialog="VBoxCustomize2Dlg" Control="Next" Event="NewDialog" Value="VBoxVerifyReadyDlg" />
1217
1218 <Publish Dialog="VBoxVerifyReadyDlg" Control="Back" Event="NewDialog" Value="VBoxCustomize2Dlg" Condition="VBOX_SHOW_CUSTOMIZE2_DLG" />
1219 <Publish Dialog="VBoxVerifyReadyDlg" Control="Back" Event="NewDialog" Value="VBoxCustomizeDlg" Condition="NOT VBOX_SHOW_CUSTOMIZE2_DLG" />
1220 <Publish Dialog="VBoxVerifyReadyDlg" Control="Next" Event="NewDialog" Value="VBoxVerifyReadyDlg" />
1221
1222 <!-- This defines the order in which the GUI panels will be shown to the user. -->
1223 <InstallUISequence>
1224
1225<?if $(env.VBOX_WITH_CRT_PACKING) = "no" ?>
1226 <Custom Action="ca_IsMSCRTInstalled" After="AppSearch" />
1227<?endif?>
1228 <Custom Action="ca_CheckTargetDirPre" After="AppSearch" /> <!-- Required for launch conditions. See @bugref{10616} -->
1229 <Custom Action="ca_OriginalTargetDir" After="FileCost" Condition="(NOT INSTALLDIR) AND (NOT EXISTINGINSTALLDIR)" />
1230 <Custom Action="ca_DefaultTargetDir" After="FileCost" Condition="NOT Installed AND (NOT INSTALLDIR) AND EXISTINGINSTALLDIR" />
1231 <Custom Action="ca_IsWindows10" After="CostFinalize" />
1232
1233<?if $(env.VBOX_WITH_PYTHON) = "yes" ?>
1234 <!-- Check for the Python core package and other dependencies first.
1235 The install helper code will set the public properties VBOX_PYTHON_INSTALLED / VBOX_PYTHON_DEPS_INSTALLED. -->
1236 <Custom Action="ca_IsPythonInstalled" After="CostFinalize" Condition="1" />
1237 <Custom Action="ca_ArePythonAPIDepsInstalled" After="CostFinalize" Condition="1" />
1238<?endif?>
1239 <FindRelatedProducts Suppress="no" Condition="1" />
1240
1241 <Show Dialog="VBoxFatalErrorDlg" OnExit="error" />
1242 <Show Dialog="VBoxUserExitDlg" OnExit="cancel" />
1243 <Show Dialog="VBoxPrepareDlg" After="LaunchConditions" />
1244 <Show Dialog="VBoxWelcomeDlg" After="MigrateFeatureStates" Condition="NOT Installed" />
1245 <Show Dialog="VBoxResumeDlg" After="VBoxWelcomeDlg" Condition="Installed AND (RESUME OR Preselected)" />
1246 <Show Dialog="VBoxMaintenanceWelcomeDlg" After="VBoxResumeDlg" Condition="Installed AND (NOT RESUME) AND (NOT Preselected)" />
1247 <Show Dialog="VBoxExitDlg" OnExit="success" Condition="1" />
1248 <Show Dialog="VBoxProgressDlg" After="VBoxMaintenanceWelcomeDlg" />
1249
1250 </InstallUISequence>
1251
1252 <!-- The AdminUISequence table lists actions that the installer calls in sequence when the top-level ADMIN
1253 action is executed and the internal user interface level is set to full UI or reduced UI. The installer
1254 skips the actions in this table if the user interface level is set to basic UI or no UI. -->
1255 <AdminUISequence>
1256 <Show Dialog="VBoxFatalErrorDlg" OnExit="error" />
1257 <Show Dialog="VBoxUserExitDlg" OnExit="cancel" />
1258 <Show Dialog="VBoxExitDlg" OnExit="success" />
1259 </AdminUISequence>
1260 </UI>
1261
1262</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