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 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200
|
// Code generated by "./generator ./com.deepin.system.inputdevices"; DO NOT EDIT.
package inputdevices
import (
"errors"
"fmt"
"unsafe"
"github.com/godbus/dbus"
"pkg.deepin.io/lib/dbusutil"
"pkg.deepin.io/lib/dbusutil/proxy"
)
type InputDevices struct {
inputDevices // interface com.deepin.system.InputDevices
proxy.Object
}
func NewInputDevices(conn *dbus.Conn) *InputDevices {
obj := new(InputDevices)
obj.Object.Init_(conn, "com.deepin.system.InputDevices", "/com/deepin/system/InputDevices")
return obj
}
type inputDevices struct{}
func (v *inputDevices) GetObject_() *proxy.Object {
return (*proxy.Object)(unsafe.Pointer(v))
}
func (*inputDevices) GetInterfaceName_() string {
return "com.deepin.system.InputDevices"
}
// signal TouchscreenAdded
func (v *inputDevices) ConnectTouchscreenAdded(cb func(path dbus.ObjectPath)) (dbusutil.SignalHandlerId, error) {
if cb == nil {
return 0, errors.New("nil callback")
}
obj := v.GetObject_()
rule := fmt.Sprintf(
"type='signal',interface='%s',member='%s',path='%s',sender='%s'",
v.GetInterfaceName_(), "TouchscreenAdded", obj.Path_(), obj.ServiceName_())
sigRule := &dbusutil.SignalRule{
Path: obj.Path_(),
Name: v.GetInterfaceName_() + ".TouchscreenAdded",
}
handlerFunc := func(sig *dbus.Signal) {
var path dbus.ObjectPath
err := dbus.Store(sig.Body, &path)
if err == nil {
cb(path)
}
}
return obj.ConnectSignal_(rule, sigRule, handlerFunc)
}
// signal TouchscreenRemoved
func (v *inputDevices) ConnectTouchscreenRemoved(cb func(path dbus.ObjectPath)) (dbusutil.SignalHandlerId, error) {
if cb == nil {
return 0, errors.New("nil callback")
}
obj := v.GetObject_()
rule := fmt.Sprintf(
"type='signal',interface='%s',member='%s',path='%s',sender='%s'",
v.GetInterfaceName_(), "TouchscreenRemoved", obj.Path_(), obj.ServiceName_())
sigRule := &dbusutil.SignalRule{
Path: obj.Path_(),
Name: v.GetInterfaceName_() + ".TouchscreenRemoved",
}
handlerFunc := func(sig *dbus.Signal) {
var path dbus.ObjectPath
err := dbus.Store(sig.Body, &path)
if err == nil {
cb(path)
}
}
return obj.ConnectSignal_(rule, sigRule, handlerFunc)
}
// property Touchscreens ao
func (v *inputDevices) Touchscreens() proxy.PropObjectPathArray {
return proxy.PropObjectPathArray{
Impl: v,
Name: "Touchscreens",
}
}
type Touchscreen struct {
touchscreen // interface com.deepin.system.InputDevices.Touchscreen
proxy.Object
}
func NewTouchscreen(conn *dbus.Conn, path dbus.ObjectPath) (*Touchscreen, error) {
if !path.IsValid() {
return nil, errors.New("path is invalid")
}
obj := new(Touchscreen)
obj.Object.Init_(conn, "com.deepin.system.InputDevices", path)
return obj, nil
}
type touchscreen struct{}
func (v *touchscreen) GetObject_() *proxy.Object {
return (*proxy.Object)(unsafe.Pointer(v))
}
func (*touchscreen) GetInterfaceName_() string {
return "com.deepin.system.InputDevices.Touchscreen"
}
// property DevNode s
func (v *touchscreen) DevNode() proxy.PropString {
return proxy.PropString{
Impl: v,
Name: "DevNode",
}
}
// property BusType s
func (v *touchscreen) BusType() proxy.PropString {
return proxy.PropString{
Impl: v,
Name: "BusType",
}
}
// property UUID s
func (v *touchscreen) UUID() proxy.PropString {
return proxy.PropString{
Impl: v,
Name: "UUID",
}
}
// property Phys s
func (v *touchscreen) Phys() proxy.PropString {
return proxy.PropString{
Impl: v,
Name: "Phys",
}
}
// property OutputName s
func (v *touchscreen) OutputName() proxy.PropString {
return proxy.PropString{
Impl: v,
Name: "OutputName",
}
}
// property Width d
func (v *touchscreen) Width() proxy.PropDouble {
return proxy.PropDouble{
Impl: v,
Name: "Width",
}
}
// property Height d
func (v *touchscreen) Height() proxy.PropDouble {
return proxy.PropDouble{
Impl: v,
Name: "Height",
}
}
// property Name s
func (v *touchscreen) Name() proxy.PropString {
return proxy.PropString{
Impl: v,
Name: "Name",
}
}
// property Serial s
func (v *touchscreen) Serial() proxy.PropString {
return proxy.PropString{
Impl: v,
Name: "Serial",
}
}
|