~ubuntu-branches/ubuntu/wily/openvswitch/wily

« back to all changes in this revision

Viewing changes to windows/ovs-windows-installer/Dialogs/UserFinishDialog.wxs

  • Committer: Package Import Robot
  • Author(s): James Page
  • Date: 2015-08-10 11:35:15 UTC
  • mfrom: (1.1.30)
  • Revision ID: package-import@ubuntu.com-20150810113515-575vj06oq29emxsn
Tags: 2.4.0~git20150810.97bab95-0ubuntu1
* New upstream snapshot from 2.4 branch:
  - d/*: Align any relevant packaging changes with upstream.
* d/*: wrap-and-sort.
* d/openvswitch-{common,vswitch}.install: Correct install location for
  bash completion files.
* d/tests/openflow.py: Explicitly use ovs-testcontroller as provided
  by 2.4.0 release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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>
 
22
      <Dialog Id="UserFinishDialog" Width="370" Height="270" Title="!(loc.UserExit_Title)">
 
23
        <Control Id="Title" Type="Text" X="135" Y="20" Width="210" Height="60" Transparent="yes" NoPrefix="yes" Text="!(loc.UserExitTitle)" />
 
24
        <Control Id="Description" Type="Text" X="135" Y="80" Width="210" Height="80" Transparent="yes" NoPrefix="yes" Text="!(loc.UserExitDescription1) !(loc.UserExitDescription2)" />
 
25
        <Control Id="Bitmap" Type="Bitmap" X="0" Y="0" Width="370" Height="234" TabSkip="no" Text="!(loc.UserExitBitmap)" />      
 
26
        <Control Id="Cancel" Type="PushButton" X="304" Y="243" Width="56" Height="17" Disabled="yes" Text="!(loc.WixUICancel)" />
 
27
        <Control Id="Back" Type="PushButton" X="180" Y="243" Width="56" Height="17" Disabled="yes" Text="!(loc.WixUIBack)" />
 
28
        <Control Id="BottomLine" Type="Line" X="0" Y="234" Width="370" Height="0" />
 
29
        <Control Id="Finish" Type="PushButton" X="236" Y="243" Width="56" Height="17" Default="yes" Cancel="yes" Text="!(loc.WixUIFinish)">
 
30
          <Publish Event="EndDialog" Value="Exit">1</Publish>
 
31
        </Control>
 
32
      </Dialog>
 
33
 
 
34
      <AdminUISequence>
 
35
        <Show Dialog="UserFinishDialog" OnExit="cancel" Overridable="yes" />
 
36
      </AdminUISequence>
 
37
 
 
38
      <InstallUISequence>
 
39
        <Show Dialog="UserFinishDialog" OnExit="cancel" Overridable="yes" />
 
40
      </InstallUISequence>
 
41
 
 
42
    </UI>
 
43
  </Fragment>
 
44
</Wix>
 
 
b'\\ No newline at end of file'