gstreamer-rs/gstreamer-video/src/auto/video_overlay.rs
2019-06-18 13:12:00 +03:00

106 lines
3 KiB
Rust

// 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 glib;
use glib::object::IsA;
use glib::translate::*;
use gst_video_sys;
glib_wrapper! {
pub struct VideoOverlay(Interface<gst_video_sys::GstVideoOverlay>);
match fn {
get_type => || gst_video_sys::gst_video_overlay_get_type(),
}
}
impl VideoOverlay {
//#[cfg(any(feature = "v1_14", feature = "dox"))]
//pub fn install_properties(oclass: /*Ignored*/&mut glib::ObjectClass, last_prop_id: i32) {
// unsafe { TODO: call gst_video_sys:gst_video_overlay_install_properties() }
//}
//#[cfg(any(feature = "v1_14", feature = "dox"))]
//pub fn set_property<P: IsA<glib::Object>>(object: &P, last_prop_id: i32, property_id: u32, value: /*Ignored*/&glib::Value) -> bool {
// unsafe { TODO: call gst_video_sys:gst_video_overlay_set_property() }
//}
}
unsafe impl Send for VideoOverlay {}
unsafe impl Sync for VideoOverlay {}
pub const NONE_VIDEO_OVERLAY: Option<&VideoOverlay> = None;
pub trait VideoOverlayExt: 'static {
fn expose(&self);
//fn got_window_handle(&self, handle: /*Unimplemented*/Fundamental: UIntPtr);
fn handle_events(&self, handle_events: bool);
fn prepare_window_handle(&self);
fn set_render_rectangle(
&self,
x: i32,
y: i32,
width: i32,
height: i32,
) -> Result<(), glib::error::BoolError>;
//fn set_window_handle(&self, handle: /*Unimplemented*/Fundamental: UIntPtr);
}
impl<O: IsA<VideoOverlay>> VideoOverlayExt for O {
fn expose(&self) {
unsafe {
gst_video_sys::gst_video_overlay_expose(self.as_ref().to_glib_none().0);
}
}
//fn got_window_handle(&self, handle: /*Unimplemented*/Fundamental: UIntPtr) {
// unsafe { TODO: call gst_video_sys:gst_video_overlay_got_window_handle() }
//}
fn handle_events(&self, handle_events: bool) {
unsafe {
gst_video_sys::gst_video_overlay_handle_events(
self.as_ref().to_glib_none().0,
handle_events.to_glib(),
);
}
}
fn prepare_window_handle(&self) {
unsafe {
gst_video_sys::gst_video_overlay_prepare_window_handle(self.as_ref().to_glib_none().0);
}
}
fn set_render_rectangle(
&self,
x: i32,
y: i32,
width: i32,
height: i32,
) -> Result<(), glib::error::BoolError> {
unsafe {
glib_result_from_gboolean!(
gst_video_sys::gst_video_overlay_set_render_rectangle(
self.as_ref().to_glib_none().0,
x,
y,
width,
height
),
"Failed to set render rectangle"
)
}
}
//fn set_window_handle(&self, handle: /*Unimplemented*/Fundamental: UIntPtr) {
// unsafe { TODO: call gst_video_sys:gst_video_overlay_set_window_handle() }
//}
}