VirtualBox

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

最後變更 在這個檔案從107296是 107296,由 vboxsync 提交於 3 月 前

Windows/Networking: Removed NDIS 5-based drivers, as we don't support Windows host OSes anymore which require this NDIS version -- only NDIS 6.0+ is supported now. bugref:10819

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

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