use crate::{ffi, DeviceTool, Display, InputSource, ModifierType, Seat, Surface};
use glib::{
object::ObjectType as _,
prelude::*,
signal::{connect_raw, SignalHandlerId},
translate::*,
};
use std::boxed::Box as Box_;
glib::wrapper! {
#[doc(alias = "GdkDevice")]
pub struct Device(Object<ffi::GdkDevice>);
match fn {
type_ => || ffi::gdk_device_get_type(),
}
}
impl Device {
pub const NONE: Option<&'static Device> = None;
}
impl std::fmt::Display for Device {
#[inline]
fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
f.write_str(&DeviceExt::name(self))
}
}
pub trait DeviceExt: IsA<Device> + 'static {
#[cfg(feature = "v4_18")]
#[cfg_attr(docsrs, doc(cfg(feature = "v4_18")))]
#[doc(alias = "gdk_device_get_active_layout_index")]
#[doc(alias = "get_active_layout_index")]
#[doc(alias = "active-layout-index")]
fn active_layout_index(&self) -> i32 {
unsafe { ffi::gdk_device_get_active_layout_index(self.as_ref().to_glib_none().0) }
}
#[doc(alias = "gdk_device_get_caps_lock_state")]
#[doc(alias = "get_caps_lock_state")]
#[doc(alias = "caps-lock-state")]
fn is_caps_locked(&self) -> bool {
unsafe {
from_glib(ffi::gdk_device_get_caps_lock_state(
self.as_ref().to_glib_none().0,
))
}
}
#[doc(alias = "gdk_device_get_device_tool")]
#[doc(alias = "get_device_tool")]
#[doc(alias = "tool")]
fn device_tool(&self) -> Option<DeviceTool> {
unsafe {
from_glib_none(ffi::gdk_device_get_device_tool(
self.as_ref().to_glib_none().0,
))
}
}
#[doc(alias = "gdk_device_get_direction")]
#[doc(alias = "get_direction")]
fn direction(&self) -> pango::Direction {
unsafe {
from_glib(ffi::gdk_device_get_direction(
self.as_ref().to_glib_none().0,
))
}
}
#[doc(alias = "gdk_device_get_display")]
#[doc(alias = "get_display")]
fn display(&self) -> Display {
unsafe { from_glib_none(ffi::gdk_device_get_display(self.as_ref().to_glib_none().0)) }
}
#[doc(alias = "gdk_device_get_has_cursor")]
#[doc(alias = "get_has_cursor")]
#[doc(alias = "has-cursor")]
fn has_cursor(&self) -> bool {
unsafe {
from_glib(ffi::gdk_device_get_has_cursor(
self.as_ref().to_glib_none().0,
))
}
}
#[cfg(feature = "v4_18")]
#[cfg_attr(docsrs, doc(cfg(feature = "v4_18")))]
#[doc(alias = "gdk_device_get_layout_names")]
#[doc(alias = "get_layout_names")]
#[doc(alias = "layout-names")]
fn layout_names(&self) -> Vec<glib::GString> {
unsafe {
FromGlibPtrContainer::from_glib_full(ffi::gdk_device_get_layout_names(
self.as_ref().to_glib_none().0,
))
}
}
#[doc(alias = "gdk_device_get_modifier_state")]
#[doc(alias = "get_modifier_state")]
#[doc(alias = "modifier-state")]
fn modifier_state(&self) -> ModifierType {
unsafe {
from_glib(ffi::gdk_device_get_modifier_state(
self.as_ref().to_glib_none().0,
))
}
}
#[doc(alias = "gdk_device_get_name")]
#[doc(alias = "get_name")]
fn name(&self) -> glib::GString {
unsafe { from_glib_none(ffi::gdk_device_get_name(self.as_ref().to_glib_none().0)) }
}
#[doc(alias = "gdk_device_get_num_lock_state")]
#[doc(alias = "get_num_lock_state")]
#[doc(alias = "num-lock-state")]
fn is_num_locked(&self) -> bool {
unsafe {
from_glib(ffi::gdk_device_get_num_lock_state(
self.as_ref().to_glib_none().0,
))
}
}
#[doc(alias = "gdk_device_get_num_touches")]
#[doc(alias = "get_num_touches")]
#[doc(alias = "num-touches")]
fn num_touches(&self) -> u32 {
unsafe { ffi::gdk_device_get_num_touches(self.as_ref().to_glib_none().0) }
}
#[doc(alias = "gdk_device_get_product_id")]
#[doc(alias = "get_product_id")]
#[doc(alias = "product-id")]
fn product_id(&self) -> Option<glib::GString> {
unsafe {
from_glib_none(ffi::gdk_device_get_product_id(
self.as_ref().to_glib_none().0,
))
}
}
#[doc(alias = "gdk_device_get_scroll_lock_state")]
#[doc(alias = "get_scroll_lock_state")]
#[doc(alias = "scroll-lock-state")]
fn is_scroll_locked(&self) -> bool {
unsafe {
from_glib(ffi::gdk_device_get_scroll_lock_state(
self.as_ref().to_glib_none().0,
))
}
}
#[doc(alias = "gdk_device_get_seat")]
#[doc(alias = "get_seat")]
fn seat(&self) -> Seat {
unsafe { from_glib_none(ffi::gdk_device_get_seat(self.as_ref().to_glib_none().0)) }
}
#[doc(alias = "gdk_device_get_source")]
#[doc(alias = "get_source")]
fn source(&self) -> InputSource {
unsafe { from_glib(ffi::gdk_device_get_source(self.as_ref().to_glib_none().0)) }
}
#[doc(alias = "gdk_device_get_surface_at_position")]
#[doc(alias = "get_surface_at_position")]
fn surface_at_position(&self) -> (Option<Surface>, f64, f64) {
unsafe {
let mut win_x = std::mem::MaybeUninit::uninit();
let mut win_y = std::mem::MaybeUninit::uninit();
let ret = from_glib_none(ffi::gdk_device_get_surface_at_position(
self.as_ref().to_glib_none().0,
win_x.as_mut_ptr(),
win_y.as_mut_ptr(),
));
(ret, win_x.assume_init(), win_y.assume_init())
}
}
#[cfg(feature = "v4_2")]
#[cfg_attr(docsrs, doc(cfg(feature = "v4_2")))]
#[doc(alias = "gdk_device_get_timestamp")]
#[doc(alias = "get_timestamp")]
fn timestamp(&self) -> u32 {
unsafe { ffi::gdk_device_get_timestamp(self.as_ref().to_glib_none().0) }
}
#[doc(alias = "gdk_device_get_vendor_id")]
#[doc(alias = "get_vendor_id")]
#[doc(alias = "vendor-id")]
fn vendor_id(&self) -> Option<glib::GString> {
unsafe {
from_glib_none(ffi::gdk_device_get_vendor_id(
self.as_ref().to_glib_none().0,
))
}
}
#[doc(alias = "gdk_device_has_bidi_layouts")]
#[doc(alias = "has-bidi-layouts")]
fn has_bidi_layouts(&self) -> bool {
unsafe {
from_glib(ffi::gdk_device_has_bidi_layouts(
self.as_ref().to_glib_none().0,
))
}
}
#[doc(alias = "n-axes")]
fn n_axes(&self) -> u32 {
ObjectExt::property(self.as_ref(), "n-axes")
}
fn set_seat<P: IsA<Seat>>(&self, seat: Option<&P>) {
ObjectExt::set_property(self.as_ref(), "seat", seat)
}
#[doc(alias = "changed")]
fn connect_changed<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe extern "C" fn changed_trampoline<P: IsA<Device>, F: Fn(&P) + 'static>(
this: *mut ffi::GdkDevice,
f: glib::ffi::gpointer,
) {
let f: &F = &*(f as *const F);
f(Device::from_glib_borrow(this).unsafe_cast_ref())
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(
self.as_ptr() as *mut _,
c"changed".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
changed_trampoline::<Self, F> as *const (),
)),
Box_::into_raw(f),
)
}
}
#[doc(alias = "tool-changed")]
fn connect_tool_changed<F: Fn(&Self, &DeviceTool) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe extern "C" fn tool_changed_trampoline<
P: IsA<Device>,
F: Fn(&P, &DeviceTool) + 'static,
>(
this: *mut ffi::GdkDevice,
tool: *mut ffi::GdkDeviceTool,
f: glib::ffi::gpointer,
) {
let f: &F = &*(f as *const F);
f(
Device::from_glib_borrow(this).unsafe_cast_ref(),
&from_glib_borrow(tool),
)
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(
self.as_ptr() as *mut _,
c"tool-changed".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
tool_changed_trampoline::<Self, F> as *const (),
)),
Box_::into_raw(f),
)
}
}
#[cfg(feature = "v4_18")]
#[cfg_attr(docsrs, doc(cfg(feature = "v4_18")))]
#[doc(alias = "active-layout-index")]
fn connect_active_layout_index_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe extern "C" fn notify_active_layout_index_trampoline<
P: IsA<Device>,
F: Fn(&P) + 'static,
>(
this: *mut ffi::GdkDevice,
_param_spec: glib::ffi::gpointer,
f: glib::ffi::gpointer,
) {
let f: &F = &*(f as *const F);
f(Device::from_glib_borrow(this).unsafe_cast_ref())
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(
self.as_ptr() as *mut _,
c"notify::active-layout-index".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_active_layout_index_trampoline::<Self, F> as *const (),
)),
Box_::into_raw(f),
)
}
}
#[doc(alias = "caps-lock-state")]
fn connect_caps_lock_state_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe extern "C" fn notify_caps_lock_state_trampoline<
P: IsA<Device>,
F: Fn(&P) + 'static,
>(
this: *mut ffi::GdkDevice,
_param_spec: glib::ffi::gpointer,
f: glib::ffi::gpointer,
) {
let f: &F = &*(f as *const F);
f(Device::from_glib_borrow(this).unsafe_cast_ref())
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(
self.as_ptr() as *mut _,
c"notify::caps-lock-state".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_caps_lock_state_trampoline::<Self, F> as *const (),
)),
Box_::into_raw(f),
)
}
}
#[doc(alias = "direction")]
fn connect_direction_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe extern "C" fn notify_direction_trampoline<P: IsA<Device>, F: Fn(&P) + 'static>(
this: *mut ffi::GdkDevice,
_param_spec: glib::ffi::gpointer,
f: glib::ffi::gpointer,
) {
let f: &F = &*(f as *const F);
f(Device::from_glib_borrow(this).unsafe_cast_ref())
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(
self.as_ptr() as *mut _,
c"notify::direction".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_direction_trampoline::<Self, F> as *const (),
)),
Box_::into_raw(f),
)
}
}
#[doc(alias = "has-bidi-layouts")]
fn connect_has_bidi_layouts_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe extern "C" fn notify_has_bidi_layouts_trampoline<
P: IsA<Device>,
F: Fn(&P) + 'static,
>(
this: *mut ffi::GdkDevice,
_param_spec: glib::ffi::gpointer,
f: glib::ffi::gpointer,
) {
let f: &F = &*(f as *const F);
f(Device::from_glib_borrow(this).unsafe_cast_ref())
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(
self.as_ptr() as *mut _,
c"notify::has-bidi-layouts".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_has_bidi_layouts_trampoline::<Self, F> as *const (),
)),
Box_::into_raw(f),
)
}
}
#[cfg(feature = "v4_18")]
#[cfg_attr(docsrs, doc(cfg(feature = "v4_18")))]
#[doc(alias = "layout-names")]
fn connect_layout_names_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe extern "C" fn notify_layout_names_trampoline<P: IsA<Device>, F: Fn(&P) + 'static>(
this: *mut ffi::GdkDevice,
_param_spec: glib::ffi::gpointer,
f: glib::ffi::gpointer,
) {
let f: &F = &*(f as *const F);
f(Device::from_glib_borrow(this).unsafe_cast_ref())
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(
self.as_ptr() as *mut _,
c"notify::layout-names".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_layout_names_trampoline::<Self, F> as *const (),
)),
Box_::into_raw(f),
)
}
}
#[doc(alias = "modifier-state")]
fn connect_modifier_state_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe extern "C" fn notify_modifier_state_trampoline<
P: IsA<Device>,
F: Fn(&P) + 'static,
>(
this: *mut ffi::GdkDevice,
_param_spec: glib::ffi::gpointer,
f: glib::ffi::gpointer,
) {
let f: &F = &*(f as *const F);
f(Device::from_glib_borrow(this).unsafe_cast_ref())
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(
self.as_ptr() as *mut _,
c"notify::modifier-state".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_modifier_state_trampoline::<Self, F> as *const (),
)),
Box_::into_raw(f),
)
}
}
#[doc(alias = "n-axes")]
fn connect_n_axes_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe extern "C" fn notify_n_axes_trampoline<P: IsA<Device>, F: Fn(&P) + 'static>(
this: *mut ffi::GdkDevice,
_param_spec: glib::ffi::gpointer,
f: glib::ffi::gpointer,
) {
let f: &F = &*(f as *const F);
f(Device::from_glib_borrow(this).unsafe_cast_ref())
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(
self.as_ptr() as *mut _,
c"notify::n-axes".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_n_axes_trampoline::<Self, F> as *const (),
)),
Box_::into_raw(f),
)
}
}
#[doc(alias = "num-lock-state")]
fn connect_num_lock_state_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe extern "C" fn notify_num_lock_state_trampoline<
P: IsA<Device>,
F: Fn(&P) + 'static,
>(
this: *mut ffi::GdkDevice,
_param_spec: glib::ffi::gpointer,
f: glib::ffi::gpointer,
) {
let f: &F = &*(f as *const F);
f(Device::from_glib_borrow(this).unsafe_cast_ref())
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(
self.as_ptr() as *mut _,
c"notify::num-lock-state".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_num_lock_state_trampoline::<Self, F> as *const (),
)),
Box_::into_raw(f),
)
}
}
#[doc(alias = "scroll-lock-state")]
fn connect_scroll_lock_state_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe extern "C" fn notify_scroll_lock_state_trampoline<
P: IsA<Device>,
F: Fn(&P) + 'static,
>(
this: *mut ffi::GdkDevice,
_param_spec: glib::ffi::gpointer,
f: glib::ffi::gpointer,
) {
let f: &F = &*(f as *const F);
f(Device::from_glib_borrow(this).unsafe_cast_ref())
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(
self.as_ptr() as *mut _,
c"notify::scroll-lock-state".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_scroll_lock_state_trampoline::<Self, F> as *const (),
)),
Box_::into_raw(f),
)
}
}
#[doc(alias = "seat")]
fn connect_seat_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe extern "C" fn notify_seat_trampoline<P: IsA<Device>, F: Fn(&P) + 'static>(
this: *mut ffi::GdkDevice,
_param_spec: glib::ffi::gpointer,
f: glib::ffi::gpointer,
) {
let f: &F = &*(f as *const F);
f(Device::from_glib_borrow(this).unsafe_cast_ref())
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(
self.as_ptr() as *mut _,
c"notify::seat".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_seat_trampoline::<Self, F> as *const (),
)),
Box_::into_raw(f),
)
}
}
#[doc(alias = "tool")]
fn connect_tool_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe extern "C" fn notify_tool_trampoline<P: IsA<Device>, F: Fn(&P) + 'static>(
this: *mut ffi::GdkDevice,
_param_spec: glib::ffi::gpointer,
f: glib::ffi::gpointer,
) {
let f: &F = &*(f as *const F);
f(Device::from_glib_borrow(this).unsafe_cast_ref())
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(
self.as_ptr() as *mut _,
c"notify::tool".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_tool_trampoline::<Self, F> as *const (),
)),
Box_::into_raw(f),
)
}
}
}
impl<O: IsA<Device>> DeviceExt for O {}