VirtualBox

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

Last change on this file since 48669 was 45326, checked in by vboxsync, 12 years ago

Misspelled VBox (comment).

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