// 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 GLContext; use ffi; use glib; use glib::StaticType; use glib::Value; use glib::object::Downcast; use glib::object::IsA; use glib::signal::SignalHandlerId; use glib::signal::connect; use glib::translate::*; use glib_ffi; use gobject_ffi; use gst; use gst_ffi; use std::boxed::Box as Box_; use std::mem; use std::mem::transmute; use std::ptr; glib_wrapper! { pub struct GLBaseFilter(Object): [ gst::Object => gst_ffi::GstObject, ]; match fn { get_type => || ffi::gst_gl_base_filter_get_type(), } } unsafe impl Send for GLBaseFilter {} unsafe impl Sync for GLBaseFilter {} pub trait GLBaseFilterExt { fn get_property_context(&self) -> Option; fn connect_property_context_notify(&self, f: F) -> SignalHandlerId; } impl + IsA> GLBaseFilterExt for O { fn get_property_context(&self) -> Option { unsafe { let mut value = Value::from_type(::static_type()); gobject_ffi::g_object_get_property(self.to_glib_none().0, "context".to_glib_none().0, value.to_glib_none_mut().0); value.get() } } fn connect_property_context_notify(&self, f: F) -> SignalHandlerId { unsafe { let f: Box_> = Box_::new(Box_::new(f)); connect(self.to_glib_none().0, "notify::context", transmute(notify_context_trampoline:: as usize), Box_::into_raw(f) as *mut _) } } } unsafe extern "C" fn notify_context_trampoline

(this: *mut ffi::GstGLBaseFilter, _param_spec: glib_ffi::gpointer, f: glib_ffi::gpointer) where P: IsA { let f: &&(Fn(&P) + Send + Sync + 'static) = transmute(f); f(&GLBaseFilter::from_glib_borrow(this).downcast_unchecked()) }