Update license headers.
[profile/ivi/qtwayland.git] / extensions / sub-surface-extension.xml
1 <protocol name="sub_surface_extension">
2
3     <copyright>
4 /****************************************************************************
5 **
6 ** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
7 ** All rights reserved.
8 ** Contact: Nokia Corporation (qt-info@nokia.com)
9 **
10 ** This file is part of the plugins of the Qt Toolkit.
11 **
12 ** $QT_BEGIN_LICENSE:BSD$
13 ** You may use this file under the terms of the BSD license as follows:
14 **
15 ** "Redistribution and use in source and binary forms, with or without
16 ** modification, are permitted provided that the following conditions are
17 ** met:
18 **   * Redistributions of source code must retain the above copyright
19 **     notice, this list of conditions and the following disclaimer.
20 **   * Redistributions in binary form must reproduce the above copyright
21 **     notice, this list of conditions and the following disclaimer in
22 **     the documentation and/or other materials provided with the
23 **     distribution.
24 **   * Neither the name of Nokia Corporation and its Subsidiary(-ies) nor
25 **     the names of its contributors may be used to endorse or promote
26 **     products derived from this software without specific prior written
27 **     permission.
28 **
29 ** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
30 ** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
31 ** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
32 ** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
33 ** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
34 ** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
35 ** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
36 ** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
37 ** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
38 ** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
39 ** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
40 ** $QT_END_LICENSE$
41 **
42 ****************************************************************************/
43     </copyright>
44
45     <interface name="wl_sub_surface_extension" version="1">
46         <request name="get_sub_surface_aware_surface">
47             <arg name="id" type="new_id" interface="wl_sub_surface"/>
48             <arg name="surface" type="object" interface="wl_surface"/>
49         </request>
50     </interface>
51
52     <interface name="wl_sub_surface" version="1">
53         <request name="attach_sub_surface">
54             <arg name="sub_surface" type="object" interface="wl_sub_surface"/>
55             <arg name="x" type="int"/>
56             <arg name="y" type="int"/>
57         </request>
58
59         <request name="move_sub_surface">
60             <arg name="sub_surface" type="object" interface="wl_sub_surface"/>
61             <arg name="x" type="int"/>
62             <arg name="y" type="int"/>
63         </request>
64
65         <request name="raise">
66             <arg name="sub_surface" type="object" interface="wl_sub_surface"/>
67         </request>
68
69         <request name="lower">
70             <arg name="sub_surface" type="object" interface="wl_sub_surface"/>
71         </request>
72     </interface>
73 </protocol>