gstreamer-rs/gstreamer-editing-services/src/auto/group.rs

320 lines
10 KiB
Rust
Raw Normal View History

// 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
2020-11-22 10:12:36 +00:00
use crate::Container;
use crate::Extractable;
use crate::TimelineElement;
2019-01-16 11:32:39 +00:00
use glib::object::Cast;
use glib::object::IsA;
use glib::signal::connect_raw;
use glib::signal::SignalHandlerId;
use glib::translate::*;
use glib::StaticType;
2021-04-19 16:24:43 +00:00
use glib::ToValue;
use std::boxed::Box as Box_;
2020-04-13 16:11:33 +00:00
use std::mem::transmute;
2020-12-17 22:34:53 +00:00
glib::wrapper! {
2020-11-22 10:12:36 +00:00
pub struct Group(Object<ffi::GESGroup, ffi::GESGroupClass>) @extends Container, TimelineElement, @implements Extractable;
match fn {
type_ => || ffi::ges_group_get_type(),
}
}
impl Group {
2020-12-08 13:00:17 +00:00
#[doc(alias = "ges_group_new")]
pub fn new() -> Group {
assert_initialized_main_thread!();
2020-11-22 10:12:36 +00:00
unsafe { from_glib_none(ffi::ges_group_new()) }
}
}
impl Default for Group {
fn default() -> Self {
Self::new()
}
}
2019-01-16 11:32:39 +00:00
pub const NONE_GROUP: Option<&Group> = None;
pub trait GroupExt: 'static {
2021-04-11 19:38:18 +00:00
fn duration(&self) -> u64;
2021-04-11 19:38:18 +00:00
fn set_duration(&self, duration: u64);
#[doc(alias = "in-point")]
2021-04-11 19:38:18 +00:00
fn in_point(&self) -> u64;
#[doc(alias = "in-point")]
2021-04-11 19:38:18 +00:00
fn set_in_point(&self, in_point: u64);
#[doc(alias = "max-duration")]
2021-04-11 19:38:18 +00:00
fn max_duration(&self) -> u64;
#[doc(alias = "max-duration")]
2021-04-11 19:38:18 +00:00
fn set_max_duration(&self, max_duration: u64);
2021-04-11 19:38:18 +00:00
fn priority(&self) -> u32;
2021-04-11 19:38:18 +00:00
fn set_priority(&self, priority: u32);
2021-04-11 19:38:18 +00:00
fn start(&self) -> u64;
2021-04-11 19:38:18 +00:00
fn set_start(&self, start: u64);
#[doc(alias = "duration")]
fn connect_duration_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId;
#[doc(alias = "in-point")]
fn connect_in_point_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId;
#[doc(alias = "max-duration")]
fn connect_max_duration_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId;
#[doc(alias = "priority")]
fn connect_priority_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId;
#[doc(alias = "start")]
fn connect_start_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId;
}
impl<O: IsA<Group>> GroupExt for O {
2021-04-11 19:38:18 +00:00
fn duration(&self) -> u64 {
unsafe {
2020-11-27 13:37:24 +00:00
let mut value = glib::Value::from_type(<u64 as StaticType>::static_type());
2020-11-22 10:12:36 +00:00
glib::gobject_ffi::g_object_get_property(
self.to_glib_none().0 as *mut glib::gobject_ffi::GObject,
b"duration\0".as_ptr() as *const _,
value.to_glib_none_mut().0,
);
2019-08-10 17:32:57 +00:00
value
.get()
.expect("Return Value for property `duration` getter")
}
}
2021-04-11 19:38:18 +00:00
fn set_duration(&self, duration: u64) {
unsafe {
2020-11-22 10:12:36 +00:00
glib::gobject_ffi::g_object_set_property(
self.to_glib_none().0 as *mut glib::gobject_ffi::GObject,
b"duration\0".as_ptr() as *const _,
2021-04-19 16:24:43 +00:00
duration.to_value().to_glib_none().0,
);
}
}
2021-04-11 19:38:18 +00:00
fn in_point(&self) -> u64 {
unsafe {
2020-11-27 13:37:24 +00:00
let mut value = glib::Value::from_type(<u64 as StaticType>::static_type());
2020-11-22 10:12:36 +00:00
glib::gobject_ffi::g_object_get_property(
self.to_glib_none().0 as *mut glib::gobject_ffi::GObject,
b"in-point\0".as_ptr() as *const _,
value.to_glib_none_mut().0,
);
2019-08-10 17:32:57 +00:00
value
.get()
.expect("Return Value for property `in-point` getter")
}
}
2021-04-11 19:38:18 +00:00
fn set_in_point(&self, in_point: u64) {
unsafe {
2020-11-22 10:12:36 +00:00
glib::gobject_ffi::g_object_set_property(
self.to_glib_none().0 as *mut glib::gobject_ffi::GObject,
b"in-point\0".as_ptr() as *const _,
2021-04-19 16:24:43 +00:00
in_point.to_value().to_glib_none().0,
);
}
}
2021-04-11 19:38:18 +00:00
fn max_duration(&self) -> u64 {
unsafe {
2020-11-27 13:37:24 +00:00
let mut value = glib::Value::from_type(<u64 as StaticType>::static_type());
2020-11-22 10:12:36 +00:00
glib::gobject_ffi::g_object_get_property(
self.to_glib_none().0 as *mut glib::gobject_ffi::GObject,
b"max-duration\0".as_ptr() as *const _,
value.to_glib_none_mut().0,
);
2019-08-10 17:32:57 +00:00
value
.get()
.expect("Return Value for property `max-duration` getter")
}
}
2021-04-11 19:38:18 +00:00
fn set_max_duration(&self, max_duration: u64) {
unsafe {
2020-11-22 10:12:36 +00:00
glib::gobject_ffi::g_object_set_property(
self.to_glib_none().0 as *mut glib::gobject_ffi::GObject,
b"max-duration\0".as_ptr() as *const _,
2021-04-19 16:24:43 +00:00
max_duration.to_value().to_glib_none().0,
);
}
}
2021-04-11 19:38:18 +00:00
fn priority(&self) -> u32 {
unsafe {
2020-11-27 13:37:24 +00:00
let mut value = glib::Value::from_type(<u32 as StaticType>::static_type());
2020-11-22 10:12:36 +00:00
glib::gobject_ffi::g_object_get_property(
self.to_glib_none().0 as *mut glib::gobject_ffi::GObject,
b"priority\0".as_ptr() as *const _,
value.to_glib_none_mut().0,
);
2019-08-10 17:32:57 +00:00
value
.get()
.expect("Return Value for property `priority` getter")
}
}
2021-04-11 19:38:18 +00:00
fn set_priority(&self, priority: u32) {
unsafe {
2020-11-22 10:12:36 +00:00
glib::gobject_ffi::g_object_set_property(
self.to_glib_none().0 as *mut glib::gobject_ffi::GObject,
b"priority\0".as_ptr() as *const _,
2021-04-19 16:24:43 +00:00
priority.to_value().to_glib_none().0,
);
}
}
2021-04-11 19:38:18 +00:00
fn start(&self) -> u64 {
unsafe {
2020-11-27 13:37:24 +00:00
let mut value = glib::Value::from_type(<u64 as StaticType>::static_type());
2020-11-22 10:12:36 +00:00
glib::gobject_ffi::g_object_get_property(
self.to_glib_none().0 as *mut glib::gobject_ffi::GObject,
b"start\0".as_ptr() as *const _,
value.to_glib_none_mut().0,
);
2019-08-10 17:32:57 +00:00
value
.get()
.expect("Return Value for property `start` getter")
}
}
2021-04-11 19:38:18 +00:00
fn set_start(&self, start: u64) {
unsafe {
2020-11-22 10:12:36 +00:00
glib::gobject_ffi::g_object_set_property(
self.to_glib_none().0 as *mut glib::gobject_ffi::GObject,
b"start\0".as_ptr() as *const _,
2021-04-19 16:24:43 +00:00
start.to_value().to_glib_none().0,
);
}
}
#[doc(alias = "duration")]
fn connect_duration_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe extern "C" fn notify_duration_trampoline<P: IsA<Group>, F: Fn(&P) + 'static>(
2020-11-22 10:12:36 +00:00
this: *mut ffi::GESGroup,
_param_spec: glib::ffi::gpointer,
f: glib::ffi::gpointer,
) {
2019-06-18 10:10:46 +00:00
let f: &F = &*(f as *const F);
f(&Group::from_glib_borrow(this).unsafe_cast_ref())
2019-06-18 10:10:46 +00:00
}
unsafe {
2019-01-29 13:53:44 +00:00
let f: Box_<F> = Box_::new(f);
connect_raw(
self.as_ptr() as *mut _,
b"notify::duration\0".as_ptr() as *const _,
2020-04-13 16:11:33 +00:00
Some(transmute::<_, unsafe extern "C" fn()>(
notify_duration_trampoline::<Self, F> as *const (),
)),
Box_::into_raw(f),
)
}
}
#[doc(alias = "in-point")]
fn connect_in_point_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe extern "C" fn notify_in_point_trampoline<P: IsA<Group>, F: Fn(&P) + 'static>(
2020-11-22 10:12:36 +00:00
this: *mut ffi::GESGroup,
_param_spec: glib::ffi::gpointer,
f: glib::ffi::gpointer,
) {
2019-06-18 10:10:46 +00:00
let f: &F = &*(f as *const F);
f(&Group::from_glib_borrow(this).unsafe_cast_ref())
2019-06-18 10:10:46 +00:00
}
unsafe {
2019-01-29 13:53:44 +00:00
let f: Box_<F> = Box_::new(f);
connect_raw(
self.as_ptr() as *mut _,
b"notify::in-point\0".as_ptr() as *const _,
2020-04-13 16:11:33 +00:00
Some(transmute::<_, unsafe extern "C" fn()>(
notify_in_point_trampoline::<Self, F> as *const (),
)),
Box_::into_raw(f),
)
}
}
#[doc(alias = "max-duration")]
fn connect_max_duration_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe extern "C" fn notify_max_duration_trampoline<P: IsA<Group>, F: Fn(&P) + 'static>(
2020-11-22 10:12:36 +00:00
this: *mut ffi::GESGroup,
_param_spec: glib::ffi::gpointer,
f: glib::ffi::gpointer,
) {
2019-06-18 10:10:46 +00:00
let f: &F = &*(f as *const F);
f(&Group::from_glib_borrow(this).unsafe_cast_ref())
2019-06-18 10:10:46 +00:00
}
unsafe {
2019-01-29 13:53:44 +00:00
let f: Box_<F> = Box_::new(f);
connect_raw(
self.as_ptr() as *mut _,
b"notify::max-duration\0".as_ptr() as *const _,
2020-04-13 16:11:33 +00:00
Some(transmute::<_, unsafe extern "C" fn()>(
notify_max_duration_trampoline::<Self, F> as *const (),
)),
Box_::into_raw(f),
)
}
}
#[doc(alias = "priority")]
fn connect_priority_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe extern "C" fn notify_priority_trampoline<P: IsA<Group>, F: Fn(&P) + 'static>(
2020-11-22 10:12:36 +00:00
this: *mut ffi::GESGroup,
_param_spec: glib::ffi::gpointer,
f: glib::ffi::gpointer,
) {
2019-06-18 10:10:46 +00:00
let f: &F = &*(f as *const F);
f(&Group::from_glib_borrow(this).unsafe_cast_ref())
2019-06-18 10:10:46 +00:00
}
unsafe {
2019-01-29 13:53:44 +00:00
let f: Box_<F> = Box_::new(f);
connect_raw(
self.as_ptr() as *mut _,
b"notify::priority\0".as_ptr() as *const _,
2020-04-13 16:11:33 +00:00
Some(transmute::<_, unsafe extern "C" fn()>(
notify_priority_trampoline::<Self, F> as *const (),
)),
Box_::into_raw(f),
)
}
}
#[doc(alias = "start")]
fn connect_start_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe extern "C" fn notify_start_trampoline<P: IsA<Group>, F: Fn(&P) + 'static>(
2020-11-22 10:12:36 +00:00
this: *mut ffi::GESGroup,
_param_spec: glib::ffi::gpointer,
f: glib::ffi::gpointer,
) {
2019-06-18 10:10:46 +00:00
let f: &F = &*(f as *const F);
f(&Group::from_glib_borrow(this).unsafe_cast_ref())
2019-06-18 10:10:46 +00:00
}
unsafe {
2019-01-29 13:53:44 +00:00
let f: Box_<F> = Box_::new(f);
connect_raw(
self.as_ptr() as *mut _,
b"notify::start\0".as_ptr() as *const _,
2020-04-13 16:11:33 +00:00
Some(transmute::<_, unsafe extern "C" fn()>(
notify_start_trampoline::<Self, F> as *const (),
)),
Box_::into_raw(f),
)
}
}
}