home *** CD-ROM | disk | FTP | other *** search
/ Chip 2005 February / CMCD0205.ISO / Software / Freeware / Programare / Sharp / SharpDevelop_1.0.3.1761_Setup.exe / WixProject.xpt < prev    next >
Extensible Markup Language  |  2004-07-05  |  26KB  |  452 lines

  1. <?xml version="1.0"?>
  2. <Template originator   = "Mike Krueger"
  3.           created      = "06/10/2001"
  4.           lastModified = "02/01/2003">
  5.     
  6.     <!-- Template Header -->
  7.     <TemplateConfiguration>
  8.         <Name>${res:Templates.Project.SetupProject.Name}</Name>
  9.         <Category>Setup</Category>
  10.         <Icon>Icons.32x32.EmptyProjectIcon</Icon>
  11.         <LanguageName>WIX</LanguageName>
  12.         <Description>${res:Templates.Project.SetupProject.Description}</Description>
  13.     </TemplateConfiguration>
  14.     
  15.     <!-- Actions -->
  16.     <Actions>
  17.         <Open filename = "Setup.wxs"/>
  18.     </Actions>
  19.     
  20.     <!-- Template Content -->
  21.     <Combine name = "${ProjectName}" directory = ".">
  22.         <Options>
  23.             <StartupProject>${ProjectName}</StartupProject>
  24.         </Options>
  25.         
  26.         <Project name = "${ProjectName}" directory = ".">
  27.             <Options/>
  28.             <Files>
  29.                 <File name="Setup.wxs"><![CDATA[<?xml version='1.0'?>
  30. <Wix xmlns='http://schemas.microsoft.com/wix/2003/01/wi'>
  31.     
  32.     <Product
  33.         Id           = 'A0AB2551-A579-42D3-9A90-D6424B3AC2CD'
  34.         Name         = 'Your Application'
  35.         Language     = '1033'
  36.         Version      = '1.0.0.0'
  37.         Manufacturer = 'Your Company'
  38.     >
  39.         
  40.         <Package
  41.             Id               = 'A0AB2551-A579-42D3-9A90-D6424B3AC2CD'
  42.             Description      = '#Description'
  43.             Comments         = 'Comments'
  44.             InstallerVersion = '200'
  45.             Compressed       = 'yes'
  46.         />
  47.         
  48.         <Property Id="AcceptLicense">No</Property>
  49.         
  50.         <!--BUTTON TEXTS-->
  51.         <Property Id="Button_Back">< &Back</Property>
  52.         <Property Id="Button_Next">&Next ></Property>
  53.         <Property Id="Button_Finish">&Finish</Property>
  54.         
  55.         <Property Id="Button_OK">OK</Property>
  56.         <Property Id="Button_Cancel">Cancel</Property>
  57.         
  58.         <Property Id="Button_Browse">Br&owse...</Property>
  59.         <Property Id="Button_Exit">&Exit</Property>
  60.         <Property Id="Button_Ignore">&Ignore</Property>
  61.         <Property Id="Button_Install">&Install</Property>
  62.         <Property Id="Button_Remove">&Remove</Property>
  63.         <Property Id="Button_Repair">&Repair</Property>
  64.         <Property Id="Button_Reset">&Reset</Property>
  65.         <Property Id="Button_Resume">&Resume</Property>
  66.         <Property Id="Button_Retry">&Retry</Property>
  67.         <Property Id="Button_Return">&Return</Property>
  68.         
  69.         <Property Id="Button_Yes">&Yes</Property>
  70.         <Property Id="Button_No">&No</Property>
  71.         <!--END BUTTON TEXTS-->
  72.         
  73.         <CustomAction Id="SET_TARGETDIR" Property="TARGETDIR" Value="[ProgramFilesFolder]\[ProductName]" Execute="firstSequence" />
  74.         
  75.         <!-- INSTALL DESCRIPTION -->
  76.         <Media Id='1' Cabinet='contents.cab' EmbedCab='yes' />
  77.         
  78.         <Directory Id='TARGETDIR' Name='SourceDir'>
  79.         </Directory>
  80.         
  81.         <Feature Id='MyFeature' Title='Required Files' Level='1'>
  82.         </Feature>
  83.         
  84.         <!-- END INSTALL DESCRIPTION -->
  85.         <UI>
  86.             <!-- FONT DEFINITION -->
  87.             <Property Id="TitleFont">{&DlgFontBold8}</Property>
  88.             <Property Id="BigFont">{&VerdanaBold13}</Property>
  89.             <Property Id="DefaultUIFont">DlgFont8</Property>
  90.             
  91.             <TextStyle Id="DlgFont8" FaceName="Tahoma" Size="8" />
  92.             <TextStyle Id="DlgFontBold8" FaceName="Tahoma" Size="8" Bold="yes" />
  93.             <TextStyle Id="VerdanaBold13" FaceName="Verdana" Size="13" Bold="yes" />
  94.             <!-- END FONT DEFINITION -->
  95.             
  96.             <!-- DIALOG DEFINITION -->
  97.             <Dialog Id="WelcomeDialog" Width="370" Height="270" Title="[ProductName] [Setup]">
  98.                 <Control Id="Next" Type="PushButton" X="236" Y="243" Width="56" Height="17" Default="yes" Text="[Button_Next]">
  99.                     <Publish Event="NewDialog" Value="ViewLicenseAgreement">1</Publish>
  100.                 </Control>
  101.                 <Control Id="Cancel" Type="PushButton" X="304" Y="243" Width="56" Height="17" Cancel="yes" Text="[Button_Cancel]">
  102.                     <Publish Event="SpawnDialog" Value="CancelDialog">1</Publish>
  103.                 </Control>
  104.                 <Control Id="Bitmap" Type="Bitmap" X="0" Y="0" Width="370" Height="234" FixedSize="yes" TabSkip="no" Text="dialog.bmp" />
  105.                 <Control Id="Back" Type="PushButton" X="180" Y="243" Width="56" Height="17" Disabled="yes" Text="[Button_Back]" />
  106.                 
  107.                 <Control Id="BottomLine" Type="Line" X="0" Y="234" Width="374" Height="0" />
  108.                 
  109.                 <Control Id="Description" Type="Text" X="135" Y="70" Width="220" Height="90" Transparent="yes" NoPrefix="yes">
  110.                     <Text>The installer will guide you through the steps required to install [ProductName] on your computer.</Text>
  111.                 </Control>
  112.                 <Control Id="Title" Type="Text" X="135" Y="20" Width="220" Height="60" Transparent="yes" NoPrefix="yes">
  113.                     <Text>[BigFont]Welcome to the [ProductName] installation</Text>
  114.                 </Control>
  115.             </Dialog>
  116.             
  117.             <Dialog Id="ViewLicenseAgreement" Width="370" Height="270" Title="[ProductName]">
  118.                 <Control Id="Buttons" Type="RadioButtonGroup" X="20" Y="187" Width="330" Height="40" Property="AcceptLicense" />
  119.                 
  120.                 <Control Id="Back" Type="PushButton" X="180" Y="243" Width="56" Height="17" Text="[Button_Back]">
  121.                     <Publish Event="NewDialog" Value="WelcomeDialog">1</Publish>
  122.                 </Control>
  123.                 
  124.                 <Control Id="Next" Type="PushButton" X="236" Y="243" Width="56" Height="17" Default="yes" Text="[Button_Next]">
  125.                     <Publish Event="NewDialog" Value="SelectFolderDialog">AcceptLicense = "Yes"</Publish>
  126.                     <Condition Action="disable">AcceptLicense <> "Yes"</Condition>
  127.                     <Condition Action="enable">AcceptLicense = "Yes"</Condition>
  128.                 </Control>
  129.                 
  130.                 <Control Id="Cancel" Type="PushButton" X="304" Y="243" Width="56" Height="17" Cancel="yes" Text="[Button_Cancel]">
  131.                     <Publish Event="SpawnDialog" Value="CancelDialog">1</Publish>
  132.                 </Control>
  133.                 
  134.                 <Control Id="BannerBitmap" Type="Bitmap" X="0" Y="0" Width="374" Height="44" FixedSize="yes" TabSkip="no" Text="banner.bmp" />
  135.                 
  136.                 <Control Id="AgreementText" Type="ScrollableText" X="20" Y="60" Width="330" Height="120" Sunken="yes" TabSkip="no">
  137.                     <Text src="$(sys.SOURCEFILEDIR)/license.rtf"/>
  138.                 </Control>
  139.                 
  140.                 <Control Id="BannerLine" Type="Line" X="0" Y="44" Width="374" Height="0" />
  141.                 <Control Id="BottomLine" Type="Line" X="4" Y="234" Width="370" Height="0" />
  142.                 <Control Id="Description" Type="Text" X="25" Y="23" Width="280" Height="15" Transparent="yes" NoPrefix="yes">
  143.                     <Text>Please read the following license agreement carefully!</Text>
  144.                 </Control>
  145.                 <Control Id="Title" Type="Text" X="15" Y="6" Width="200" Height="15" Transparent="yes" NoPrefix="yes">
  146.                     <Text>[TitleFont]End-User License Agreement</Text>
  147.                 </Control>
  148.             </Dialog>
  149.             <RadioGroup Property="AcceptLicense">
  150.                 <RadioButton Text="I &accept the terms in the License Agreement" X="5" Y="0" Width="300" Height="15">Yes</RadioButton>
  151.                 <RadioButton Text="I &do not accept the terms in the License Agreement" X="5" Y="20" Width="300" Height="15">No</RadioButton>
  152.             </RadioGroup>
  153.             
  154.             <Dialog Id="SelectFolderDialog" Width="370" Height="270" Title="[ProductName]" TrackDiskSpace="yes">
  155.                 <Control Id="Next" Type="PushButton" X="236" Y="243" Width="56" Height="17" Default="yes" Text="[Button_Next]">
  156.                     <Publish Event="NewDialog" Value="VerifyReadyDialog">1</Publish>
  157.                 </Control>
  158.                 
  159.                 <Control Id="Cancel" Type="PushButton" X="304" Y="243" Width="56" Height="17" Cancel="yes" Text="[Button_Cancel]">
  160.                     <Publish Event="SpawnDialog" Value="CancelDialog">1</Publish>
  161.                 </Control>
  162.                     
  163.                 <Control Id="Back" Type="PushButton" X="180" Y="243" Width="56" Height="17" Text="[Button_Back]">
  164.                     <Publish Event="NewDialog" Value="ViewLicenseAgreement">1</Publish>
  165.                 </Control>
  166.                 
  167.                 <Control Id="FolderEdit" Type="PathEdit" X="18" Y="126" Width="252" Height="18" Property="TARGETDIR" Sunken="yes" />
  168.                 
  169.                 <Control Id="Browse" Type="PushButton" X="276" Y="126" Width="90" Height="18" Text="[Button_Browse]">
  170.                     <Publish Property="_BrowseProperty" Value="TARGETDIR">1</Publish>
  171.                     <Publish Event="SpawnDialog" Value="BrowseDialog">1</Publish>
  172.                 </Control>
  173.                     
  174.                 <Control Id="Text" Type="Text" X="25" Y="70" Width="320" Height="40">
  175.                     <Text>To install in this folder, click "Next". To install to a different folder, enter it below or click "Browse".</Text>
  176.                 </Control>
  177.                 
  178.                 <Control Id="BannerBitmap" Type="Bitmap" X="0" Y="0" Width="374" Height="44" FixedSize="yes" Text="banner.bmp" />
  179.                 
  180.                 <Control Id="BannerLine" Type="Line" X="0" Y="44" Width="374" Height="0" />
  181.                 
  182.                 <Control Id="BottomLine" Type="Line" X="4" Y="234" Width="370" Height="0" />
  183.                 
  184.                 <Control Id="Description" Type="Text" X="25" Y="23" Width="280" Height="15" Transparent="yes" NoPrefix="yes">
  185.                     <Text>This is the folder where [ProductName] will be installed.</Text>
  186.                 </Control>
  187.                 
  188.                 <Control Id="Title" Type="Text" X="15" Y="6" Width="200" Height="15" Transparent="yes" NoPrefix="yes">
  189.                     <Text>[TitleFont]Select Installation Folder</Text>
  190.                 </Control>
  191.                 
  192.                 <Control Id="FolderLabel" Type="Text" X="20" Y="114" Width="348" Height="12" Text="&Folder:" />
  193.             </Dialog>
  194.             
  195.             <Dialog Id="VerifyReadyDialog" Width="370" Height="270" Title="[ProductName]" TrackDiskSpace="yes">
  196.                 <Control Id="Install" Type="PushButton" X="236" Y="243" Width="56" Height="17" Default="yes" Text="[Button_Install]">
  197.                     <Publish Event="EndDialog" Value="Return">OutOfDiskSpace <> 1</Publish>
  198.                     <Publish Event="SpawnDialog" Value="OutOfRbDiskDlg">OutOfDiskSpace = 1 AND OutOfNoRbDiskSpace = 0 AND (PROMPTROLLBACKCOST="P" OR NOT PROMPTROLLBACKCOST)</Publish>
  199.                     <Publish Event="EndDialog" Value="Return">OutOfDiskSpace = 1 AND OutOfNoRbDiskSpace = 0 AND PROMPTROLLBACKCOST="D"</Publish>
  200.                     <Publish Event="EnableRollback" Value="False">OutOfDiskSpace = 1 AND OutOfNoRbDiskSpace = 0 AND PROMPTROLLBACKCOST="D"</Publish>
  201.                     <Publish Event="SpawnDialog" Value="OutOfDiskDlg">(OutOfDiskSpace = 1 AND OutOfNoRbDiskSpace = 1) OR (OutOfDiskSpace = 1 AND PROMPTROLLBACKCOST="F")</Publish>
  202.                 </Control>
  203.                 
  204.                 <Control Id="Cancel" Type="PushButton" X="304" Y="243" Width="56" Height="17" Cancel="yes" Text="[Button_Cancel]">
  205.                     <Publish Event="SpawnDialog" Value="CancelDialog">1</Publish>
  206.                 </Control>
  207.                 
  208.                 <Control Id="BannerBitmap" Type="Bitmap" X="0" Y="0" Width="374" Height="44" FixedSize="yes" TabSkip="no" Text="banner.bmp" />
  209.                 <Control Id="Back" Type="PushButton" X="180" Y="243" Width="56" Height="17" Text="[Button_Back]">
  210.                     <!--                    <Publish Event="NewDialog" Value="AdminInstallPointDlg">InstallMode = "Server Image"</Publish>
  211.                     <Publish Event="NewDialog" Value="CustomizeDlg">InstallMode = "Custom" OR InstallMode = "Change"</Publish>
  212.                     <Publish Event="NewDialog" Value="MaintenanceTypeDlg">InstallMode = "Repair"</Publish> InstallMode = "Typical" OR InstallMode = "Complete" -->
  213.                     <Publish Event="NewDialog" Value="SelectFolderDialog"></Publish>
  214.                 </Control>
  215.                 
  216.                 <Control Id="Text" Type="Text" X="25" Y="70" Width="320" Height="80">
  217.                     <Text>Click Install to begin the installation.  If you want to review or change any of your installation settings, click Back.  Click Cancel to exit the wizard.</Text>
  218.                 </Control>
  219.                 <Control Id="BannerLine" Type="Line" X="0" Y="44" Width="374" Height="0" />
  220.                 <Control Id="BottomLine" Type="Line" X="4" Y="234" Width="370" Height="0" />
  221.                 <Control Id="Description" Type="Text" X="25" Y="23" Width="280" Height="15" Transparent="yes" NoPrefix="yes">
  222.                     <Text>The [Wizard] is ready to begin the [InstallMode] installation</Text>
  223.                 </Control>
  224.                 <Control Id="Title" Type="Text" X="15" Y="6" Width="200" Height="15" Transparent="yes" NoPrefix="yes">
  225.                     <Text>[TitleFont]Ready to Install</Text>
  226.                 </Control>
  227.             </Dialog>
  228.             
  229.             <Dialog Id="ProgressDialog" Width="370" Height="270" Title="[ProductName]" Modeless="yes">
  230.                 <Control Id="Cancel" Type="PushButton" X="304" Y="243" Width="56" Height="17" Default="yes" Cancel="yes" Text="[Button_Cancel]">
  231.                     <Publish Event="SpawnDialog" Value="CancelDialog">1</Publish>
  232.                 </Control>
  233.                 <Control Id="BannerBitmap" Type="Bitmap" X="0" Y="0" Width="374" Height="44" FixedSize="yes" TabSkip="no" Text="banner.bmp" />
  234.                 <Control Id="Back" Type="PushButton" X="180" Y="243" Width="56" Height="17" Disabled="yes" Text="[Button_Back]" />
  235.                 <Control Id="Next" Type="PushButton" X="236" Y="243" Width="56" Height="17" Disabled="yes" Text="[Button_Next]" />
  236.                 <Control Id="Text" Type="Text" X="35" Y="65" Width="300" Height="20">
  237.                     <Text>Please wait while [ProductName] is installed.</Text>
  238.                 </Control>
  239.                 <Control Id="BannerLine" Type="Line" X="0" Y="44" Width="374" Height="0" />
  240.                 <Control Id="BottomLine" Type="Line" X="4" Y="234" Width="370" Height="0" />
  241.                 <Control Id="Title" Type="Text" X="20" Y="15" Width="200" Height="15" Transparent="yes" NoPrefix="yes">
  242.                     <Text>Install [ProductName]</Text>
  243.                 </Control>
  244.                 <Control Id="ActionText" Type="Text" X="70" Y="100" Width="265" Height="10">
  245.                     <Subscribe Event="ActionText" Attribute="Text" />
  246.                 </Control>
  247.                 <Control Id="ProgressBar" Type="ProgressBar" X="35" Y="115" Width="300" Height="10" ProgressBlocks="yes" Text="Progress done">
  248.                     <Subscribe Event="SetProgress" Attribute="Progress" />
  249.                 </Control>
  250.                 <Control Id="StatusLabel" Type="Text" X="35" Y="100" Width="35" Height="10" Text="Status:" />
  251.             </Dialog>
  252.             
  253.             <Dialog Id="CancelDialog" Width="260" Height="85" Title="[ProductName] [Setup]" NoMinimize="yes">
  254.                 
  255.                 <Control Id="Text" Type="Text" X="48" Y="15" Width="194" Height="30">
  256.                     <Text>Are you sure you want to cancel [ProductName] installation?</Text>
  257.                 </Control>
  258.  
  259.                 <Control Id="Yes" Type="PushButton" X="72" Y="57" Width="56" Height="17" Text="[Button_Yes]">
  260.                     <Publish Event="EndDialog" Value="Exit">1</Publish>
  261.                 </Control>
  262.                 <Control Id="No" Type="PushButton" X="132" Y="57" Width="56" Height="17" Default="yes" Cancel="yes" Text="[Button_No]">
  263.                     <Publish Event="EndDialog" Value="Return">1</Publish>
  264.                 </Control>
  265.                 
  266.                 <Control Id="Icon" Type="Icon" X="15" Y="15" Width="24" Height="24" FixedSize="yes" IconSize="32" Text="info.bmp" />
  267.             </Dialog>
  268.             
  269.             <Dialog Id="BrowseDialog" Width="370" Height="270" Title="[ProductName] [Setup]" NoMinimize="yes">
  270.                 <Control Id="PathEdit" Type="PathEdit" X="84" Y="202" Width="261" Height="18" Property="_BrowseProperty" Indirect="yes" />
  271.                 <Control Id="OK" Type="PushButton" X="304" Y="243" Width="56" Height="17" Default="yes" Text="[Button_OK]">
  272.                     <Publish Event="EndDialog" Value="Return">1</Publish>
  273.                 </Control>
  274.                 <Control Id="Cancel" Type="PushButton" X="240" Y="243" Width="56" Height="17" Cancel="yes" Text="[Button_Cancel]">
  275.                     <Publish Event="Reset" Value="0">1</Publish>
  276.                     <Publish Event="EndDialog" Value="Return">1</Publish>
  277.                 </Control>
  278.                 <Control Id="ComboLabel" Type="Text" X="25" Y="58" Width="44" Height="10" TabSkip="no" Text="&Look in:" />
  279.                 <Control Id="DirectoryCombo" Type="DirectoryCombo" X="70" Y="55" Width="220" Height="80" Property="_BrowseProperty" Indirect="yes" Fixed="yes" Remote="yes">
  280.                     <Subscribe Event="IgnoreChange" Attribute="IgnoreChange" />
  281.                 </Control>
  282.                 <Control Id="Up" Type="PushButton" X="298" Y="55" Width="19" Height="19" Icon="yes" FixedSize="yes" IconSize="16" Text="up.bmp">
  283.                     <Publish Event="DirectoryListUp" Value="0">1</Publish>
  284.                 </Control>
  285.                 <Control Id="NewFolder" Type="PushButton" X="325" Y="55" Width="19" Height="19" Icon="yes" FixedSize="yes" IconSize="16" Text="new.bmp">
  286.                     <Publish Event="DirectoryListNew" Value="0">1</Publish>
  287.                 </Control>
  288.                 <Control Id="DirectoryList" Type="DirectoryList" X="25" Y="83" Width="320" Height="110" Property="_BrowseProperty" Sunken="yes" Indirect="yes" TabSkip="no" />
  289.                 <Control Id="PathLabel" Type="Text" X="25" Y="205" Width="59" Height="10" TabSkip="no" Text="&Folder name:" />
  290.                 <Control Id="BannerBitmap" Type="Bitmap" X="0" Y="0" Width="374" Height="44" FixedSize="yes" TabSkip="no" Text="banner.bmp" />
  291.                 <Control Id="BannerLine" Type="Line" X="0" Y="44" Width="374" Height="0" />
  292.                 <Control Id="BottomLine" Type="Line" X="4" Y="234" Width="370" Height="0" />
  293.                 <Control Id="Description" Type="Text" X="25" Y="23" Width="280" Height="15" Transparent="yes" NoPrefix="yes">
  294.                     <Text>Browse to the destination folder</Text>
  295.                 </Control>
  296.                 <Control Id="Title" Type="Text" X="15" Y="6" Width="200" Height="15" Transparent="yes" NoPrefix="yes">
  297.                     <Text>[TitleFont]Change current destination folder</Text>
  298.                 </Control>
  299.             </Dialog>
  300.             
  301.             <Dialog Id="UserExit" Width="370" Height="270" Title="[ProductName] [Setup]">
  302.                 <Control Id="Finish" Type="PushButton" X="236" Y="243" Width="56" Height="17" Default="yes" Cancel="yes" Text="[Button_Finish]">
  303.                     <Publish Event="EndDialog" Value="Exit">1</Publish>
  304.                 </Control>
  305.                 
  306.                 <Control Id="Cancel" Type="PushButton" X="304" Y="243" Width="56" Height="17" Disabled="yes" Text="[Button_Cancel]" />
  307.                 <Control Id="Bitmap" Type="Bitmap" X="0" Y="0" Width="370" Height="234" FixedSize="yes" TabSkip="no" Text="dialog.bmp" />
  308.                 <Control Id="Back" Type="PushButton" X="180" Y="243" Width="56" Height="17" Disabled="yes" Text="[Button_Back]" />
  309.                 <Control Id="BottomLine" Type="Line" X="0" Y="234" Width="374" Height="0" />
  310.                 <Control Id="Title" Type="Text" X="135" Y="20" Width="220" Height="60" Transparent="yes" NoPrefix="yes">
  311.                     <Text>[BigFont][ProductName] installation was interrupted</Text>
  312.                 </Control>
  313.                 <Control Id="Description1" Type="Text" X="135" Y="70" Width="220" Height="40" Transparent="yes" NoPrefix="yes">
  314.                     <Text>The installation was interrupted before [ProductName] could be installed. You need to restart the installer to try again.</Text>
  315.                 </Control>
  316.                 <Control Id="Description2" Type="Text" X="135" Y="215" Width="220" Height="20" Transparent="yes" NoPrefix="yes">
  317.                     <Text>Click the Finish button to exit.</Text>
  318.                 </Control>
  319.             </Dialog>
  320.             
  321.             <Dialog Id="ExitDialog" Width="370" Height="270" Title="[ProductName]" NoMinimize="yes">
  322.                 <Control Id="Finish" Type="PushButton" X="236" Y="243" Width="56" Height="17" Default="yes" Cancel="yes" Text="[Button_Finish]">
  323.                     <Publish Event="EndDialog" Value="Return">1</Publish>
  324.                 </Control>
  325.                 <Control Id="Cancel" Type="PushButton" X="304" Y="243" Width="56" Height="17" Disabled="yes" Text="[Button_Cancel]" />
  326.                 <Control Id="Bitmap" Type="Bitmap" X="0" Y="0" Width="370" Height="234" FixedSize="yes" TabSkip="no" Text="dialog.bmp" />
  327.                 <Control Id="Back" Type="PushButton" X="180" Y="243" Width="56" Height="17" Disabled="yes" Text="[Button_Back]" />
  328.                 <Control Id="BottomLine" Type="Line" X="0" Y="234" Width="374" Height="0" />
  329.                 <Control Id="Description" Type="Text" X="135" Y="70" Width="220" Height="20" Transparent="yes" NoPrefix="yes">
  330.                     <Text>Click the Finish button to exit.</Text>
  331.                 </Control>
  332.                 <Control Id="Title" Type="Text" X="135" Y="20" Width="220" Height="60" Transparent="yes" NoPrefix="yes">
  333.                     <Text>[BigFont]Completing the [ProductName] installation.</Text>
  334.                 </Control>
  335.             </Dialog>
  336.                 
  337.             <Dialog Id="OutOfDiskDlg" Width="370" Height="270" Title="[ProductName] [Setup]" NoMinimize="yes">
  338.                 <Control Id="OK" Type="PushButton" X="304" Y="243" Width="56" Height="17" Default="yes" Cancel="yes" Text="[Button_OK]">
  339.                     <Publish Event="EndDialog" Value="Return">1</Publish>
  340.                 </Control>
  341.                 <Control Id="BannerBitmap" Type="Bitmap" X="0" Y="0" Width="374" Height="44" FixedSize="yes" TabSkip="no" Text="banner.bmp" />
  342.                 <Control Id="Text" Type="Text" X="20" Y="53" Width="330" Height="40">
  343.                     <Text>The highlighted volumes do not have enough disk space available for the currently selected features.  You can either remove some files from the highlighted volumes, or choose to install less features onto local drive(s), or select different destination drive(s).</Text>
  344.                 </Control>
  345.                 <Control Id="BannerLine" Type="Line" X="0" Y="44" Width="374" Height="0" />
  346.                 <Control Id="BottomLine" Type="Line" X="4" Y="234" Width="370" Height="0" />
  347.                 <Control Id="Description" Type="Text" X="20" Y="20" Width="280" Height="20" Transparent="yes" NoPrefix="yes">
  348.                     <Text>Disk space required for the installation exceeds available disk space.</Text>
  349.                 </Control>
  350.                 <Control Id="Title" Type="Text" X="15" Y="6" Width="200" Height="15" Transparent="yes" NoPrefix="yes">
  351.                     <Text>[TitleFont]Out of Disk Space</Text>
  352.                 </Control>
  353.                 <Control Id="VolumeList" Type="VolumeCostList" X="20" Y="100" Width="330" Height="120" Sunken="yes" Fixed="yes" Remote="yes">
  354.                     <Text>{120}{70}{70}{70}{70}</Text>
  355.                 </Control>
  356.             </Dialog>
  357.             
  358.             <Dialog Id="OutOfRbDiskDlg" Width="370" Height="270" Title="[ProductName] [Setup]" NoMinimize="yes">
  359.                 <Control Id="No" Type="PushButton" X="304" Y="243" Width="56" Height="17" Default="yes" Cancel="yes" Text="[Button_No]">
  360.                     <Publish Event="EndDialog" Value="Return">1</Publish>
  361.                 </Control>
  362.                 <Control Id="Yes" Type="PushButton" X="240" Y="243" Width="56" Height="17" Text="[Button_Yes]">
  363.                     <Publish Event="EnableRollback" Value="False">1</Publish>
  364.                     <Publish Event="EndDialog" Value="Return">1</Publish>
  365.                 </Control>
  366.                 <Control Id="BannerBitmap" Type="Bitmap" X="0" Y="0" Width="374" Height="44" FixedSize="yes" TabSkip="no" Text="banner.bmp" />
  367.                 <Control Id="Text" Type="Text" X="20" Y="53" Width="330" Height="40">
  368.                     <Text>The highlighted volumes do not have enough disk space available for the currently selected features.  You can either remove some files from the highlighted volumes, or choose to install less features onto local drive(s), or select different destination drive(s).</Text>
  369.                 </Control>
  370.                 <Control Id="BannerLine" Type="Line" X="0" Y="44" Width="374" Height="0" />
  371.                 <Control Id="BottomLine" Type="Line" X="4" Y="234" Width="370" Height="0" />
  372.                 <Control Id="Description" Type="Text" X="20" Y="20" Width="280" Height="20" Transparent="yes" NoPrefix="yes">
  373.                     <Text>Disk space required for the installation exceeds available disk space.</Text>
  374.                 </Control>
  375.                 <Control Id="Title" Type="Text" X="15" Y="6" Width="200" Height="15" Transparent="yes" NoPrefix="yes">
  376.                     <Text>[TitleFont]Out of Disk Space</Text>
  377.                 </Control>
  378.                 <Control Id="VolumeList" Type="VolumeCostList" X="20" Y="140" Width="330" Height="80" Sunken="yes" Fixed="yes" Remote="yes" ShowRollbackCost="yes">
  379.                     <Text>{120}{70}{70}{70}{70}</Text>
  380.                 </Control>
  381.                 <Control Id="Text2" Type="Text" X="20" Y="94" Width="330" Height="40">
  382.                     <Text>Alternatively, you may choose to disable the installer's rollback functionality.  This allows the installer to restore your computer's original state should the installation be interrupted in any way.  Click Yes if you wish to take the risk to disable rollback.</Text>
  383.                 </Control>
  384.             </Dialog>
  385.             
  386.             <Dialog Id="FatalError" Width="370" Height="270" Title="[ProductName]" NoMinimize="yes">
  387.                 <Control Id="Finish" Type="PushButton" X="236" Y="243" Width="56" Height="17" Default="yes" Cancel="yes" Text="[Button_Finish]">
  388.                     <Publish Event="EndDialog" Value="Exit">1</Publish>
  389.                 </Control>
  390.                 <Control Id="Cancel" Type="PushButton" X="304" Y="243" Width="56" Height="17" Disabled="yes" Text="[Button_Cancel]" />
  391.                 <Control Id="Bitmap" Type="Bitmap" X="0" Y="0" Width="370" Height="234" FixedSize="yes" TabSkip="no" Text="dialog.bmp" />
  392.                 <Control Id="Back" Type="PushButton" X="180" Y="243" Width="56" Height="17" Disabled="yes" Text="[Button_Back]" />
  393.                 <Control Id="BottomLine" Type="Line" X="0" Y="234" Width="374" Height="0" />
  394.                 <Control Id="Title" Type="Text" X="135" Y="20" Width="220" Height="60" Transparent="yes" NoPrefix="yes">
  395.                     <Text>[BigFont][ProductName] ended prematurely</Text>
  396.                 </Control>
  397.                 <Control Id="Description1" Type="Text" X="135" Y="70" Width="220" Height="40" Transparent="yes" NoPrefix="yes">
  398.                     <Text>[ProductName] setup ended prematurely because of an error.  Your system has not been modified.  To install this program at a later time, please run the installation again.</Text>
  399.                 </Control>
  400.                 <Control Id="Description2" Type="Text" X="135" Y="115" Width="220" Height="20" Transparent="yes" NoPrefix="yes">
  401.                     <Text>Click the Finish button to exit the.</Text>
  402.                 </Control>
  403.             </Dialog>
  404.             <!-- END DIALOG DEFINITION -->
  405.             
  406.             <InstallUISequence>
  407.                 <Custom Action="SET_TARGETDIR" Before="CostInitialize">TARGETDIR=""</Custom>
  408.                 
  409.                 <Show Dialog="WelcomeDialog" After="MigrateFeatureStates" />
  410.                 
  411.                 <Show Dialog="ProgressDialog" After="WelcomeDialog" />
  412.                 
  413.                 <Show Dialog="UserExit" OnExit="cancel" />
  414.                 <Show Dialog="ExitDialog" OnExit="success" />
  415.                 <Show Dialog="FatalError" OnExit="error" />
  416.             </InstallUISequence>
  417.             
  418.             <AdminUISequence>
  419.                 <Custom Action="SET_TARGETDIR" Before="CostInitialize">TARGETDIR=""</Custom>
  420.                 
  421.                 <Show Dialog="WelcomeDialog" After="CostFinalize" />
  422.                 
  423.                 <Show Dialog="ProgressDialog" After="WelcomeDialog" />
  424.                 
  425.                 <Show Dialog="UserExit"   OnExit="cancel" />
  426.                 <Show Dialog="ExitDialog" OnExit="success" />
  427.                 <Show Dialog="FatalError" OnExit="error" />
  428.             </AdminUISequence>
  429.         </UI>
  430.         
  431.         <AdminExecuteSequence>
  432.         </AdminExecuteSequence>
  433.         
  434.         <InstallExecuteSequence>
  435.         </InstallExecuteSequence>
  436.         
  437.         <Binary Id="dialog.bmp" src = "$(var.DATADIR)/resources/InstallerBitmaps/default-dialog.bmp" />
  438.         <Binary Id="banner.bmp" src = "$(var.DATADIR)/resources/InstallerBitmaps/default-banner.bmp" />
  439.         <Binary Id="info.bmp"   src = "$(var.DATADIR)/resources/InstallerBitmaps/info.bmp" />
  440.         <Binary Id="up.bmp"     src = "$(var.DATADIR)/resources/InstallerBitmaps/up.bmp" />
  441.         <Binary Id="new.bmp"    src = "$(var.DATADIR)/resources/InstallerBitmaps/new.bmp" />
  442.     </Product>
  443. </Wix>
  444. ]]></File>
  445.                 <File name="license.rtf"><![CDATA[{\rtf1\ansi\ansicpg1252\deff0\deflang1031{\fonttbl{\f0\fswiss\fcharset0 Arial;}}
  446. {\*\generator Msftedit 5.41.21.2500;}\viewkind4\uc1\pard\lang1033\f0\fs20 Your License goes here.\lang1031\par
  447. }]]></File>
  448.             </Files>
  449.         </Project>
  450.     </Combine>
  451. </Template>
  452.