gstreamer-rs/gstreamer/src/auto/device_monitor.rs

129 lines
4 KiB
Rust
Raw Normal View History

2018-04-23 17:34:22 +00:00
// This file was generated by gir (https://github.com/gtk-rs/gir)
// from gir-files (https://github.com/gtk-rs/gir-files)
2017-07-04 22:47:33 +00:00
// DO NOT EDIT
use Bus;
use Device;
use Object;
use ffi;
use glib;
use glib::GString;
use glib::StaticType;
use glib::Value;
2019-01-16 11:32:39 +00:00
use glib::object::Cast;
2017-07-04 22:47:33 +00:00
use glib::object::IsA;
2017-09-09 13:01:32 +00:00
use glib::signal::SignalHandlerId;
use glib::signal::connect_raw;
2017-07-04 22:47:33 +00:00
use glib::translate::*;
2017-07-19 18:41:25 +00:00
use glib_ffi;
2017-07-04 22:47:33 +00:00
use gobject_ffi;
use std::boxed::Box as Box_;
use std::mem::transmute;
2017-07-04 22:47:33 +00:00
glib_wrapper! {
2019-01-16 11:32:39 +00:00
pub struct DeviceMonitor(Object<ffi::GstDeviceMonitor, ffi::GstDeviceMonitorClass, DeviceMonitorClass>) @extends Object;
2017-07-04 22:47:33 +00:00
match fn {
get_type => || ffi::gst_device_monitor_get_type(),
}
}
unsafe impl Send for DeviceMonitor {}
unsafe impl Sync for DeviceMonitor {}
2019-01-16 11:32:39 +00:00
pub const NONE_DEVICE_MONITOR: Option<&DeviceMonitor> = None;
pub trait DeviceMonitorExt: 'static {
fn get_bus(&self) -> Bus;
2017-07-04 22:47:33 +00:00
fn get_devices(&self) -> Vec<Device>;
fn get_providers(&self) -> Vec<GString>;
2017-07-04 22:47:33 +00:00
fn get_show_all_devices(&self) -> bool;
fn set_show_all_devices(&self, show_all: bool);
fn start(&self) -> Result<(), glib::error::BoolError>;
2017-07-04 22:47:33 +00:00
fn stop(&self);
fn get_property_show_all(&self) -> bool;
fn set_property_show_all(&self, show_all: bool);
2017-09-09 13:01:32 +00:00
fn connect_property_show_all_notify<F: Fn(&Self) + Send + Sync + 'static>(&self, f: F) -> SignalHandlerId;
2017-07-04 22:47:33 +00:00
}
impl<O: IsA<DeviceMonitor>> DeviceMonitorExt for O {
fn get_bus(&self) -> Bus {
2017-07-04 22:47:33 +00:00
unsafe {
2019-01-16 11:32:39 +00:00
from_glib_full(ffi::gst_device_monitor_get_bus(self.as_ref().to_glib_none().0))
2017-07-04 22:47:33 +00:00
}
}
fn get_devices(&self) -> Vec<Device> {
unsafe {
2019-01-16 11:32:39 +00:00
FromGlibPtrContainer::from_glib_full(ffi::gst_device_monitor_get_devices(self.as_ref().to_glib_none().0))
2017-07-04 22:47:33 +00:00
}
}
fn get_providers(&self) -> Vec<GString> {
2017-07-04 22:47:33 +00:00
unsafe {
2019-01-16 11:32:39 +00:00
FromGlibPtrContainer::from_glib_full(ffi::gst_device_monitor_get_providers(self.as_ref().to_glib_none().0))
2017-07-04 22:47:33 +00:00
}
}
fn get_show_all_devices(&self) -> bool {
unsafe {
2019-01-16 11:32:39 +00:00
from_glib(ffi::gst_device_monitor_get_show_all_devices(self.as_ref().to_glib_none().0))
2017-07-04 22:47:33 +00:00
}
}
fn set_show_all_devices(&self, show_all: bool) {
unsafe {
2019-01-16 11:32:39 +00:00
ffi::gst_device_monitor_set_show_all_devices(self.as_ref().to_glib_none().0, show_all.to_glib());
2017-07-04 22:47:33 +00:00
}
}
fn start(&self) -> Result<(), glib::error::BoolError> {
2017-07-04 22:47:33 +00:00
unsafe {
2019-01-16 11:32:39 +00:00
glib_result_from_gboolean!(ffi::gst_device_monitor_start(self.as_ref().to_glib_none().0), "Failed to start")
2017-07-04 22:47:33 +00:00
}
}
fn stop(&self) {
unsafe {
2019-01-16 11:32:39 +00:00
ffi::gst_device_monitor_stop(self.as_ref().to_glib_none().0);
2017-07-04 22:47:33 +00:00
}
}
fn get_property_show_all(&self) -> bool {
unsafe {
2018-02-06 14:42:34 +00:00
let mut value = Value::from_type(<bool as StaticType>::static_type());
gobject_ffi::g_object_get_property(self.to_glib_none().0 as *mut gobject_ffi::GObject, b"show-all\0".as_ptr() as *const _, value.to_glib_none_mut().0);
value.get().unwrap()
}
}
fn set_property_show_all(&self, show_all: bool) {
unsafe {
gobject_ffi::g_object_set_property(self.to_glib_none().0 as *mut gobject_ffi::GObject, b"show-all\0".as_ptr() as *const _, Value::from(&show_all).to_glib_none().0);
}
}
2017-09-09 13:01:32 +00:00
fn connect_property_show_all_notify<F: Fn(&Self) + Send + Sync + 'static>(&self, f: F) -> SignalHandlerId {
unsafe {
let f: Box_<Box_<Fn(&Self) + Send + Sync + 'static>> = Box_::new(Box_::new(f));
2019-01-16 11:32:39 +00:00
connect_raw(self.as_ptr() as *mut _, b"notify::show-all\0".as_ptr() as *const _,
transmute(notify_show_all_trampoline::<Self> as usize), Box_::into_raw(f) as *mut _)
}
}
}
unsafe extern "C" fn notify_show_all_trampoline<P>(this: *mut ffi::GstDeviceMonitor, _param_spec: glib_ffi::gpointer, f: glib_ffi::gpointer)
where P: IsA<DeviceMonitor> {
let f: &&(Fn(&P) + Send + Sync + 'static) = transmute(f);
2019-01-16 11:32:39 +00:00
f(&DeviceMonitor::from_glib_borrow(this).unsafe_cast())
2017-07-04 22:47:33 +00:00
}