File: Hypertext.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 (68 lines) | stat: -rw-r--r-- 2,109 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
<?xml version="1.0" encoding="UTF-8"?>
<node xmlns:doc="http://www.freedesktop.org/dbus/1.0/doc.dtd">
  <!--
      org.a11y.atspi.Hypertext:
      @short_description: An interface used for objects which implement linking
      between multiple resource locations.
  -->
  <interface name="org.a11y.atspi.Hypertext">

    <!--
        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"/>

    <!--
        GetNLinks:

        Gets the total number of Hyperlink objects that a Hypertext implementor
        has.

        Returns: a integer indicating the number of Hyperlink objects of the
        Hypertext implementor, or -1 if the number cannot be determined (for
        example, if the Hypertext object is so large that it is not
        all currently in the memory cache).
    -->
    <method name="GetNLinks">
      <arg direction="out" type="i"/>
    </method>

    <!--
        Getlink:

        @linkIndex: a (zero-index) integer indicating which hyperlink
        to query.

        Gets the Hyperlink object at a specified index.

        Returns: A reference (bus name + object path) to the hyperlink at
        the specified index.
    -->
    <method name="GetLink">
      <arg direction="in" name="linkIndex" type="i"/>
      <arg direction="out" type="(so)"/>
      <annotation name="org.qtproject.QtDBus.QtTypeName.Out0" value="QSpiObjectReference"/>
    </method>

    <!--
        GetLinkIndex:

        @characterOffset: a integer specifying the character offset to query.

        Gets the index of the Hyperlink object at a specified character
        offset.

        Returns: the link index of the Hyperlink active at character offset
        @characterOffset, or -1 if there is no hyperlink at the
        specified character offset.
    -->
    <method name="GetLinkIndex">
      <arg direction="in" name="characterIndex" type="i"/>
      <arg direction="out" type="i"/>
    </method>

  </interface>
</node>