| 12
 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
 
 | <!DOCTYPE node PUBLIC "-//freedesktop//DTD D-BUS Object Introspection 1.0//EN" "http://www.freedesktop.org/standards/dbus/1.0/introspect.dtd">
<node>
    <interface name="com.deepin.system.InputDevices.Touchscreen">
        <property name="DevNode" type="s" access="read"></property>
        <property name="BusType" type="s" access="read"></property>
        <property name="UUID" type="s" access="read"></property>
        <property name="Phys" type="s" access="read"></property>
        <property name="OutputName" type="s" access="read"></property>
        <property name="Width" type="d" access="read"></property>
        <property name="Height" type="d" access="read"></property>
        <property name="Name" type="s" access="read"></property>
        <property name="Serial" type="s" access="read"></property>
    </interface>
    <interface name="org.freedesktop.DBus.Introspectable">
        <method name="Introspect">
            <arg name="out" type="s" direction="out"></arg>
        </method>
    </interface>
    <interface name="org.freedesktop.DBus.Properties">
        <method name="Get">
            <arg name="interface" type="s" direction="in"></arg>
            <arg name="property" type="s" direction="in"></arg>
            <arg name="value" type="v" direction="out"></arg>
        </method>
        <method name="GetAll">
            <arg name="interface" type="s" direction="in"></arg>
            <arg name="props" type="a{sv}" direction="out"></arg>
        </method>
        <method name="Set">
            <arg name="interface" type="s" direction="in"></arg>
            <arg name="property" type="s" direction="in"></arg>
            <arg name="value" type="v" direction="in"></arg>
        </method>
        <signal name="PropertiesChanged">
            <arg name="interface" type="s" direction="out"></arg>
            <arg name="changed_properties" type="a{sv}" direction="out"></arg>
            <arg name="invalidates_properties" type="as" direction="out"></arg>
        </signal>
    </interface>
    <interface name="org.freedesktop.DBus.Peer">
        <method name="Ping"></method>
        <method name="GetMachineId">
            <arg name="machine_uuid" type="s" direction="out"></arg>
        </method>
    </interface>
</node>
 |