use crate::{ffi,NavigationDirection,Swipeable};
use glib::{prelude::*,signal::{connect_raw, SignalHandlerId},translate::*};
use std::{boxed::Box as Box_};
glib::wrapper! {
#[doc(alias = "BisSwipeTracker")]
pub struct SwipeTracker(Object<ffi::BisSwipeTracker, ffi::BisSwipeTrackerClass>) @implements gtk::Orientable;
match fn {
type_ => || ffi::bis_swipe_tracker_get_type(),
}
}
impl SwipeTracker {
#[doc(alias = "bis_swipe_tracker_new")]
pub fn new(swipeable: &impl IsA<Swipeable>) -> SwipeTracker {
skip_assert_initialized!();
unsafe {
from_glib_full(ffi::bis_swipe_tracker_new(swipeable.as_ref().to_glib_none().0))
}
}
pub fn builder() -> SwipeTrackerBuilder {
SwipeTrackerBuilder::new()
}
#[doc(alias = "bis_swipe_tracker_get_allow_long_swipes")]
#[doc(alias = "get_allow_long_swipes")]
#[doc(alias = "allow-long-swipes")]
pub fn allows_long_swipes(&self) -> bool {
unsafe {
from_glib(ffi::bis_swipe_tracker_get_allow_long_swipes(self.to_glib_none().0))
}
}
#[doc(alias = "bis_swipe_tracker_get_allow_mouse_drag")]
#[doc(alias = "get_allow_mouse_drag")]
#[doc(alias = "allow-mouse-drag")]
pub fn allows_mouse_drag(&self) -> bool {
unsafe {
from_glib(ffi::bis_swipe_tracker_get_allow_mouse_drag(self.to_glib_none().0))
}
}
#[doc(alias = "bis_swipe_tracker_get_enabled")]
#[doc(alias = "get_enabled")]
#[doc(alias = "enabled")]
pub fn is_enabled(&self) -> bool {
unsafe {
from_glib(ffi::bis_swipe_tracker_get_enabled(self.to_glib_none().0))
}
}
#[doc(alias = "bis_swipe_tracker_get_reversed")]
#[doc(alias = "get_reversed")]
#[doc(alias = "reversed")]
pub fn is_reversed(&self) -> bool {
unsafe {
from_glib(ffi::bis_swipe_tracker_get_reversed(self.to_glib_none().0))
}
}
#[doc(alias = "bis_swipe_tracker_get_swipeable")]
#[doc(alias = "get_swipeable")]
pub fn swipeable(&self) -> Swipeable {
unsafe {
from_glib_none(ffi::bis_swipe_tracker_get_swipeable(self.to_glib_none().0))
}
}
#[doc(alias = "bis_swipe_tracker_set_allow_long_swipes")]
#[doc(alias = "allow-long-swipes")]
pub fn set_allow_long_swipes(&self, allow_long_swipes: bool) {
unsafe {
ffi::bis_swipe_tracker_set_allow_long_swipes(self.to_glib_none().0, allow_long_swipes.into_glib());
}
}
#[doc(alias = "bis_swipe_tracker_set_allow_mouse_drag")]
#[doc(alias = "allow-mouse-drag")]
pub fn set_allow_mouse_drag(&self, allow_mouse_drag: bool) {
unsafe {
ffi::bis_swipe_tracker_set_allow_mouse_drag(self.to_glib_none().0, allow_mouse_drag.into_glib());
}
}
#[doc(alias = "bis_swipe_tracker_set_enabled")]
#[doc(alias = "enabled")]
pub fn set_enabled(&self, enabled: bool) {
unsafe {
ffi::bis_swipe_tracker_set_enabled(self.to_glib_none().0, enabled.into_glib());
}
}
#[doc(alias = "bis_swipe_tracker_set_reversed")]
#[doc(alias = "reversed")]
pub fn set_reversed(&self, reversed: bool) {
unsafe {
ffi::bis_swipe_tracker_set_reversed(self.to_glib_none().0, reversed.into_glib());
}
}
#[doc(alias = "bis_swipe_tracker_shift_position")]
pub fn shift_position(&self, delta: f64) {
unsafe {
ffi::bis_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::BisSwipeTracker, 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(std::mem::transmute::<*const (), 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::BisSwipeTracker, 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(std::mem::transmute::<*const (), 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::BisSwipeTracker, direction: ffi::BisNavigationDirection, 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(std::mem::transmute::<*const (), 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::BisSwipeTracker, 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(std::mem::transmute::<*const (), 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::BisSwipeTracker, _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(std::mem::transmute::<*const (), 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::BisSwipeTracker, _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(std::mem::transmute::<*const (), 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::BisSwipeTracker, _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(std::mem::transmute::<*const (), unsafe extern "C" fn()>(notify_enabled_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::BisSwipeTracker, _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(std::mem::transmute::<*const (), unsafe extern "C" fn()>(notify_reversed_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), }
}
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()), }
}
#[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() }
}