// 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 Asset; use Error; use UriSourceAsset; use ges_sys; use glib::Value; use glib::object::Cast; use glib::object::IsA; use glib::signal::SignalHandlerId; use glib::signal::connect_raw; use glib::translate::*; use glib_sys; use gobject_sys; use gst; use gst_pbutils; use std::boxed::Box as Box_; use std::mem::transmute; use std::ptr; glib_wrapper! { pub struct UriClipAsset(Object) @extends Asset; match fn { get_type => || ges_sys::ges_uri_clip_asset_get_type(), } } impl UriClipAsset { //pub fn finish(res: /*Ignored*/&gio::AsyncResult) -> Result { // unsafe { TODO: call ges_sys:ges_uri_clip_asset_finish() } //} //pub fn new, Q: FnOnce(Result<(), Error>) + 'static>(uri: &str, cancellable: Option<&P>, callback: Q) { // unsafe { TODO: call ges_sys:ges_uri_clip_asset_new() } //} pub fn request_sync(uri: &str) -> Result { assert_initialized_main_thread!(); unsafe { let mut error = ptr::null_mut(); let ret = ges_sys::ges_uri_clip_asset_request_sync(uri.to_glib_none().0, &mut error); if error.is_null() { Ok(from_glib_full(ret)) } else { Err(from_glib_full(error)) } } } } pub const NONE_URI_CLIP_ASSET: Option<&UriClipAsset> = None; pub trait UriClipAssetExt: 'static { fn get_duration(&self) -> gst::ClockTime; fn get_info(&self) -> Option; fn get_stream_assets(&self) -> Vec; fn is_image(&self) -> bool; fn set_property_duration(&self, duration: u64); fn connect_property_duration_notify(&self, f: F) -> SignalHandlerId; } impl> UriClipAssetExt for O { fn get_duration(&self) -> gst::ClockTime { unsafe { from_glib(ges_sys::ges_uri_clip_asset_get_duration(self.as_ref().to_glib_none().0)) } } fn get_info(&self) -> Option { unsafe { from_glib_none(ges_sys::ges_uri_clip_asset_get_info(const_override(self.as_ref().to_glib_none().0))) } } fn get_stream_assets(&self) -> Vec { unsafe { FromGlibPtrContainer::from_glib_none(ges_sys::ges_uri_clip_asset_get_stream_assets(self.as_ref().to_glib_none().0)) } } fn is_image(&self) -> bool { unsafe { from_glib(ges_sys::ges_uri_clip_asset_is_image(self.as_ref().to_glib_none().0)) } } fn set_property_duration(&self, duration: u64) { unsafe { gobject_sys::g_object_set_property(self.to_glib_none().0 as *mut gobject_sys::GObject, b"duration\0".as_ptr() as *const _, Value::from(&duration).to_glib_none().0); } } fn connect_property_duration_notify(&self, f: F) -> SignalHandlerId { unsafe { let f: Box_ = Box_::new(f); connect_raw(self.as_ptr() as *mut _, b"notify::duration\0".as_ptr() as *const _, Some(transmute(notify_duration_trampoline:: as usize)), Box_::into_raw(f)) } } } unsafe extern "C" fn notify_duration_trampoline(this: *mut ges_sys::GESUriClipAsset, _param_spec: glib_sys::gpointer, f: glib_sys::gpointer) where P: IsA { let f: &F = &*(f as *const F); f(&UriClipAsset::from_glib_borrow(this).unsafe_cast()) }