gstreamer-rs/gstreamer/src/auto/toc_setter.rs
Sebastian Dröge 342d5ab935 Add signal connectors for property notifications
Have to hide some properties again at a later time, which have actual
getter/setter functions already. We only need the notification signals
for those.

Depends on the GIR patch in https://github.com/gtk-rs/gir/pull/441
2017-08-18 17:43:55 +03:00

55 lines
1.1 KiB
Rust

// This file was generated by gir (cfd99ec+) from gir-files (???)
// DO NOT EDIT
use Element;
use Object;
use Toc;
use ffi;
use glib::object::IsA;
use glib::translate::*;
use glib_ffi;
use gobject_ffi;
use std::mem;
use std::ptr;
glib_wrapper! {
pub struct TocSetter(Object<ffi::GstTocSetter>): Element, Object;
match fn {
get_type => || ffi::gst_toc_setter_get_type(),
}
}
unsafe impl Send for TocSetter {}
unsafe impl Sync for TocSetter {}
pub trait TocSetterExt {
fn get_toc(&self) -> Option<Toc>;
fn reset(&self);
fn set_toc<'a, P: Into<Option<&'a Toc>>>(&self, toc: P);
}
impl<O: IsA<TocSetter>> TocSetterExt for O {
fn get_toc(&self) -> Option<Toc> {
unsafe {
from_glib_full(ffi::gst_toc_setter_get_toc(self.to_glib_none().0))
}
}
fn reset(&self) {
unsafe {
ffi::gst_toc_setter_reset(self.to_glib_none().0);
}
}
fn set_toc<'a, P: Into<Option<&'a Toc>>>(&self, toc: P) {
let toc = toc.into();
let toc = toc.to_glib_none();
unsafe {
ffi::gst_toc_setter_set_toc(self.to_glib_none().0, toc.0);
}
}
}