File: org.gnome.Mutter.InputCapture.xml

package info (click to toggle)
mutter 49.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 51,732 kB
  • sloc: ansic: 397,916; xml: 3,384; python: 3,270; sh: 389; ruby: 167; makefile: 61; javascript: 26
file content (78 lines) | stat: -rw-r--r-- 2,266 bytes parent folder | download | duplicates (5)
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
<!DOCTYPE node PUBLIC
'-//freedesktop//DTD D-BUS Object Introspection 1.0//EN'
'http://www.freedesktop.org/standards/dbus/1.0/introspect.dtd'>
<node>

  <!--
      org.gnome.Mutter.InputCapture:
      @short_description: Interface for input capture triggers

      This API is private and not intended to be used outside of the integrated
      system that uses libmutter. No compatibility between versions is
      promised.
  -->
  <interface name="org.gnome.Mutter.InputCapture">

    <method name="CreateSession">
      <arg name="capabilities" type="u" direction="in" />
      <arg name="session_path" type="o" direction="out" />
    </method>

    <!--
        SupportedCapabilities:

        <simplelist>
          <member>1: KEYBOARD</member>
          <member>2: POINTER</member>
          <member>4: TOUCH</member>
        </simplelist>
    -->
    <property name="SupportedCapabilities" type="u" access="read" />

  </interface>

  <interface name="org.gnome.Mutter.InputCapture.Session">

    <method name="GetZones">
      <arg name="serial" type="u" direction="out" />
      <arg name="zones" type="a(uuii)" direction="out" />
    </method>

    <method name="AddBarrier">
      <arg name="serial" type="u" direction="in" />
      <arg name="position" type="(iiii)" direction="in" />
      <arg name="id" type="u" direction="out" />
    </method>

    <method name="ClearBarriers" />

    <method name="Enable" />
    <method name="Disable" />

    <method name="ConnectToEIS">
      <annotation name="org.gtk.GDBus.C.Name" value="connect_to_eis"/>
      <annotation name="org.gtk.GDBus.C.UnixFD" value="true"/>
      <arg type="h" name="fd" direction="out"/>
    </method>

    <method name="Release">
      <arg type="a{sv}" name="options" direction="in" />
    </method>

    <method name="Close" />

    <signal name="Activated">
      <arg type="u" name="barrier_id" direction="in" />
      <arg type="u" name="activation_id" direction="in" />
      <arg type="(dd)" name="cursor_position" direction="in" />
    </signal>
    <signal name="Deactivated">
      <arg type="u" name="activation_id" direction="in" />
    </signal>
    <signal name="ZonesChanged" />
    <signal name="Disabled" />
    <signal name="Closed" />

  </interface>

</node>