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
use crate::Device;
use crate::DevicePadFeature;
use glib::object::IsA;
use glib::translate::*;
use std::fmt;
glib::wrapper! {
#[doc(alias = "GdkDevicePad")]
pub struct DevicePad(Interface<ffi::GdkDevicePad, ffi::GdkDevicePadInterface>) @requires Device;
match fn {
type_ => || ffi::gdk_device_pad_get_type(),
}
}
impl DevicePad {
pub const NONE: Option<&'static DevicePad> = None;
}
pub trait DevicePadExt: 'static {
#[doc(alias = "gdk_device_pad_get_feature_group")]
#[doc(alias = "get_feature_group")]
fn feature_group(&self, feature: DevicePadFeature, feature_idx: i32) -> i32;
#[doc(alias = "gdk_device_pad_get_group_n_modes")]
#[doc(alias = "get_group_n_modes")]
fn group_n_modes(&self, group_idx: i32) -> i32;
#[doc(alias = "gdk_device_pad_get_n_features")]
#[doc(alias = "get_n_features")]
fn n_features(&self, feature: DevicePadFeature) -> i32;
#[doc(alias = "gdk_device_pad_get_n_groups")]
#[doc(alias = "get_n_groups")]
fn n_groups(&self) -> i32;
}
impl<O: IsA<DevicePad>> DevicePadExt for O {
fn feature_group(&self, feature: DevicePadFeature, feature_idx: i32) -> i32 {
unsafe {
ffi::gdk_device_pad_get_feature_group(
self.as_ref().to_glib_none().0,
feature.into_glib(),
feature_idx,
)
}
}
fn group_n_modes(&self, group_idx: i32) -> i32 {
unsafe { ffi::gdk_device_pad_get_group_n_modes(self.as_ref().to_glib_none().0, group_idx) }
}
fn n_features(&self, feature: DevicePadFeature) -> i32 {
unsafe {
ffi::gdk_device_pad_get_n_features(self.as_ref().to_glib_none().0, feature.into_glib())
}
}
fn n_groups(&self) -> i32 {
unsafe { ffi::gdk_device_pad_get_n_groups(self.as_ref().to_glib_none().0) }
}
}
impl fmt::Display for DevicePad {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
f.write_str("DevicePad")
}
}