VirtualBox

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

Last change on this file since 100108 was 98103, checked in by vboxsync, 23 months ago

Copyright year updates by scm.

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

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