#[cfg(feature = "v3_20")]
use Device;
#[cfg(feature = "v3_22")]
use DeviceTool;
use Display;
#[cfg(feature = "v3_20")]
use SeatCapabilities;
use ffi;
use glib;
#[cfg(feature = "v3_20")]
use glib::object::Downcast;
use glib::object::IsA;
#[cfg(feature = "v3_20")]
use glib::signal::connect;
use glib::translate::*;
use glib_ffi;
use gobject_ffi;
#[cfg(feature = "v3_20")]
use std::boxed::Box as Box_;
use std::mem;
#[cfg(feature = "v3_20")]
use std::mem::transmute;
use std::ptr;
glib_wrapper! {
pub struct Seat(Object<ffi::GdkSeat>);
match fn {
get_type => || ffi::gdk_seat_get_type(),
}
}
pub trait SeatExt {
#[cfg(feature = "v3_20")]
fn get_capabilities(&self) -> SeatCapabilities;
fn get_display(&self) -> Option<Display>;
#[cfg(feature = "v3_20")]
fn get_keyboard(&self) -> Option<Device>;
#[cfg(feature = "v3_20")]
fn get_pointer(&self) -> Option<Device>;
#[cfg(feature = "v3_20")]
fn get_slaves(&self, capabilities: SeatCapabilities) -> Vec<Device>;
#[cfg(feature = "v3_20")]
fn ungrab(&self);
#[cfg(feature = "v3_20")]
fn connect_device_added<F: Fn(&Self, &Device) + 'static>(&self, f: F) -> u64;
#[cfg(feature = "v3_20")]
fn connect_device_removed<F: Fn(&Self, &Device) + 'static>(&self, f: F) -> u64;
#[cfg(feature = "v3_22")]
fn connect_tool_added<F: Fn(&Self, &DeviceTool) + 'static>(&self, f: F) -> u64;
#[cfg(feature = "v3_22")]
fn connect_tool_removed<F: Fn(&Self, &DeviceTool) + 'static>(&self, f: F) -> u64;
#[cfg(feature = "v3_20")]
fn connect_property_display_notify<F: Fn(&Self) + 'static>(&self, f: F) -> u64;
}
impl<O: IsA<Seat> + IsA<glib::object::Object>> SeatExt for O {
#[cfg(feature = "v3_20")]
fn get_capabilities(&self) -> SeatCapabilities {
unsafe {
from_glib(ffi::gdk_seat_get_capabilities(self.to_glib_none().0))
}
}
fn get_display(&self) -> Option<Display> {
unsafe {
from_glib_none(ffi::gdk_seat_get_display(self.to_glib_none().0))
}
}
#[cfg(feature = "v3_20")]
fn get_keyboard(&self) -> Option<Device> {
unsafe {
from_glib_none(ffi::gdk_seat_get_keyboard(self.to_glib_none().0))
}
}
#[cfg(feature = "v3_20")]
fn get_pointer(&self) -> Option<Device> {
unsafe {
from_glib_none(ffi::gdk_seat_get_pointer(self.to_glib_none().0))
}
}
#[cfg(feature = "v3_20")]
fn get_slaves(&self, capabilities: SeatCapabilities) -> Vec<Device> {
unsafe {
FromGlibPtrContainer::from_glib_container(ffi::gdk_seat_get_slaves(self.to_glib_none().0, capabilities.to_glib()))
}
}
#[cfg(feature = "v3_20")]
fn ungrab(&self) {
unsafe {
ffi::gdk_seat_ungrab(self.to_glib_none().0);
}
}
#[cfg(feature = "v3_20")]
fn connect_device_added<F: Fn(&Self, &Device) + 'static>(&self, f: F) -> u64 {
unsafe {
let f: Box_<Box_<Fn(&Self, &Device) + 'static>> = Box_::new(Box_::new(f));
connect(self.to_glib_none().0, "device-added",
transmute(device_added_trampoline::<Self> as usize), Box_::into_raw(f) as *mut _)
}
}
#[cfg(feature = "v3_20")]
fn connect_device_removed<F: Fn(&Self, &Device) + 'static>(&self, f: F) -> u64 {
unsafe {
let f: Box_<Box_<Fn(&Self, &Device) + 'static>> = Box_::new(Box_::new(f));
connect(self.to_glib_none().0, "device-removed",
transmute(device_removed_trampoline::<Self> as usize), Box_::into_raw(f) as *mut _)
}
}
#[cfg(feature = "v3_22")]
fn connect_tool_added<F: Fn(&Self, &DeviceTool) + 'static>(&self, f: F) -> u64 {
unsafe {
let f: Box_<Box_<Fn(&Self, &DeviceTool) + 'static>> = Box_::new(Box_::new(f));
connect(self.to_glib_none().0, "tool-added",
transmute(tool_added_trampoline::<Self> as usize), Box_::into_raw(f) as *mut _)
}
}
#[cfg(feature = "v3_22")]
fn connect_tool_removed<F: Fn(&Self, &DeviceTool) + 'static>(&self, f: F) -> u64 {
unsafe {
let f: Box_<Box_<Fn(&Self, &DeviceTool) + 'static>> = Box_::new(Box_::new(f));
connect(self.to_glib_none().0, "tool-removed",
transmute(tool_removed_trampoline::<Self> as usize), Box_::into_raw(f) as *mut _)
}
}
#[cfg(feature = "v3_20")]
fn connect_property_display_notify<F: Fn(&Self) + 'static>(&self, f: F) -> u64 {
unsafe {
let f: Box_<Box_<Fn(&Self) + 'static>> = Box_::new(Box_::new(f));
connect(self.to_glib_none().0, "notify::display",
transmute(notify_display_trampoline::<Self> as usize), Box_::into_raw(f) as *mut _)
}
}
}
#[cfg(feature = "v3_20")]
unsafe extern "C" fn device_added_trampoline<P>(this: *mut ffi::GdkSeat, device: *mut ffi::GdkDevice, f: glib_ffi::gpointer)
where P: IsA<Seat> {
callback_guard!();
let f: &&(Fn(&P, &Device) + 'static) = transmute(f);
f(&Seat::from_glib_none(this).downcast_unchecked(), &from_glib_none(device))
}
#[cfg(feature = "v3_20")]
unsafe extern "C" fn device_removed_trampoline<P>(this: *mut ffi::GdkSeat, device: *mut ffi::GdkDevice, f: glib_ffi::gpointer)
where P: IsA<Seat> {
callback_guard!();
let f: &&(Fn(&P, &Device) + 'static) = transmute(f);
f(&Seat::from_glib_none(this).downcast_unchecked(), &from_glib_none(device))
}
#[cfg(feature = "v3_22")]
unsafe extern "C" fn tool_added_trampoline<P>(this: *mut ffi::GdkSeat, tool: *mut ffi::GdkDeviceTool, f: glib_ffi::gpointer)
where P: IsA<Seat> {
callback_guard!();
let f: &&(Fn(&P, &DeviceTool) + 'static) = transmute(f);
f(&Seat::from_glib_none(this).downcast_unchecked(), &from_glib_none(tool))
}
#[cfg(feature = "v3_22")]
unsafe extern "C" fn tool_removed_trampoline<P>(this: *mut ffi::GdkSeat, tool: *mut ffi::GdkDeviceTool, f: glib_ffi::gpointer)
where P: IsA<Seat> {
callback_guard!();
let f: &&(Fn(&P, &DeviceTool) + 'static) = transmute(f);
f(&Seat::from_glib_none(this).downcast_unchecked(), &from_glib_none(tool))
}
#[cfg(feature = "v3_20")]
unsafe extern "C" fn notify_display_trampoline<P>(this: *mut ffi::GdkSeat, _param_spec: glib_ffi::gpointer, f: glib_ffi::gpointer)
where P: IsA<Seat> {
callback_guard!();
let f: &&(Fn(&P) + 'static) = transmute(f);
f(&Seat::from_glib_none(this).downcast_unchecked())
}