// This file was generated by gir (https://github.com/gtk-rs/gir) // from gir-files (https://github.com/gtk-rs/gir-files) // from gst-gir-files (https://gitlab.freedesktop.org/gstreamer/gir-files-rs.git) // DO NOT EDIT use crate::ControlPoint; use glib::{ prelude::*, signal::{connect_raw, SignalHandlerId}, translate::*, }; use std::{boxed::Box as Box_, mem::transmute}; glib::wrapper! { #[doc(alias = "GstTimedValueControlSource")] pub struct TimedValueControlSource(Object) @extends gst::ControlSource, gst::Object; match fn { type_ => || ffi::gst_timed_value_control_source_get_type(), } } impl TimedValueControlSource { pub const NONE: Option<&'static TimedValueControlSource> = None; } unsafe impl Send for TimedValueControlSource {} unsafe impl Sync for TimedValueControlSource {} mod sealed { pub trait Sealed {} impl> Sealed for T {} } pub trait TimedValueControlSourceExt: IsA + sealed::Sealed + 'static { //#[doc(alias = "gst_timed_value_control_source_find_control_point_iter")] //fn find_control_point_iter(&self, timestamp: impl Into>) -> /*Ignored*/Option { // unsafe { TODO: call ffi:gst_timed_value_control_source_find_control_point_iter() } //} //#[doc(alias = "gst_timed_value_control_source_get_all")] //#[doc(alias = "get_all")] //fn all(&self) -> /*Ignored*/Vec { // unsafe { TODO: call ffi:gst_timed_value_control_source_get_all() } //} #[doc(alias = "gst_timed_value_control_source_get_count")] #[doc(alias = "get_count")] fn count(&self) -> i32 { unsafe { ffi::gst_timed_value_control_source_get_count(self.as_ref().to_glib_none().0) } } #[doc(alias = "gst_timed_value_control_source_set")] fn set(&self, timestamp: gst::ClockTime, value: f64) -> bool { unsafe { from_glib(ffi::gst_timed_value_control_source_set( self.as_ref().to_glib_none().0, timestamp.into_glib(), value, )) } } //#[doc(alias = "gst_timed_value_control_source_set_from_list")] //fn set_from_list(&self, timedvalues: /*Ignored*/&[gst::TimedValue]) -> bool { // unsafe { TODO: call ffi:gst_timed_value_control_source_set_from_list() } //} #[doc(alias = "gst_timed_value_control_source_unset")] fn unset(&self, timestamp: gst::ClockTime) -> bool { unsafe { from_glib(ffi::gst_timed_value_control_source_unset( self.as_ref().to_glib_none().0, timestamp.into_glib(), )) } } #[doc(alias = "gst_timed_value_control_source_unset_all")] fn unset_all(&self) { unsafe { ffi::gst_timed_value_control_source_unset_all(self.as_ref().to_glib_none().0); } } #[doc(alias = "value-added")] fn connect_value_added( &self, f: F, ) -> SignalHandlerId { unsafe extern "C" fn value_added_trampoline< P: IsA, F: Fn(&P, &ControlPoint) + Send + Sync + 'static, >( this: *mut ffi::GstTimedValueControlSource, timed_value: *mut ffi::GstControlPoint, f: glib::ffi::gpointer, ) { let f: &F = &*(f as *const F); f( TimedValueControlSource::from_glib_borrow(this).unsafe_cast_ref(), &from_glib_borrow(timed_value), ) } unsafe { let f: Box_ = Box_::new(f); connect_raw( self.as_ptr() as *mut _, b"value-added\0".as_ptr() as *const _, Some(transmute::<_, unsafe extern "C" fn()>( value_added_trampoline:: as *const (), )), Box_::into_raw(f), ) } } #[doc(alias = "value-changed")] fn connect_value_changed( &self, f: F, ) -> SignalHandlerId { unsafe extern "C" fn value_changed_trampoline< P: IsA, F: Fn(&P, &ControlPoint) + Send + Sync + 'static, >( this: *mut ffi::GstTimedValueControlSource, timed_value: *mut ffi::GstControlPoint, f: glib::ffi::gpointer, ) { let f: &F = &*(f as *const F); f( TimedValueControlSource::from_glib_borrow(this).unsafe_cast_ref(), &from_glib_borrow(timed_value), ) } unsafe { let f: Box_ = Box_::new(f); connect_raw( self.as_ptr() as *mut _, b"value-changed\0".as_ptr() as *const _, Some(transmute::<_, unsafe extern "C" fn()>( value_changed_trampoline:: as *const (), )), Box_::into_raw(f), ) } } #[doc(alias = "value-removed")] fn connect_value_removed( &self, f: F, ) -> SignalHandlerId { unsafe extern "C" fn value_removed_trampoline< P: IsA, F: Fn(&P, &ControlPoint) + Send + Sync + 'static, >( this: *mut ffi::GstTimedValueControlSource, timed_value: *mut ffi::GstControlPoint, f: glib::ffi::gpointer, ) { let f: &F = &*(f as *const F); f( TimedValueControlSource::from_glib_borrow(this).unsafe_cast_ref(), &from_glib_borrow(timed_value), ) } unsafe { let f: Box_ = Box_::new(f); connect_raw( self.as_ptr() as *mut _, b"value-removed\0".as_ptr() as *const _, Some(transmute::<_, unsafe extern "C" fn()>( value_removed_trampoline:: as *const (), )), Box_::into_raw(f), ) } } } impl> TimedValueControlSourceExt for O {}