use crate::{EventController, Gesture, GestureSingle, PropagationPhase, Widget, ffi};
use glib::{
object::ObjectType as _,
prelude::*,
signal::{SignalHandlerId, connect_raw},
translate::*,
};
use std::boxed::Box as Box_;
glib::wrapper! {
#[doc(alias = "GtkGestureStylus")]
pub struct GestureStylus(Object<ffi::GtkGestureStylus, ffi::GtkGestureStylusClass>) @extends GestureSingle, Gesture, EventController;
match fn {
type_ => || ffi::gtk_gesture_stylus_get_type(),
}
}
impl GestureStylus {
#[doc(alias = "gtk_gesture_stylus_new")]
pub fn new(widget: &impl IsA<Widget>) -> GestureStylus {
skip_assert_initialized!();
unsafe {
Gesture::from_glib_full(ffi::gtk_gesture_stylus_new(
widget.as_ref().to_glib_none().0,
))
.unsafe_cast()
}
}
pub fn builder() -> GestureStylusBuilder {
GestureStylusBuilder::new()
}
#[doc(alias = "gtk_gesture_stylus_get_axis")]
#[doc(alias = "get_axis")]
pub fn axis(&self, axis: gdk::AxisUse) -> Option<f64> {
unsafe {
let mut value = std::mem::MaybeUninit::uninit();
let ret = from_glib(ffi::gtk_gesture_stylus_get_axis(
self.to_glib_none().0,
axis.into_glib(),
value.as_mut_ptr(),
));
if ret { Some(value.assume_init()) } else { None }
}
}
#[doc(alias = "gtk_gesture_stylus_get_device_tool")]
#[doc(alias = "get_device_tool")]
pub fn device_tool(&self) -> Option<gdk::DeviceTool> {
unsafe {
from_glib_none(ffi::gtk_gesture_stylus_get_device_tool(
self.to_glib_none().0,
))
}
}
#[doc(alias = "down")]
pub fn connect_down<F: Fn(&Self, f64, f64) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe extern "C" fn down_trampoline<F: Fn(&GestureStylus, f64, f64) + 'static>(
this: *mut ffi::GtkGestureStylus,
object: std::ffi::c_double,
p0: std::ffi::c_double,
f: glib::ffi::gpointer,
) {
unsafe {
let f: &F = &*(f as *const F);
f(&from_glib_borrow(this), object, p0)
}
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(
self.as_ptr() as *mut _,
c"down".as_ptr(),
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
down_trampoline::<F> as *const (),
)),
Box_::into_raw(f),
)
}
}
#[doc(alias = "motion")]
pub fn connect_motion<F: Fn(&Self, f64, f64) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe extern "C" fn motion_trampoline<F: Fn(&GestureStylus, f64, f64) + 'static>(
this: *mut ffi::GtkGestureStylus,
object: std::ffi::c_double,
p0: std::ffi::c_double,
f: glib::ffi::gpointer,
) {
unsafe {
let f: &F = &*(f as *const F);
f(&from_glib_borrow(this), object, p0)
}
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(
self.as_ptr() as *mut _,
c"motion".as_ptr(),
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
motion_trampoline::<F> as *const (),
)),
Box_::into_raw(f),
)
}
}
#[doc(alias = "proximity")]
pub fn connect_proximity<F: Fn(&Self, f64, f64) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe extern "C" fn proximity_trampoline<F: Fn(&GestureStylus, f64, f64) + 'static>(
this: *mut ffi::GtkGestureStylus,
object: std::ffi::c_double,
p0: std::ffi::c_double,
f: glib::ffi::gpointer,
) {
unsafe {
let f: &F = &*(f as *const F);
f(&from_glib_borrow(this), object, p0)
}
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(
self.as_ptr() as *mut _,
c"proximity".as_ptr(),
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
proximity_trampoline::<F> as *const (),
)),
Box_::into_raw(f),
)
}
}
#[doc(alias = "up")]
pub fn connect_up<F: Fn(&Self, f64, f64) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe extern "C" fn up_trampoline<F: Fn(&GestureStylus, f64, f64) + 'static>(
this: *mut ffi::GtkGestureStylus,
object: std::ffi::c_double,
p0: std::ffi::c_double,
f: glib::ffi::gpointer,
) {
unsafe {
let f: &F = &*(f as *const F);
f(&from_glib_borrow(this), object, p0)
}
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(
self.as_ptr() as *mut _,
c"up".as_ptr(),
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
up_trampoline::<F> as *const (),
)),
Box_::into_raw(f),
)
}
}
}
#[cfg(feature = "v3_24")]
#[cfg_attr(docsrs, doc(cfg(feature = "v3_24")))]
impl Default for GestureStylus {
fn default() -> Self {
glib::object::Object::new::<Self>()
}
}
#[must_use = "The builder must be built to be used"]
pub struct GestureStylusBuilder {
builder: glib::object::ObjectBuilder<'static, GestureStylus>,
}
impl GestureStylusBuilder {
fn new() -> Self {
Self {
builder: glib::object::Object::builder(),
}
}
pub fn button(self, button: u32) -> Self {
Self {
builder: self.builder.property("button", button),
}
}
pub fn exclusive(self, exclusive: bool) -> Self {
Self {
builder: self.builder.property("exclusive", exclusive),
}
}
pub fn touch_only(self, touch_only: bool) -> Self {
Self {
builder: self.builder.property("touch-only", touch_only),
}
}
pub fn n_points(self, n_points: u32) -> Self {
Self {
builder: self.builder.property("n-points", n_points),
}
}
pub fn window(self, window: &gdk::Window) -> Self {
Self {
builder: self.builder.property("window", window.clone()),
}
}
pub fn propagation_phase(self, propagation_phase: PropagationPhase) -> Self {
Self {
builder: self
.builder
.property("propagation-phase", propagation_phase),
}
}
pub fn widget(self, widget: &impl IsA<Widget>) -> Self {
Self {
builder: self.builder.property("widget", widget.clone().upcast()),
}
}
#[must_use = "Building the object from the builder is usually expensive and is not expected to have side effects"]
pub fn build(self) -> GestureStylus {
assert_initialized_main_thread!();
self.builder.build()
}
}