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 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::*;
2019-03-19 07:40:05 +00:00
use glib_sys;
use gobject_sys;
use gst_sys;
use std::boxed::Box as Box_;
use std::mem::transmute;
2017-07-04 22:47:33 +00:00
glib_wrapper! {
2019-03-19 07:40:05 +00:00
pub struct DeviceMonitor(Object<gst_sys::GstDeviceMonitor, gst_sys::GstDeviceMonitorClass, DeviceMonitorClass>) @extends Object;
2017-07-04 22:47:33 +00:00
match fn {
2019-03-19 07:40:05 +00:00
get_type => || gst_sys::gst_device_monitor_get_type(),
2017-07-04 22:47:33 +00:00
}
}
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-03-19 07:40:05 +00:00
from_glib_full(gst_sys::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-03-19 07:40:05 +00:00
FromGlibPtrContainer::from_glib_full(gst_sys::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-03-19 07:40:05 +00:00
FromGlibPtrContainer::from_glib_full(gst_sys::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-03-19 07:40:05 +00:00
from_glib(gst_sys::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-03-19 07:40:05 +00:00
gst_sys::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-03-19 07:40:05 +00:00
glib_result_from_gboolean!(gst_sys::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-03-19 07:40:05 +00:00
gst_sys::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());
2019-03-19 07:40:05 +00:00
gobject_sys::g_object_get_property(self.to_glib_none().0 as *mut gobject_sys::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 {
2019-03-19 07:40:05 +00:00
gobject_sys::g_object_set_property(self.to_glib_none().0 as *mut gobject_sys::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 {
2019-01-29 13:53:44 +00:00
let f: Box_<F> = 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 _,
2019-01-29 13:53:44 +00:00
Some(transmute(notify_show_all_trampoline::<Self, F> as usize)), Box_::into_raw(f))
}
}
}
2019-03-19 07:40:05 +00:00
unsafe extern "C" fn notify_show_all_trampoline<P, F: Fn(&P) + Send + Sync + 'static>(this: *mut gst_sys::GstDeviceMonitor, _param_spec: glib_sys::gpointer, f: glib_sys::gpointer)
where P: IsA<DeviceMonitor> {
2019-02-22 09:51:17 +00:00
let f: &F = &*(f as *const 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
}