use crate::{ffi,Animation,AnimationTarget,SpringParams};
use glib::{prelude::*,signal::{connect_raw, SignalHandlerId},translate::*};
use std::{boxed::Box as Box_};
glib::wrapper! {
#[doc(alias = "BisSpringAnimation")]
pub struct SpringAnimation(Object<ffi::BisSpringAnimation, ffi::BisSpringAnimationClass>) @extends Animation;
match fn {
type_ => || ffi::bis_spring_animation_get_type(),
}
}
impl SpringAnimation {
#[doc(alias = "bis_spring_animation_new")]
pub fn new(widget: &impl IsA<gtk::Widget>, from: f64, to: f64, spring_params: SpringParams, target: impl IsA<AnimationTarget>) -> SpringAnimation {
skip_assert_initialized!();
unsafe {
Animation::from_glib_none(ffi::bis_spring_animation_new(widget.as_ref().to_glib_none().0, from, to, spring_params.into_glib_ptr(), target.upcast().into_glib_ptr())).unsafe_cast()
}
}
pub fn builder() -> SpringAnimationBuilder {
SpringAnimationBuilder::new()
}
#[doc(alias = "bis_spring_animation_get_epsilon")]
#[doc(alias = "get_epsilon")]
pub fn epsilon(&self) -> f64 {
unsafe {
ffi::bis_spring_animation_get_epsilon(self.to_glib_none().0)
}
}
#[doc(alias = "bis_spring_animation_get_estimated_duration")]
#[doc(alias = "get_estimated_duration")]
#[doc(alias = "estimated-duration")]
pub fn estimated_duration(&self) -> u32 {
unsafe {
ffi::bis_spring_animation_get_estimated_duration(self.to_glib_none().0)
}
}
#[doc(alias = "bis_spring_animation_get_initial_velocity")]
#[doc(alias = "get_initial_velocity")]
#[doc(alias = "initial-velocity")]
pub fn initial_velocity(&self) -> f64 {
unsafe {
ffi::bis_spring_animation_get_initial_velocity(self.to_glib_none().0)
}
}
#[doc(alias = "bis_spring_animation_get_latch")]
#[doc(alias = "get_latch")]
#[doc(alias = "latch")]
pub fn is_latch(&self) -> bool {
unsafe {
from_glib(ffi::bis_spring_animation_get_latch(self.to_glib_none().0))
}
}
#[doc(alias = "bis_spring_animation_get_spring_params")]
#[doc(alias = "get_spring_params")]
#[doc(alias = "spring-params")]
pub fn spring_params(&self) -> SpringParams {
unsafe {
from_glib_none(ffi::bis_spring_animation_get_spring_params(self.to_glib_none().0))
}
}
#[doc(alias = "bis_spring_animation_get_value_from")]
#[doc(alias = "get_value_from")]
#[doc(alias = "value-from")]
pub fn value_from(&self) -> f64 {
unsafe {
ffi::bis_spring_animation_get_value_from(self.to_glib_none().0)
}
}
#[doc(alias = "bis_spring_animation_get_value_to")]
#[doc(alias = "get_value_to")]
#[doc(alias = "value-to")]
pub fn value_to(&self) -> f64 {
unsafe {
ffi::bis_spring_animation_get_value_to(self.to_glib_none().0)
}
}
#[doc(alias = "bis_spring_animation_get_velocity")]
#[doc(alias = "get_velocity")]
pub fn velocity(&self) -> f64 {
unsafe {
ffi::bis_spring_animation_get_velocity(self.to_glib_none().0)
}
}
#[doc(alias = "bis_spring_animation_set_epsilon")]
#[doc(alias = "epsilon")]
pub fn set_epsilon(&self, epsilon: f64) {
unsafe {
ffi::bis_spring_animation_set_epsilon(self.to_glib_none().0, epsilon);
}
}
#[doc(alias = "bis_spring_animation_set_initial_velocity")]
#[doc(alias = "initial-velocity")]
pub fn set_initial_velocity(&self, velocity: f64) {
unsafe {
ffi::bis_spring_animation_set_initial_velocity(self.to_glib_none().0, velocity);
}
}
#[doc(alias = "bis_spring_animation_set_latch")]
#[doc(alias = "latch")]
pub fn set_latch(&self, latch: bool) {
unsafe {
ffi::bis_spring_animation_set_latch(self.to_glib_none().0, latch.into_glib());
}
}
#[doc(alias = "bis_spring_animation_set_spring_params")]
#[doc(alias = "spring-params")]
pub fn set_spring_params(&self, spring_params: &SpringParams) {
unsafe {
ffi::bis_spring_animation_set_spring_params(self.to_glib_none().0, spring_params.to_glib_none().0);
}
}
#[doc(alias = "bis_spring_animation_set_value_from")]
#[doc(alias = "value-from")]
pub fn set_value_from(&self, value: f64) {
unsafe {
ffi::bis_spring_animation_set_value_from(self.to_glib_none().0, value);
}
}
#[doc(alias = "bis_spring_animation_set_value_to")]
#[doc(alias = "value-to")]
pub fn set_value_to(&self, value: f64) {
unsafe {
ffi::bis_spring_animation_set_value_to(self.to_glib_none().0, value);
}
}
#[doc(alias = "epsilon")]
pub fn connect_epsilon_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe extern "C" fn notify_epsilon_trampoline<F: Fn(&SpringAnimation) + 'static>(this: *mut ffi::BisSpringAnimation, _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::epsilon\0".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(notify_epsilon_trampoline::<F> as *const ())), Box_::into_raw(f))
}
}
#[doc(alias = "estimated-duration")]
pub fn connect_estimated_duration_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe extern "C" fn notify_estimated_duration_trampoline<F: Fn(&SpringAnimation) + 'static>(this: *mut ffi::BisSpringAnimation, _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::estimated-duration\0".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(notify_estimated_duration_trampoline::<F> as *const ())), Box_::into_raw(f))
}
}
#[doc(alias = "initial-velocity")]
pub fn connect_initial_velocity_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe extern "C" fn notify_initial_velocity_trampoline<F: Fn(&SpringAnimation) + 'static>(this: *mut ffi::BisSpringAnimation, _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::initial-velocity\0".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(notify_initial_velocity_trampoline::<F> as *const ())), Box_::into_raw(f))
}
}
#[doc(alias = "latch")]
pub fn connect_latch_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe extern "C" fn notify_latch_trampoline<F: Fn(&SpringAnimation) + 'static>(this: *mut ffi::BisSpringAnimation, _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::latch\0".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(notify_latch_trampoline::<F> as *const ())), Box_::into_raw(f))
}
}
#[doc(alias = "spring-params")]
pub fn connect_spring_params_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe extern "C" fn notify_spring_params_trampoline<F: Fn(&SpringAnimation) + 'static>(this: *mut ffi::BisSpringAnimation, _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::spring-params\0".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(notify_spring_params_trampoline::<F> as *const ())), Box_::into_raw(f))
}
}
#[doc(alias = "value-from")]
pub fn connect_value_from_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe extern "C" fn notify_value_from_trampoline<F: Fn(&SpringAnimation) + 'static>(this: *mut ffi::BisSpringAnimation, _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::value-from\0".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(notify_value_from_trampoline::<F> as *const ())), Box_::into_raw(f))
}
}
#[doc(alias = "value-to")]
pub fn connect_value_to_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe extern "C" fn notify_value_to_trampoline<F: Fn(&SpringAnimation) + 'static>(this: *mut ffi::BisSpringAnimation, _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::value-to\0".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(notify_value_to_trampoline::<F> as *const ())), Box_::into_raw(f))
}
}
#[doc(alias = "velocity")]
pub fn connect_velocity_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe extern "C" fn notify_velocity_trampoline<F: Fn(&SpringAnimation) + 'static>(this: *mut ffi::BisSpringAnimation, _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::velocity\0".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(notify_velocity_trampoline::<F> as *const ())), Box_::into_raw(f))
}
}
}
impl Default for SpringAnimation {
fn default() -> Self {
glib::object::Object::new::<Self>()
}
}
#[must_use = "The builder must be built to be used"]
pub struct SpringAnimationBuilder {
builder: glib::object::ObjectBuilder<'static, SpringAnimation>,
}
impl SpringAnimationBuilder {
fn new() -> Self {
Self { builder: glib::object::Object::builder() }
}
pub fn epsilon(self, epsilon: f64) -> Self {
Self { builder: self.builder.property("epsilon", epsilon), }
}
pub fn initial_velocity(self, initial_velocity: f64) -> Self {
Self { builder: self.builder.property("initial-velocity", initial_velocity), }
}
pub fn latch(self, latch: bool) -> Self {
Self { builder: self.builder.property("latch", latch), }
}
pub fn spring_params(self, spring_params: &SpringParams) -> Self {
Self { builder: self.builder.property("spring-params", spring_params.clone()), }
}
pub fn value_from(self, value_from: f64) -> Self {
Self { builder: self.builder.property("value-from", value_from), }
}
pub fn value_to(self, value_to: f64) -> Self {
Self { builder: self.builder.property("value-to", value_to), }
}
pub fn target(self, target: &impl IsA<AnimationTarget>) -> Self {
Self { builder: self.builder.property("target", target.clone().upcast()), }
}
pub fn widget(self, widget: &impl IsA<gtk::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) -> SpringAnimation {
self.builder.build() }
}