File: Value.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 (46 lines) | stat: -rw-r--r-- 1,293 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
<?xml version="1.0" encoding="UTF-8"?>
<node xmlns:doc="http://www.freedesktop.org/dbus/1.0/doc.dtd">
  <!--
      org.a11y.atspi.Value:
      @short_description: An interface supporting a one-dimensional scalar
      to be modified, or which reflects its value.
  -->
  <interface name="org.a11y.atspi.Value">

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

    <!--
        MinimumValue: The minimum allowed value.
    -->
    <property name="MinimumValue" type="d" access="read"/>

    <!--
        MaximumValue: The maximum allowed value.
    -->
    <property name="MaximumValue" type="d" access="read"/>

    <!--
        MinimumIncrement: The minimum increment by which a value can be
        adjusted.
    -->
    <property name="MinimumIncrement" type="d" access="read"/>

    <!--
        CurrentValue: The current value.
    -->
    <property name="CurrentValue" type="d" access="readwrite"/>

    <!--
        Text: a human readable text alternative associated with the value,
        if available.
    -->
    <property name="Text" type="s" access="read"/>

  </interface>
</node>