use crate::{NavigationDirection, Swipeable};
use glib::{
prelude::*,
signal::{connect_raw, SignalHandlerId},
translate::*,
};
use std::{boxed::Box as Box_, fmt, mem::transmute};
glib::wrapper! {
#[doc(alias = "AdwSwipeTracker")]
pub struct SwipeTracker(Object<ffi::AdwSwipeTracker, ffi::AdwSwipeTrackerClass>) @implements gtk::Orientable;
match fn {
type_ => || ffi::adw_swipe_tracker_get_type(),
}
}
impl SwipeTracker {
#[doc(alias = "adw_swipe_tracker_new")]
pub fn new(swipeable: &impl IsA<Swipeable>) -> SwipeTracker {
skip_assert_initialized!();
unsafe {
from_glib_full(ffi::adw_swipe_tracker_new(
swipeable.as_ref().to_glib_none().0,
))
}
}
pub fn builder() -> SwipeTrackerBuilder {
SwipeTrackerBuilder::new()
}
#[doc(alias = "adw_swipe_tracker_get_allow_long_swipes")]
#[doc(alias = "get_allow_long_swipes")]
pub fn allows_long_swipes(&self) -> bool {
unsafe {
from_glib(ffi::adw_swipe_tracker_get_allow_long_swipes(
self.to_glib_none().0,
))
}
}
#[doc(alias = "adw_swipe_tracker_get_allow_mouse_drag")]
#[doc(alias = "get_allow_mouse_drag")]
pub fn allows_mouse_drag(&self) -> bool {
unsafe {
from_glib(ffi::adw_swipe_tracker_get_allow_mouse_drag(
self.to_glib_none().0,
))
}
}
#[doc(alias = "adw_swipe_tracker_get_enabled")]
#[doc(alias = "get_enabled")]
pub fn is_enabled(&self) -> bool {
unsafe { from_glib(ffi::adw_swipe_tracker_get_enabled(self.to_glib_none().0)) }
}
#[cfg(feature = "v1_4")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_4")))]
#[doc(alias = "adw_swipe_tracker_get_lower_overshoot")]
#[doc(alias = "get_lower_overshoot")]
pub fn is_lower_overshoot(&self) -> bool {
unsafe {
from_glib(ffi::adw_swipe_tracker_get_lower_overshoot(
self.to_glib_none().0,
))
}
}
#[doc(alias = "adw_swipe_tracker_get_reversed")]
#[doc(alias = "get_reversed")]
pub fn is_reversed(&self) -> bool {
unsafe { from_glib(ffi::adw_swipe_tracker_get_reversed(self.to_glib_none().0)) }
}
#[doc(alias = "adw_swipe_tracker_get_swipeable")]
#[doc(alias = "get_swipeable")]
pub fn swipeable(&self) -> Swipeable {
unsafe { from_glib_none(ffi::adw_swipe_tracker_get_swipeable(self.to_glib_none().0)) }
}
#[cfg(feature = "v1_4")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_4")))]
#[doc(alias = "adw_swipe_tracker_get_upper_overshoot")]
#[doc(alias = "get_upper_overshoot")]
pub fn is_upper_overshoot(&self) -> bool {
unsafe {
from_glib(ffi::adw_swipe_tracker_get_upper_overshoot(
self.to_glib_none().0,
))
}
}
#[doc(alias = "adw_swipe_tracker_set_allow_long_swipes")]
pub fn set_allow_long_swipes(&self, allow_long_swipes: bool) {
unsafe {
ffi::adw_swipe_tracker_set_allow_long_swipes(
self.to_glib_none().0,
allow_long_swipes.into_glib(),
);
}
}
#[doc(alias = "adw_swipe_tracker_set_allow_mouse_drag")]
pub fn set_allow_mouse_drag(&self, allow_mouse_drag: bool) {
unsafe {
ffi::adw_swipe_tracker_set_allow_mouse_drag(
self.to_glib_none().0,
allow_mouse_drag.into_glib(),
);
}
}
#[doc(alias = "adw_swipe_tracker_set_enabled")]
pub fn set_enabled(&self, enabled: bool) {
unsafe {
ffi::adw_swipe_tracker_set_enabled(self.to_glib_none().0, enabled.into_glib());
}
}
#[cfg(feature = "v1_4")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_4")))]
#[doc(alias = "adw_swipe_tracker_set_lower_overshoot")]
pub fn set_lower_overshoot(&self, overshoot: bool) {
unsafe {
ffi::adw_swipe_tracker_set_lower_overshoot(
self.to_glib_none().0,
overshoot.into_glib(),
);
}
}
#[doc(alias = "adw_swipe_tracker_set_reversed")]
pub fn set_reversed(&self, reversed: bool) {
unsafe {
ffi::adw_swipe_tracker_set_reversed(self.to_glib_none().0, reversed.into_glib());
}
}
#[cfg(feature = "v1_4")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_4")))]
#[doc(alias = "adw_swipe_tracker_set_upper_overshoot")]
pub fn set_upper_overshoot(&self, overshoot: bool) {
unsafe {
ffi::adw_swipe_tracker_set_upper_overshoot(
self.to_glib_none().0,
overshoot.into_glib(),
);
}
}
#[doc(alias = "adw_swipe_tracker_shift_position")]
pub fn shift_position(&self, delta: f64) {
unsafe {
ffi::adw_swipe_tracker_shift_position(self.to_glib_none().0, delta);
}
}
#[doc(alias = "begin-swipe")]
pub fn connect_begin_swipe<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe extern "C" fn begin_swipe_trampoline<F: Fn(&SwipeTracker) + 'static>(
this: *mut ffi::AdwSwipeTracker,
f: glib::ffi::gpointer,
) {
let f: &F = &*(f as *const F);
f(&from_glib_borrow(this))
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(
self.as_ptr() as *mut _,
b"begin-swipe\0".as_ptr() as *const _,
Some(transmute::<_, unsafe extern "C" fn()>(
begin_swipe_trampoline::<F> as *const (),
)),
Box_::into_raw(f),
)
}
}
#[doc(alias = "end-swipe")]
pub fn connect_end_swipe<F: Fn(&Self, f64, f64) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe extern "C" fn end_swipe_trampoline<F: Fn(&SwipeTracker, f64, f64) + 'static>(
this: *mut ffi::AdwSwipeTracker,
velocity: libc::c_double,
to: libc::c_double,
f: glib::ffi::gpointer,
) {
let f: &F = &*(f as *const F);
f(&from_glib_borrow(this), velocity, to)
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(
self.as_ptr() as *mut _,
b"end-swipe\0".as_ptr() as *const _,
Some(transmute::<_, unsafe extern "C" fn()>(
end_swipe_trampoline::<F> as *const (),
)),
Box_::into_raw(f),
)
}
}
#[doc(alias = "prepare")]
pub fn connect_prepare<F: Fn(&Self, NavigationDirection) + 'static>(
&self,
f: F,
) -> SignalHandlerId {
unsafe extern "C" fn prepare_trampoline<
F: Fn(&SwipeTracker, NavigationDirection) + 'static,
>(
this: *mut ffi::AdwSwipeTracker,
direction: ffi::AdwNavigationDirection,
f: glib::ffi::gpointer,
) {
let f: &F = &*(f as *const F);
f(&from_glib_borrow(this), from_glib(direction))
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(
self.as_ptr() as *mut _,
b"prepare\0".as_ptr() as *const _,
Some(transmute::<_, unsafe extern "C" fn()>(
prepare_trampoline::<F> as *const (),
)),
Box_::into_raw(f),
)
}
}
#[doc(alias = "update-swipe")]
pub fn connect_update_swipe<F: Fn(&Self, f64) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe extern "C" fn update_swipe_trampoline<F: Fn(&SwipeTracker, f64) + 'static>(
this: *mut ffi::AdwSwipeTracker,
progress: libc::c_double,
f: glib::ffi::gpointer,
) {
let f: &F = &*(f as *const F);
f(&from_glib_borrow(this), progress)
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(
self.as_ptr() as *mut _,
b"update-swipe\0".as_ptr() as *const _,
Some(transmute::<_, unsafe extern "C" fn()>(
update_swipe_trampoline::<F> as *const (),
)),
Box_::into_raw(f),
)
}
}
#[doc(alias = "allow-long-swipes")]
pub fn connect_allow_long_swipes_notify<F: Fn(&Self) + 'static>(
&self,
f: F,
) -> SignalHandlerId {
unsafe extern "C" fn notify_allow_long_swipes_trampoline<F: Fn(&SwipeTracker) + 'static>(
this: *mut ffi::AdwSwipeTracker,
_param_spec: glib::ffi::gpointer,
f: glib::ffi::gpointer,
) {
let f: &F = &*(f as *const F);
f(&from_glib_borrow(this))
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(
self.as_ptr() as *mut _,
b"notify::allow-long-swipes\0".as_ptr() as *const _,
Some(transmute::<_, unsafe extern "C" fn()>(
notify_allow_long_swipes_trampoline::<F> as *const (),
)),
Box_::into_raw(f),
)
}
}
#[doc(alias = "allow-mouse-drag")]
pub fn connect_allow_mouse_drag_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe extern "C" fn notify_allow_mouse_drag_trampoline<F: Fn(&SwipeTracker) + 'static>(
this: *mut ffi::AdwSwipeTracker,
_param_spec: glib::ffi::gpointer,
f: glib::ffi::gpointer,
) {
let f: &F = &*(f as *const F);
f(&from_glib_borrow(this))
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(
self.as_ptr() as *mut _,
b"notify::allow-mouse-drag\0".as_ptr() as *const _,
Some(transmute::<_, unsafe extern "C" fn()>(
notify_allow_mouse_drag_trampoline::<F> as *const (),
)),
Box_::into_raw(f),
)
}
}
#[doc(alias = "enabled")]
pub fn connect_enabled_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe extern "C" fn notify_enabled_trampoline<F: Fn(&SwipeTracker) + 'static>(
this: *mut ffi::AdwSwipeTracker,
_param_spec: glib::ffi::gpointer,
f: glib::ffi::gpointer,
) {
let f: &F = &*(f as *const F);
f(&from_glib_borrow(this))
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(
self.as_ptr() as *mut _,
b"notify::enabled\0".as_ptr() as *const _,
Some(transmute::<_, unsafe extern "C" fn()>(
notify_enabled_trampoline::<F> as *const (),
)),
Box_::into_raw(f),
)
}
}
#[cfg(feature = "v1_4")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_4")))]
#[doc(alias = "lower-overshoot")]
pub fn connect_lower_overshoot_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe extern "C" fn notify_lower_overshoot_trampoline<F: Fn(&SwipeTracker) + 'static>(
this: *mut ffi::AdwSwipeTracker,
_param_spec: glib::ffi::gpointer,
f: glib::ffi::gpointer,
) {
let f: &F = &*(f as *const F);
f(&from_glib_borrow(this))
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(
self.as_ptr() as *mut _,
b"notify::lower-overshoot\0".as_ptr() as *const _,
Some(transmute::<_, unsafe extern "C" fn()>(
notify_lower_overshoot_trampoline::<F> as *const (),
)),
Box_::into_raw(f),
)
}
}
#[doc(alias = "reversed")]
pub fn connect_reversed_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe extern "C" fn notify_reversed_trampoline<F: Fn(&SwipeTracker) + 'static>(
this: *mut ffi::AdwSwipeTracker,
_param_spec: glib::ffi::gpointer,
f: glib::ffi::gpointer,
) {
let f: &F = &*(f as *const F);
f(&from_glib_borrow(this))
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(
self.as_ptr() as *mut _,
b"notify::reversed\0".as_ptr() as *const _,
Some(transmute::<_, unsafe extern "C" fn()>(
notify_reversed_trampoline::<F> as *const (),
)),
Box_::into_raw(f),
)
}
}
#[cfg(feature = "v1_4")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_4")))]
#[doc(alias = "upper-overshoot")]
pub fn connect_upper_overshoot_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe extern "C" fn notify_upper_overshoot_trampoline<F: Fn(&SwipeTracker) + 'static>(
this: *mut ffi::AdwSwipeTracker,
_param_spec: glib::ffi::gpointer,
f: glib::ffi::gpointer,
) {
let f: &F = &*(f as *const F);
f(&from_glib_borrow(this))
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(
self.as_ptr() as *mut _,
b"notify::upper-overshoot\0".as_ptr() as *const _,
Some(transmute::<_, unsafe extern "C" fn()>(
notify_upper_overshoot_trampoline::<F> as *const (),
)),
Box_::into_raw(f),
)
}
}
}
impl Default for SwipeTracker {
fn default() -> Self {
glib::object::Object::new::<Self>()
}
}
#[must_use = "The builder must be built to be used"]
pub struct SwipeTrackerBuilder {
builder: glib::object::ObjectBuilder<'static, SwipeTracker>,
}
impl SwipeTrackerBuilder {
fn new() -> Self {
Self {
builder: glib::object::Object::builder(),
}
}
pub fn allow_long_swipes(self, allow_long_swipes: bool) -> Self {
Self {
builder: self
.builder
.property("allow-long-swipes", allow_long_swipes),
}
}
pub fn allow_mouse_drag(self, allow_mouse_drag: bool) -> Self {
Self {
builder: self.builder.property("allow-mouse-drag", allow_mouse_drag),
}
}
pub fn enabled(self, enabled: bool) -> Self {
Self {
builder: self.builder.property("enabled", enabled),
}
}
#[cfg(feature = "v1_4")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_4")))]
pub fn lower_overshoot(self, lower_overshoot: bool) -> Self {
Self {
builder: self.builder.property("lower-overshoot", lower_overshoot),
}
}
pub fn reversed(self, reversed: bool) -> Self {
Self {
builder: self.builder.property("reversed", reversed),
}
}
pub fn swipeable(self, swipeable: &impl IsA<Swipeable>) -> Self {
Self {
builder: self
.builder
.property("swipeable", swipeable.clone().upcast()),
}
}
#[cfg(feature = "v1_4")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_4")))]
pub fn upper_overshoot(self, upper_overshoot: bool) -> Self {
Self {
builder: self.builder.property("upper-overshoot", upper_overshoot),
}
}
pub fn orientation(self, orientation: gtk::Orientation) -> Self {
Self {
builder: self.builder.property("orientation", orientation),
}
}
#[must_use = "Building the object from the builder is usually expensive and is not expected to have side effects"]
pub fn build(self) -> SwipeTracker {
self.builder.build()
}
}
impl fmt::Display for SwipeTracker {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
f.write_str("SwipeTracker")
}
}