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

135 lines
4.3 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::Clip;
use crate::Container;
use crate::Extractable;
2021-09-19 08:07:33 +00:00
use crate::MetaContainer;
use crate::SourceClip;
2020-11-22 10:12:36 +00:00
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 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! {
#[doc(alias = "GESUriClip")]
2021-09-19 08:07:33 +00:00
pub struct UriClip(Object<ffi::GESUriClip, ffi::GESUriClipClass>) @extends SourceClip, Clip, Container, TimelineElement, @implements Extractable, MetaContainer;
match fn {
type_ => || ffi::ges_uri_clip_get_type(),
}
}
impl UriClip {
2021-11-16 14:02:58 +00:00
pub const NONE: Option<&'static UriClip> = None;
2020-12-08 13:00:17 +00:00
#[doc(alias = "ges_uri_clip_new")]
pub fn new(uri: &str) -> Result<UriClip, glib::BoolError> {
assert_initialized_main_thread!();
unsafe {
2020-11-22 10:12:36 +00:00
Option::<_>::from_glib_none(ffi::ges_uri_clip_new(uri.to_glib_none().0))
2020-12-17 22:34:53 +00:00
.ok_or_else(|| glib::bool_error!("Failed to create Uri clip from Uri"))
}
}
}
pub trait UriClipExt: 'static {
2020-12-08 13:00:17 +00:00
#[doc(alias = "ges_uri_clip_get_uri")]
#[doc(alias = "get_uri")]
fn uri(&self) -> glib::GString;
2020-12-08 13:00:17 +00:00
#[doc(alias = "ges_uri_clip_is_image")]
fn is_image(&self) -> bool;
2020-12-08 13:00:17 +00:00
#[doc(alias = "ges_uri_clip_is_muted")]
fn is_muted(&self) -> bool;
2020-12-08 13:00:17 +00:00
#[doc(alias = "ges_uri_clip_set_is_image")]
fn set_is_image(&self, is_image: bool);
2020-12-08 13:00:17 +00:00
#[doc(alias = "ges_uri_clip_set_mute")]
fn set_mute(&self, mute: bool);
#[doc(alias = "is-image")]
fn connect_is_image_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId;
#[doc(alias = "mute")]
fn connect_mute_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId;
}
impl<O: IsA<UriClip>> UriClipExt for O {
fn uri(&self) -> glib::GString {
2020-11-22 10:12:36 +00:00
unsafe { from_glib_none(ffi::ges_uri_clip_get_uri(self.as_ref().to_glib_none().0)) }
}
fn is_image(&self) -> bool {
2020-11-22 10:12:36 +00:00
unsafe { from_glib(ffi::ges_uri_clip_is_image(self.as_ref().to_glib_none().0)) }
}
fn is_muted(&self) -> bool {
2020-11-22 10:12:36 +00:00
unsafe { from_glib(ffi::ges_uri_clip_is_muted(self.as_ref().to_glib_none().0)) }
}
fn set_is_image(&self, is_image: bool) {
unsafe {
ffi::ges_uri_clip_set_is_image(self.as_ref().to_glib_none().0, is_image.into_glib());
}
}
fn set_mute(&self, mute: bool) {
unsafe {
ffi::ges_uri_clip_set_mute(self.as_ref().to_glib_none().0, mute.into_glib());
}
}
fn connect_is_image_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe extern "C" fn notify_is_image_trampoline<P: IsA<UriClip>, F: Fn(&P) + 'static>(
2020-11-22 10:12:36 +00:00
this: *mut ffi::GESUriClip,
_param_spec: glib::ffi::gpointer,
f: glib::ffi::gpointer,
) {
2019-06-18 10:10:46 +00:00
let f: &F = &*(f as *const F);
2021-06-21 21:07:45 +00:00
f(UriClip::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::is-image\0".as_ptr() as *const _,
2020-04-13 16:11:33 +00:00
Some(transmute::<_, unsafe extern "C" fn()>(
notify_is_image_trampoline::<Self, F> as *const (),
)),
Box_::into_raw(f),
)
}
}
fn connect_mute_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe extern "C" fn notify_mute_trampoline<P: IsA<UriClip>, F: Fn(&P) + 'static>(
2020-11-22 10:12:36 +00:00
this: *mut ffi::GESUriClip,
_param_spec: glib::ffi::gpointer,
f: glib::ffi::gpointer,
) {
2019-06-18 10:10:46 +00:00
let f: &F = &*(f as *const F);
2021-06-21 21:07:45 +00:00
f(UriClip::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::mute\0".as_ptr() as *const _,
2020-04-13 16:11:33 +00:00
Some(transmute::<_, unsafe extern "C" fn()>(
notify_mute_trampoline::<Self, F> as *const (),
)),
Box_::into_raw(f),
)
}
}
}