gstreamer-rs/gstreamer-controller/src/auto/timed_value_control_source.rs

186 lines
6.3 KiB
Rust
Raw Normal View History

2020-06-09 01:06:49 +00:00
// 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)
2020-06-09 01:06:49 +00:00
// DO NOT EDIT
2020-11-21 18:48:08 +00:00
use crate::ControlPoint;
use glib::{
prelude::*,
signal::{connect_raw, SignalHandlerId},
translate::*,
};
use std::boxed::Box as Box_;
2020-06-09 01:06:49 +00:00
2020-12-17 22:34:53 +00:00
glib::wrapper! {
#[doc(alias = "GstTimedValueControlSource")]
2020-11-21 18:48:08 +00:00
pub struct TimedValueControlSource(Object<ffi::GstTimedValueControlSource, ffi::GstTimedValueControlSourceClass>) @extends gst::ControlSource, gst::Object;
2020-06-09 01:06:49 +00:00
match fn {
type_ => || ffi::gst_timed_value_control_source_get_type(),
2020-06-09 01:06:49 +00:00
}
}
2021-11-03 17:28:46 +00:00
impl TimedValueControlSource {
pub const NONE: Option<&'static TimedValueControlSource> = None;
}
2020-06-09 01:06:49 +00:00
2021-11-16 14:02:58 +00:00
unsafe impl Send for TimedValueControlSource {}
unsafe impl Sync for TimedValueControlSource {}
mod sealed {
pub trait Sealed {}
impl<T: super::IsA<super::TimedValueControlSource>> Sealed for T {}
2020-06-09 01:06:49 +00:00
}
pub trait TimedValueControlSourceExt:
IsA<TimedValueControlSource> + sealed::Sealed + 'static
{
//#[doc(alias = "gst_timed_value_control_source_find_control_point_iter")]
//fn find_control_point_iter(&self, timestamp: impl Into<Option<gst::ClockTime>>) -> /*Ignored*/Option<glib::SequenceIter> {
2020-11-21 18:48:08 +00:00
// unsafe { TODO: call ffi:gst_timed_value_control_source_find_control_point_iter() }
2020-06-09 01:06:49 +00:00
//}
//#[doc(alias = "gst_timed_value_control_source_get_all")]
//#[doc(alias = "get_all")]
2021-04-11 19:38:18 +00:00
//fn all(&self) -> /*Ignored*/Vec<gst::TimedValue> {
2020-11-21 18:48:08 +00:00
// unsafe { TODO: call ffi:gst_timed_value_control_source_get_all() }
2020-06-09 01:06:49 +00:00
//}
#[doc(alias = "gst_timed_value_control_source_get_count")]
#[doc(alias = "get_count")]
2021-04-11 19:38:18 +00:00
fn count(&self) -> i32 {
2020-11-21 18:48:08 +00:00
unsafe { ffi::gst_timed_value_control_source_get_count(self.as_ref().to_glib_none().0) }
2020-06-09 01:06:49 +00:00
}
#[doc(alias = "gst_timed_value_control_source_set")]
2020-06-09 01:06:49 +00:00
fn set(&self, timestamp: gst::ClockTime, value: f64) -> bool {
unsafe {
2020-11-21 18:48:08 +00:00
from_glib(ffi::gst_timed_value_control_source_set(
2020-06-09 01:06:49 +00:00
self.as_ref().to_glib_none().0,
timestamp.into_glib(),
2020-06-09 01:06:49 +00:00
value,
))
}
}
//#[doc(alias = "gst_timed_value_control_source_set_from_list")]
//fn set_from_list(&self, timedvalues: /*Ignored*/&[gst::TimedValue]) -> bool {
2020-11-21 18:48:08 +00:00
// unsafe { TODO: call ffi:gst_timed_value_control_source_set_from_list() }
2020-06-09 01:06:49 +00:00
//}
#[doc(alias = "gst_timed_value_control_source_unset")]
2020-06-09 01:06:49 +00:00
fn unset(&self, timestamp: gst::ClockTime) -> bool {
unsafe {
2020-11-21 18:48:08 +00:00
from_glib(ffi::gst_timed_value_control_source_unset(
2020-06-09 01:06:49 +00:00
self.as_ref().to_glib_none().0,
timestamp.into_glib(),
2020-06-09 01:06:49 +00:00
))
}
}
#[doc(alias = "gst_timed_value_control_source_unset_all")]
2020-06-09 01:06:49 +00:00
fn unset_all(&self) {
unsafe {
2020-11-21 18:48:08 +00:00
ffi::gst_timed_value_control_source_unset_all(self.as_ref().to_glib_none().0);
2020-06-09 01:06:49 +00:00
}
}
#[doc(alias = "value-added")]
2020-06-09 01:06:49 +00:00
fn connect_value_added<F: Fn(&Self, &ControlPoint) + Send + Sync + 'static>(
&self,
f: F,
) -> SignalHandlerId {
unsafe extern "C" fn value_added_trampoline<
P: IsA<TimedValueControlSource>,
2020-06-09 01:06:49 +00:00
F: Fn(&P, &ControlPoint) + Send + Sync + 'static,
>(
2020-11-21 18:48:08 +00:00
this: *mut ffi::GstTimedValueControlSource,
timed_value: *mut ffi::GstControlPoint,
f: glib::ffi::gpointer,
) {
2020-06-09 01:06:49 +00:00
let f: &F = &*(f as *const F);
f(
2021-06-21 21:07:45 +00:00
TimedValueControlSource::from_glib_borrow(this).unsafe_cast_ref(),
2020-06-09 01:06:49 +00:00
&from_glib_borrow(timed_value),
)
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(
self.as_ptr() as *mut _,
b"value-added\0".as_ptr() as *const _,
Some(std::mem::transmute::<_, unsafe extern "C" fn()>(
2020-06-09 01:06:49 +00:00
value_added_trampoline::<Self, F> as *const (),
)),
Box_::into_raw(f),
)
}
}
#[doc(alias = "value-changed")]
2020-06-09 01:06:49 +00:00
fn connect_value_changed<F: Fn(&Self, &ControlPoint) + Send + Sync + 'static>(
&self,
f: F,
) -> SignalHandlerId {
unsafe extern "C" fn value_changed_trampoline<
P: IsA<TimedValueControlSource>,
2020-06-09 01:06:49 +00:00
F: Fn(&P, &ControlPoint) + Send + Sync + 'static,
>(
2020-11-21 18:48:08 +00:00
this: *mut ffi::GstTimedValueControlSource,
timed_value: *mut ffi::GstControlPoint,
f: glib::ffi::gpointer,
) {
2020-06-09 01:06:49 +00:00
let f: &F = &*(f as *const F);
f(
2021-06-21 21:07:45 +00:00
TimedValueControlSource::from_glib_borrow(this).unsafe_cast_ref(),
2020-06-09 01:06:49 +00:00
&from_glib_borrow(timed_value),
)
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(
self.as_ptr() as *mut _,
b"value-changed\0".as_ptr() as *const _,
Some(std::mem::transmute::<_, unsafe extern "C" fn()>(
2020-06-09 01:06:49 +00:00
value_changed_trampoline::<Self, F> as *const (),
)),
Box_::into_raw(f),
)
}
}
#[doc(alias = "value-removed")]
2020-06-09 01:06:49 +00:00
fn connect_value_removed<F: Fn(&Self, &ControlPoint) + Send + Sync + 'static>(
&self,
f: F,
) -> SignalHandlerId {
unsafe extern "C" fn value_removed_trampoline<
P: IsA<TimedValueControlSource>,
2020-06-09 01:06:49 +00:00
F: Fn(&P, &ControlPoint) + Send + Sync + 'static,
>(
2020-11-21 18:48:08 +00:00
this: *mut ffi::GstTimedValueControlSource,
timed_value: *mut ffi::GstControlPoint,
f: glib::ffi::gpointer,
) {
2020-06-09 01:06:49 +00:00
let f: &F = &*(f as *const F);
f(
2021-06-21 21:07:45 +00:00
TimedValueControlSource::from_glib_borrow(this).unsafe_cast_ref(),
2020-06-09 01:06:49 +00:00
&from_glib_borrow(timed_value),
)
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(
self.as_ptr() as *mut _,
b"value-removed\0".as_ptr() as *const _,
Some(std::mem::transmute::<_, unsafe extern "C" fn()>(
2020-06-09 01:06:49 +00:00
value_removed_trampoline::<Self, F> as *const (),
)),
Box_::into_raw(f),
)
}
}
}
impl<O: IsA<TimedValueControlSource>> TimedValueControlSourceExt for O {}