ovsdb: avoid unnecessary call to ovsdb_monitor_get_update()
[cascardo/ovs.git] / windows / ovs-windows-installer / UI.wxs
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   <copyright company="Cloudbase Solutions Srl">
4     Copyright 2015 Cloudbase Solutions Srl
5
6     Licensed under the Apache License, Version 2.0 (the "License"); you may
7     not use this file except in compliance with the License.You may obtain
8     a copy of the License at
9
10         http://www.apache.org/licenses/LICENSE-2.0
11
12     Unless required by applicable law or agreed to in writing, software
13     distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
14     WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.See the
15     License for the specific language governing permissions and limitations
16     under the License.
17   </copyright>
18 -->
19 <Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
20   <Fragment>
21     <UI Id="MyWixUI_FeatureTree">
22       <TextStyle Id="WixUI_Font_Normal" FaceName="Arial" Size="8" />
23       <TextStyle Id="WixUI_Font_Bigger" FaceName="Arial" Size="12" Bold="yes" />
24       <TextStyle Id="WixUI_Font_Title" FaceName="Arial" Size="9" Bold="yes" />
25
26       <Property Id="DefaultUIFont" Value="WixUI_Font_Normal" />
27       <Property Id="WixUI_Mode" Value="FeatureTree" />
28
29       <DialogRef Id="ErrorDlg" />
30       <DialogRef Id="FatalError" />
31       <DialogRef Id="FilesInUse" />
32       <DialogRef Id="MsiRMFilesInUse" />
33       <DialogRef Id="PrepareDlg" />
34       <DialogRef Id="ProgressDlg" />
35       <DialogRef Id="ResumeDlg" />
36       <DialogRef Id="UserFinishDialog" />
37
38       <Publish Dialog="MyEndDialog" Control="Finish" Event="EndDialog" Value="Return" Order="999">1</Publish>
39
40       <Publish Dialog="BeginningDialog" Control="Next" Event="NewDialog" Value="LicenseAgreementDlg">NOT Installed</Publish>
41       <Publish Dialog="BeginningDialog" Control="Next" Event="NewDialog" Value="VerifyReadyDlg">Installed AND PATCH</Publish>
42
43       <Publish Dialog="LicenseAgreementDlg" Control="Back" Event="NewDialog" Value="BeginningDialog">1</Publish>
44       <Publish Dialog="LicenseAgreementDlg" Control="Next" Event="NewDialog" Value="CustomizeDlg">LicenseAccepted = "1"</Publish>
45
46       <Publish Dialog="VerifyReadyDlg" Control="Back" Event="NewDialog" Value="CustomizeDlg" Order="1">NOT Installed OR WixUI_InstallMode = "Change"</Publish>
47       <Publish Dialog="VerifyReadyDlg" Control="Back" Event="NewDialog" Value="MaintenanceTypeDlg" Order="2">Installed AND NOT PATCH</Publish>
48       <Publish Dialog="VerifyReadyDlg" Control="Back" Event="NewDialog" Value="BeginningDialog" Order="3">Installed AND PATCH</Publish>
49
50       <Publish Dialog="MyTroubleshootDialog" Control="Next" Event="NewDialog" Value="MaintenanceTypeDlg">1</Publish>
51
52       <!-- Force elevation during change for product customization-->
53       <Publish Dialog="MaintenanceTypeDlg" Control="ChangeButton" Property="REINSTALL" Value="ALL">1</Publish>
54       <Publish Dialog="MaintenanceTypeDlg" Control="ChangeButton" Property="REINSTALLMODE" Value="vamus">1</Publish>
55       <Publish Dialog="MaintenanceTypeDlg" Control="ChangeButton" Property="REBOOT" Value="ReallySuppress">1</Publish>
56
57       <Publish Dialog="MaintenanceTypeDlg" Control="ChangeButton" Event="NewDialog" Value="CustomizeDlg">1</Publish>
58       <Publish Dialog="MaintenanceTypeDlg" Control="RepairButton" Event="NewDialog" Value="VerifyReadyDlg">1</Publish>
59       <Publish Dialog="MaintenanceTypeDlg" Control="RemoveButton" Event="NewDialog" Value="VerifyReadyDlg">1</Publish>
60       <Publish Dialog="MaintenanceTypeDlg" Control="Back" Event="NewDialog" Value="MyTroubleshootDialog">1</Publish>
61
62       <Publish Dialog="CustomizeDlg" Control="Back" Event="NewDialog" Value="MaintenanceTypeDlg" Order="1">Installed</Publish>
63       <Publish Dialog="CustomizeDlg" Control="Back" Event="NewDialog" Value="LicenseAgreementDlg" Order="2">NOT Installed</Publish>
64
65       <Publish Dialog="CustomizeDlg" Control="Next" Event="NewDialog" Value="VerifyReadyDlg" Order="1">1</Publish>
66       <Publish Dialog="VerifyReadyDlg" Control="Back" Event="NewDialog" Value="CustomizeDlg" Order="1">1</Publish>
67       <UIRef Id="WixUI_ErrorProgressText" />
68
69       <UIRef Id="WixUI_Common" />
70     </UI>
71   </Fragment>
72 </Wix>