summaryrefslogtreecommitdiffstats
path: root/chromium/third_party/wayland-protocols/unstable/stylus/stylus-unstable-v2.xml
blob: 8465f0768243a66204b9a3356132ba0b0a12fadc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
<?xml version="1.0" encoding="UTF-8"?>
<protocol name="stylus_unstable_v2">

  <copyright>
    Copyright 2016 The Chromium Authors.

    Permission is hereby granted, free of charge, to any person obtaining a
    copy of this software and associated documentation files (the "Software"),
    to deal in the Software without restriction, including without limitation
    the rights to use, copy, modify, merge, publish, distribute, sublicense,
    and/or sell copies of the Software, and to permit persons to whom the
    Software is furnished to do so, subject to the following conditions:

    The above copyright notice and this permission notice (including the next
    paragraph) shall be included in all copies or substantial portions of the
    Software.

    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
    THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
    FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
    DEALINGS IN THE SOFTWARE.
  </copyright>

  <interface name="zcr_stylus_v2" version="1">
    <description summary="extends wl_touch with events for on-screen stylus">
      Allows a wl_touch to report stylus specific information. The client can
      interpret the on-screen stylus like any other touch event, and use
      this protocol to obtain detail information about the type of stylus,
      as well as the force and tilt of the tool.

      These events are to be fired by the server within the same frame as other
      wl_touch events.

      Warning! The protocol described in this file is experimental and
      backward incompatible changes may be made. Backward compatible changes
      may be added together with the corresponding uinterface version bump.
      Backward incompatible changes are done by bumping the version number in
      the protocol and uinterface names and resetting the interface version.
      Once the protocol is to be declared stable, the 'z' prefix and the
      version number in the protocol and interface names are removed and the
      interface version number is reset.
    </description>

    <enum name="error">
      <entry name="touch_stylus_exists" value="0"
             summary="the touch already has a touch_stylus object associated"/>
    </enum>

    <request name="get_touch_stylus">
      <description summary="get stylus interface for touch">
        Create touch_stylus object. See zcr_touch_stylus_v1 interface for
        details. If the given wl_touch already has a touch_stylus object
        associated, the touch_stylus_exists protocol error is raised.
      </description>
      <arg name="id" type="new_id" interface="zcr_touch_stylus_v2"/>
      <arg name="touch" type="object" interface="wl_touch"/>
    </request>
  </interface>

  <interface name="zcr_touch_stylus_v2" version="1">
    <description summary="stylus extension for touch">
      The zcr_touch_stylus_v1 interface extends the wl_touch interface with
      events to describe details about a stylus.
    </description>

    <request name="destroy" type="destructor">
      <description summary="destroy stylus object"/>
    </request>

    <enum name="tool_type">
      <description summary="tool type of device."/>
      <entry name="touch" value="1" summary="Touch"/>
      <entry name="pen" value="2" summary="Pen"/>
      <entry name="eraser" value="3" summary="Eraser"/>
    </enum>

    <event name="tool">
      <description summary="sets tool type of touch">
        Notification that the user is using a tool type other than touch. There
        can only be one tool in use at a time.
        This event is sent in the same frame as the wl_touch.down event. The
        tool type cannot change while a touch is being reported.
      </description>
      <arg name="id" type="uint" summary="touch id"/>
      <arg name="type" type="uint" enum="tool_type" summary="type of tool in use"/>
    </event>

    <event name="force">
      <description summary="force change event">
        Notification of a change in physical force on the surface of the screen.
        The force is calibrated and normalized to the 0 to 1 range.
      </description>
      <arg name="time" type="uint" summary="timestamp with millisecond granularity"/>
      <arg name="id" type="uint" summary="touch id"/>
      <arg name="force" type="fixed" summary="new value of force"/>
    </event>

    <event name="tilt">
      <description summary="tilt change event">
        Notification of a change in tilt of a stylus.

        Measured from surface normal as plane angle in degrees, values lie in
        [-90,90]. A positive x is to the right and a positive y is towards the
        user.
      </description>
      <arg name="time" type="uint" summary="timestamp with millisecond granularity"/>
      <arg name="id" type="uint" summary="touch id"/>
      <arg name="tilt_x" type="fixed" summary="tilt in x direction"/>
      <arg name="tilt_y" type="fixed" summary="tilt in y direction"/>
    </event>
  </interface>

</protocol>