gstreamer-rs/gstreamer-controller/src/auto/lfo_control_source.rs
2020-11-07 12:17:25 +02:00

357 lines
11 KiB
Rust

// This file was generated by gir (https://github.com/gtk-rs/gir)
// from gir-files (https://github.com/gtk-rs/gir-files)
// DO NOT EDIT
use glib::object::Cast;
use glib::object::IsA;
use glib::signal::connect_raw;
use glib::signal::SignalHandlerId;
use glib::translate::*;
use glib::StaticType;
use glib::Value;
use glib_sys;
use gobject_sys;
use gst;
use gst_controller_sys;
use std::boxed::Box as Box_;
use std::mem::transmute;
use LFOWaveform;
glib_wrapper! {
pub struct LFOControlSource(Object<gst_controller_sys::GstLFOControlSource, gst_controller_sys::GstLFOControlSourceClass>) @extends gst::ControlSource, gst::Object;
match fn {
get_type => || gst_controller_sys::gst_lfo_control_source_get_type(),
}
}
impl LFOControlSource {
pub fn new() -> LFOControlSource {
assert_initialized_main_thread!();
unsafe {
gst::ControlSource::from_glib_full(gst_controller_sys::gst_lfo_control_source_new())
.unsafe_cast()
}
}
}
impl Default for LFOControlSource {
fn default() -> Self {
Self::new()
}
}
unsafe impl Send for LFOControlSource {}
unsafe impl Sync for LFOControlSource {}
pub const NONE_LFO_CONTROL_SOURCE: Option<&LFOControlSource> = None;
pub trait LFOControlSourceExt: 'static {
fn get_property_amplitude(&self) -> f64;
fn set_property_amplitude(&self, amplitude: f64);
fn get_property_frequency(&self) -> f64;
fn set_property_frequency(&self, frequency: f64);
fn get_property_offset(&self) -> f64;
fn set_property_offset(&self, offset: f64);
fn get_property_timeshift(&self) -> u64;
fn set_property_timeshift(&self, timeshift: u64);
fn get_property_waveform(&self) -> LFOWaveform;
fn set_property_waveform(&self, waveform: LFOWaveform);
fn connect_property_amplitude_notify<F: Fn(&Self) + Send + Sync + 'static>(
&self,
f: F,
) -> SignalHandlerId;
fn connect_property_frequency_notify<F: Fn(&Self) + Send + Sync + 'static>(
&self,
f: F,
) -> SignalHandlerId;
fn connect_property_offset_notify<F: Fn(&Self) + Send + Sync + 'static>(
&self,
f: F,
) -> SignalHandlerId;
fn connect_property_timeshift_notify<F: Fn(&Self) + Send + Sync + 'static>(
&self,
f: F,
) -> SignalHandlerId;
fn connect_property_waveform_notify<F: Fn(&Self) + Send + Sync + 'static>(
&self,
f: F,
) -> SignalHandlerId;
}
impl<O: IsA<LFOControlSource>> LFOControlSourceExt for O {
fn get_property_amplitude(&self) -> f64 {
unsafe {
let mut value = Value::from_type(<f64 as StaticType>::static_type());
gobject_sys::g_object_get_property(
self.to_glib_none().0 as *mut gobject_sys::GObject,
b"amplitude\0".as_ptr() as *const _,
value.to_glib_none_mut().0,
);
value
.get()
.expect("Return Value for property `amplitude` getter")
.unwrap()
}
}
fn set_property_amplitude(&self, amplitude: f64) {
unsafe {
gobject_sys::g_object_set_property(
self.to_glib_none().0 as *mut gobject_sys::GObject,
b"amplitude\0".as_ptr() as *const _,
Value::from(&amplitude).to_glib_none().0,
);
}
}
fn get_property_frequency(&self) -> f64 {
unsafe {
let mut value = Value::from_type(<f64 as StaticType>::static_type());
gobject_sys::g_object_get_property(
self.to_glib_none().0 as *mut gobject_sys::GObject,
b"frequency\0".as_ptr() as *const _,
value.to_glib_none_mut().0,
);
value
.get()
.expect("Return Value for property `frequency` getter")
.unwrap()
}
}
fn set_property_frequency(&self, frequency: f64) {
unsafe {
gobject_sys::g_object_set_property(
self.to_glib_none().0 as *mut gobject_sys::GObject,
b"frequency\0".as_ptr() as *const _,
Value::from(&frequency).to_glib_none().0,
);
}
}
fn get_property_offset(&self) -> f64 {
unsafe {
let mut value = Value::from_type(<f64 as StaticType>::static_type());
gobject_sys::g_object_get_property(
self.to_glib_none().0 as *mut gobject_sys::GObject,
b"offset\0".as_ptr() as *const _,
value.to_glib_none_mut().0,
);
value
.get()
.expect("Return Value for property `offset` getter")
.unwrap()
}
}
fn set_property_offset(&self, offset: f64) {
unsafe {
gobject_sys::g_object_set_property(
self.to_glib_none().0 as *mut gobject_sys::GObject,
b"offset\0".as_ptr() as *const _,
Value::from(&offset).to_glib_none().0,
);
}
}
fn get_property_timeshift(&self) -> u64 {
unsafe {
let mut value = Value::from_type(<u64 as StaticType>::static_type());
gobject_sys::g_object_get_property(
self.to_glib_none().0 as *mut gobject_sys::GObject,
b"timeshift\0".as_ptr() as *const _,
value.to_glib_none_mut().0,
);
value
.get()
.expect("Return Value for property `timeshift` getter")
.unwrap()
}
}
fn set_property_timeshift(&self, timeshift: u64) {
unsafe {
gobject_sys::g_object_set_property(
self.to_glib_none().0 as *mut gobject_sys::GObject,
b"timeshift\0".as_ptr() as *const _,
Value::from(&timeshift).to_glib_none().0,
);
}
}
fn get_property_waveform(&self) -> LFOWaveform {
unsafe {
let mut value = Value::from_type(<LFOWaveform as StaticType>::static_type());
gobject_sys::g_object_get_property(
self.to_glib_none().0 as *mut gobject_sys::GObject,
b"waveform\0".as_ptr() as *const _,
value.to_glib_none_mut().0,
);
value
.get()
.expect("Return Value for property `waveform` getter")
.unwrap()
}
}
fn set_property_waveform(&self, waveform: LFOWaveform) {
unsafe {
gobject_sys::g_object_set_property(
self.to_glib_none().0 as *mut gobject_sys::GObject,
b"waveform\0".as_ptr() as *const _,
Value::from(&waveform).to_glib_none().0,
);
}
}
fn connect_property_amplitude_notify<F: Fn(&Self) + Send + Sync + 'static>(
&self,
f: F,
) -> SignalHandlerId {
unsafe extern "C" fn notify_amplitude_trampoline<P, F: Fn(&P) + Send + Sync + 'static>(
this: *mut gst_controller_sys::GstLFOControlSource,
_param_spec: glib_sys::gpointer,
f: glib_sys::gpointer,
) where
P: IsA<LFOControlSource>,
{
let f: &F = &*(f as *const F);
f(&LFOControlSource::from_glib_borrow(this).unsafe_cast_ref())
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(
self.as_ptr() as *mut _,
b"notify::amplitude\0".as_ptr() as *const _,
Some(transmute::<_, unsafe extern "C" fn()>(
notify_amplitude_trampoline::<Self, F> as *const (),
)),
Box_::into_raw(f),
)
}
}
fn connect_property_frequency_notify<F: Fn(&Self) + Send + Sync + 'static>(
&self,
f: F,
) -> SignalHandlerId {
unsafe extern "C" fn notify_frequency_trampoline<P, F: Fn(&P) + Send + Sync + 'static>(
this: *mut gst_controller_sys::GstLFOControlSource,
_param_spec: glib_sys::gpointer,
f: glib_sys::gpointer,
) where
P: IsA<LFOControlSource>,
{
let f: &F = &*(f as *const F);
f(&LFOControlSource::from_glib_borrow(this).unsafe_cast_ref())
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(
self.as_ptr() as *mut _,
b"notify::frequency\0".as_ptr() as *const _,
Some(transmute::<_, unsafe extern "C" fn()>(
notify_frequency_trampoline::<Self, F> as *const (),
)),
Box_::into_raw(f),
)
}
}
fn connect_property_offset_notify<F: Fn(&Self) + Send + Sync + 'static>(
&self,
f: F,
) -> SignalHandlerId {
unsafe extern "C" fn notify_offset_trampoline<P, F: Fn(&P) + Send + Sync + 'static>(
this: *mut gst_controller_sys::GstLFOControlSource,
_param_spec: glib_sys::gpointer,
f: glib_sys::gpointer,
) where
P: IsA<LFOControlSource>,
{
let f: &F = &*(f as *const F);
f(&LFOControlSource::from_glib_borrow(this).unsafe_cast_ref())
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(
self.as_ptr() as *mut _,
b"notify::offset\0".as_ptr() as *const _,
Some(transmute::<_, unsafe extern "C" fn()>(
notify_offset_trampoline::<Self, F> as *const (),
)),
Box_::into_raw(f),
)
}
}
fn connect_property_timeshift_notify<F: Fn(&Self) + Send + Sync + 'static>(
&self,
f: F,
) -> SignalHandlerId {
unsafe extern "C" fn notify_timeshift_trampoline<P, F: Fn(&P) + Send + Sync + 'static>(
this: *mut gst_controller_sys::GstLFOControlSource,
_param_spec: glib_sys::gpointer,
f: glib_sys::gpointer,
) where
P: IsA<LFOControlSource>,
{
let f: &F = &*(f as *const F);
f(&LFOControlSource::from_glib_borrow(this).unsafe_cast_ref())
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(
self.as_ptr() as *mut _,
b"notify::timeshift\0".as_ptr() as *const _,
Some(transmute::<_, unsafe extern "C" fn()>(
notify_timeshift_trampoline::<Self, F> as *const (),
)),
Box_::into_raw(f),
)
}
}
fn connect_property_waveform_notify<F: Fn(&Self) + Send + Sync + 'static>(
&self,
f: F,
) -> SignalHandlerId {
unsafe extern "C" fn notify_waveform_trampoline<P, F: Fn(&P) + Send + Sync + 'static>(
this: *mut gst_controller_sys::GstLFOControlSource,
_param_spec: glib_sys::gpointer,
f: glib_sys::gpointer,
) where
P: IsA<LFOControlSource>,
{
let f: &F = &*(f as *const F);
f(&LFOControlSource::from_glib_borrow(this).unsafe_cast_ref())
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(
self.as_ptr() as *mut _,
b"notify::waveform\0".as_ptr() as *const _,
Some(transmute::<_, unsafe extern "C" fn()>(
notify_waveform_trampoline::<Self, F> as *const (),
)),
Box_::into_raw(f),
)
}
}
}