bdb1fd8591df1b4cde29283fc3907f7a49cac2ff
[shibboleth/cpp-sp.git] / msi / WiX / ShibbolethSP-update-dlg.wxs
1 <?xml version='1.0' encoding='UTF-8'?>\r
2 \r
3 <!-- Licensed to the University Corporation for Advanced Internet\r
4      Development, Inc. (UCAID) under one or more contributor license\r
5      agreements.  See the NOTICE file distributed with this work for\r
6      additional information regarding copyright ownership. The UCAID\r
7      licenses this file to You under the Apache License, Version 2.0\r
8      (the 'License'); you may not use this file except in compliance\r
9      with the License.  You may obtain a copy of the License at\r
10      \r
11      http://www.apache.org/licenses/LICENSE-2.0\r
12      \r
13      Unless required by applicable law or agreed to in writing, software\r
14      distributed under the License is distributed on an 'AS IS' BASIS,\r
15      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\r
16      implied.  See the License for the specific language governing\r
17      permissions and limitations under the License.  -->\r
18 \r
19 <Wix xmlns='http://schemas.microsoft.com/wix/2006/wi'>\r
20   <!-- The dialog to display if we sense an upgrade -->\r
21   <Fragment>\r
22 \r
23     <UI>\r
24       <Dialog Id='UpdateDlgShib' Width='370' Height='270' Title='[ProductName] Update'>\r
25         <!-- Stuff at the top: picture, some text, a line -->\r
26         <Control Id='TopBitMap' Type='Bitmap' X='0' Y='0' Width='370' Height='44' Text='WixUI_Bmp_Banner' />\r
27         <Control Id='TopInfo' Type='Text' X='15' Y='6' Width='150' Height='12' \r
28                  Text='{\WixUI_Font_Title}Update Shibboleth' Transparent='yes'/>\r
29         <Control Id='TopDetailed' Type='Text' X='25' Y='24' Width='320' Height='12' \r
30                  Text='Update to [ProductName]' Transparent='yes'/>\r
31         <Control Id='TopLine' Type='Line' X='0' Y='44' Width='370' Height='1' />\r
32 \r
33         <!-- Buttons to control Shibboleth Setup -->\r
34         <Control Id='DescriptionLine1' Type='Text' X='25' Y='51' Height='12' Width='320' \r
35                  Text='The updated files for [ProductName] will be installed to [INSTALLDIR]'/>\r
36 \r
37         <!-- Stuff at the bottom: line, Back,Next, [space] Cancel -->\r
38         <Control Id='BottomLine' Type='Line' X='0' Y='234' Width='370' Height='1' />\r
39         <Control Id='Back' Type='PushButton' X='180' Y='243' Width='56' Height='17' Text='&amp;Back'>\r
40           <Publish  Event='NewDialog' Value='WelcomeDlg'>1</Publish>\r
41         </Control>\r
42 \r
43         <Control Id='Next' Type='PushButton' X='236' Y='243' Width='56' Height='17' Text='&amp;Next' Default='yes'>\r
44           <Publish Event='NewDialog' Value='VerifyReadyDlg'/>\r
45         </Control>\r
46 \r
47         <Control Id='Cancel' Type='PushButton' X='304' Y='243' Width='56' Height='17' Text='&amp;Cancel' Cancel='yes'>\r
48           <Publish  Event='SpawnDialog' Value='CancelDlg'>1</Publish>\r
49         </Control>\r
50       </Dialog>\r
51     </UI>\r
52   </Fragment>\r
53 </Wix>\r