File: Image.xml

package info (click to toggle)
at-spi2-core 2.59.1-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 6,212 kB
  • sloc: ansic: 45,028; xml: 1,505; python: 384; sh: 239; makefile: 29; javascript: 13
file content (82 lines) | stat: -rw-r--r-- 2,873 bytes parent folder | download | duplicates (3)
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
<?xml version="1.0" encoding="UTF-8"?>
<node xmlns:doc="http://www.freedesktop.org/dbus/1.0/doc.dtd">
  <!--
      org.a11y.atspi.Image:
      @short_description: Interface for accessible objects that represent
      graphical images.
  -->
  <interface name="org.a11y.atspi.Image">

    <!--
        Version: The version of this interface.

        This property is incremented by one every time a new method, signal, or property
        is added to this interface.
    -->
    <property name="version" type="u" access="read"/>

    <!--
        ImageDescription: the description of the image.
    -->
    <property name="ImageDescription" type="s" access="read"/>

    <!--
        ImageLocale: a POSIX LC_MESSAGES-style locale value for the image
        description and text.
    -->
    <property name="ImageLocale" type="s" access="read"/>

    <!--
        GetImageExtents:

        @coordType: Specifies the reference point for the coordinates to
        be returned. 0 = relative to the screen, 1 = relative to the
        application's top-level window, 2 = relative to the accessible's
        parent. Requesting coordinates relative to the screen is deprecated
        and may not be supported by the application.

        Gets the bounding box of the image displayed in a
        specified Image implementor.
        The returned values are meaningful only if the Image has both
        STATE_VISIBLE and STATE_SHOWING.
    -->
    <method name="GetImageExtents">
      <arg direction="in" name="coordType" type="u"/>
      <arg direction="out" type="(iiii)"/>
      <annotation name="org.qtproject.QtDBus.QtTypeName.Out0" value="QSpiRect"/>
    </method>

    <!--
        GetImagePosition:

        @coordType: Specifies the reference point for the coordinates to
        be returned. 0 = relative to the screen, 1 = relative to the
        application's top-level window, 2 = relative to the accessible's
        parent. Requesting coordinates relative to the screen is deprecated
        and may not be supported by the application.

        Gets the minimum x and y coordinates of the image displayed in a
        specified Image implementor.
        The returned values are meaningful only if the Image has both
        STATE_VISIBLE and STATE_SHOWING.
    -->
    <method name="GetImagePosition">
      <arg direction="in" name="coordType" type="u"/>
      <arg direction="out" name="x" type="i"/>
      <arg direction="out" name="y" type="i"/>
    </method>

    <!--
        GetImageSize:

        Gets the size of the image displayed in a specified object.
        The returned values are meaningful only if the Image has both
        STATE_VISIBLE and STATE_SHOWING.
    -->
    <method name="GetImageSize">
      <arg direction="out" name="width" type="i"/>
      <arg direction="out" name="height" type="i"/>
    </method>

  </interface>
</node>