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
use glib::object::Cast;
use glib::object::IsA;
use glib::object::ObjectType as ObjectType_;
use glib::translate::*;
use glib::StaticType;
use glib::ToValue;
use std::fmt;
glib::wrapper! {
#[doc(alias = "GdkX11DeviceXI2")]
pub struct X11DeviceXI2(Object<ffi::GdkX11DeviceXI2, ffi::GdkX11DeviceXI2Class>) @extends gdk::Device;
match fn {
type_ => || ffi::gdk_x11_device_xi2_get_type(),
}
}
impl X11DeviceXI2 {
pub fn builder() -> X11DeviceXI2Builder {
X11DeviceXI2Builder::default()
}
#[doc(alias = "device-id")]
pub fn device_id(&self) -> i32 {
glib::ObjectExt::property(self, "device-id")
}
}
#[derive(Clone, Default)]
#[must_use = "The builder must be built to be used"]
pub struct X11DeviceXI2Builder {
device_id: Option<i32>,
device_manager: Option<gdk::DeviceManager>,
display: Option<gdk::Display>,
has_cursor: Option<bool>,
name: Option<String>,
#[cfg(any(feature = "gdk_v3_20", feature = "dox"))]
#[cfg_attr(feature = "dox", doc(cfg(feature = "gdk_v3_20")))]
num_touches: Option<u32>,
product_id: Option<String>,
vendor_id: Option<String>,
}
impl X11DeviceXI2Builder {
pub fn new() -> Self {
Self::default()
}
#[must_use = "Building the object from the builder is usually expensive and is not expected to have side effects"]
pub fn build(self) -> X11DeviceXI2 {
let mut properties: Vec<(&str, &dyn ToValue)> = vec![];
if let Some(ref device_id) = self.device_id {
properties.push(("device-id", device_id));
}
if let Some(ref device_manager) = self.device_manager {
properties.push(("device-manager", device_manager));
}
if let Some(ref display) = self.display {
properties.push(("display", display));
}
if let Some(ref has_cursor) = self.has_cursor {
properties.push(("has-cursor", has_cursor));
}
if let Some(ref name) = self.name {
properties.push(("name", name));
}
#[cfg(any(feature = "gdk_v3_20", feature = "dox"))]
if let Some(ref num_touches) = self.num_touches {
properties.push(("num-touches", num_touches));
}
if let Some(ref product_id) = self.product_id {
properties.push(("product-id", product_id));
}
if let Some(ref vendor_id) = self.vendor_id {
properties.push(("vendor-id", vendor_id));
}
glib::Object::new::<X11DeviceXI2>(&properties)
.expect("Failed to create an instance of X11DeviceXI2")
}
pub fn device_id(mut self, device_id: i32) -> Self {
self.device_id = Some(device_id);
self
}
pub fn device_manager(mut self, device_manager: &impl IsA<gdk::DeviceManager>) -> Self {
self.device_manager = Some(device_manager.clone().upcast());
self
}
pub fn display(mut self, display: &impl IsA<gdk::Display>) -> Self {
self.display = Some(display.clone().upcast());
self
}
pub fn has_cursor(mut self, has_cursor: bool) -> Self {
self.has_cursor = Some(has_cursor);
self
}
pub fn name(mut self, name: &str) -> Self {
self.name = Some(name.to_string());
self
}
#[cfg(any(feature = "gdk_v3_20", feature = "dox"))]
#[cfg_attr(feature = "dox", doc(cfg(feature = "gdk_v3_20")))]
pub fn num_touches(mut self, num_touches: u32) -> Self {
self.num_touches = Some(num_touches);
self
}
pub fn product_id(mut self, product_id: &str) -> Self {
self.product_id = Some(product_id.to_string());
self
}
pub fn vendor_id(mut self, vendor_id: &str) -> Self {
self.vendor_id = Some(vendor_id.to_string());
self
}
}
impl fmt::Display for X11DeviceXI2 {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
f.write_str("X11DeviceXI2")
}
}