VirtualBox

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

Last change on this file was 108587, checked in by vboxsync, 7 weeks ago

Windows host installer/NLS: Trying to beat some common file structure into all NLS files. This should make it a LOT easier to compare contents or sync the files. Reference always is en_US. When adding / removing / changing NLS entries, make sure to also edit all other language files to keep this stuff in sync in the future [build fix, forgot files].

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

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