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

166 lines
4.6 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)
// from gst-gir-files (https://gitlab.freedesktop.org/gstreamer/gir-files-rs.git)
2017-07-04 22:47:33 +00:00
// DO NOT EDIT
2020-11-21 13:46:33 +00:00
use crate::Bus;
use crate::Object;
2019-01-16 11:32:39 +00:00
use glib::object::Cast;
2017-07-04 22:47:33 +00:00
use glib::object::IsA;
use glib::signal::connect_raw;
use glib::signal::SignalHandlerId;
2017-07-04 22:47:33 +00:00
use glib::translate::*;
use glib::StaticType;
2021-04-19 16:24:43 +00:00
use glib::ToValue;
use std::boxed::Box as Box_;
2020-04-13 16:11:33 +00:00
use std::mem::transmute;
2017-07-04 22:47:33 +00:00
2020-12-17 22:34:53 +00:00
glib::wrapper! {
#[doc(alias = "GstDeviceMonitor")]
2020-11-21 13:46:33 +00:00
pub struct DeviceMonitor(Object<ffi::GstDeviceMonitor, ffi::GstDeviceMonitorClass>) @extends Object;
2017-07-04 22:47:33 +00:00
match fn {
type_ => || ffi::gst_device_monitor_get_type(),
2017-07-04 22:47:33 +00:00
}
}
2021-11-03 17:28:46 +00:00
impl DeviceMonitor {
pub const NONE: Option<&'static DeviceMonitor> = None;
#[doc(alias = "gst_device_monitor_new")]
pub fn new() -> DeviceMonitor {
assert_initialized_main_thread!();
unsafe { from_glib_full(ffi::gst_device_monitor_new()) }
}
}
impl Default for DeviceMonitor {
fn default() -> Self {
Self::new()
}
2021-11-03 17:28:46 +00:00
}
2019-01-16 11:32:39 +00:00
2021-11-16 14:02:58 +00:00
unsafe impl Send for DeviceMonitor {}
unsafe impl Sync for DeviceMonitor {}
pub trait DeviceMonitorExt: 'static {
2020-12-08 13:00:17 +00:00
#[doc(alias = "gst_device_monitor_get_bus")]
#[doc(alias = "get_bus")]
2021-04-11 19:38:18 +00:00
fn bus(&self) -> Bus;
2017-07-04 22:47:33 +00:00
2020-12-08 13:00:17 +00:00
#[doc(alias = "gst_device_monitor_get_providers")]
#[doc(alias = "get_providers")]
2021-04-11 19:38:18 +00:00
fn providers(&self) -> Vec<glib::GString>;
2017-07-04 22:47:33 +00:00
2020-12-08 13:00:17 +00:00
#[doc(alias = "gst_device_monitor_get_show_all_devices")]
#[doc(alias = "get_show_all_devices")]
2021-04-11 19:38:18 +00:00
fn shows_all_devices(&self) -> bool;
2017-07-04 22:47:33 +00:00
2020-12-08 13:00:17 +00:00
#[doc(alias = "gst_device_monitor_set_show_all_devices")]
2017-07-04 22:47:33 +00:00
fn set_show_all_devices(&self, show_all: bool);
2020-12-08 13:00:17 +00:00
#[doc(alias = "gst_device_monitor_start")]
fn start(&self) -> Result<(), glib::error::BoolError>;
2017-07-04 22:47:33 +00:00
2020-12-08 13:00:17 +00:00
#[doc(alias = "gst_device_monitor_stop")]
2017-07-04 22:47:33 +00:00
fn stop(&self);
#[doc(alias = "show-all")]
2021-04-11 19:38:18 +00:00
fn shows_all(&self) -> bool;
#[doc(alias = "show-all")]
2021-04-11 19:38:18 +00:00
fn set_show_all(&self, show_all: bool);
#[doc(alias = "show-all")]
fn connect_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 {
2021-04-11 19:38:18 +00:00
fn bus(&self) -> Bus {
2017-07-04 22:47:33 +00:00
unsafe {
2020-11-21 13:46:33 +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
}
}
2021-04-11 19:38:18 +00:00
fn providers(&self) -> Vec<glib::GString> {
2017-07-04 22:47:33 +00:00
unsafe {
2020-11-21 13:46:33 +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
}
}
2021-04-11 19:38:18 +00:00
fn shows_all_devices(&self) -> bool {
2017-07-04 22:47:33 +00:00
unsafe {
2020-11-21 13:46:33 +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 {
2020-11-21 13:46:33 +00:00
ffi::gst_device_monitor_set_show_all_devices(
self.as_ref().to_glib_none().0,
show_all.into_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 {
2020-12-17 22:34:53 +00:00
glib::result_from_gboolean!(
2020-11-21 13:46:33 +00:00
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 {
2020-11-21 13:46:33 +00:00
ffi::gst_device_monitor_stop(self.as_ref().to_glib_none().0);
2017-07-04 22:47:33 +00:00
}
}
2021-04-11 19:38:18 +00:00
fn shows_all(&self) -> bool {
2021-11-06 17:31:52 +00:00
glib::ObjectExt::property(self.as_ref(), "show-all")
}
2021-04-11 19:38:18 +00:00
fn set_show_all(&self, show_all: bool) {
2021-11-06 17:31:52 +00:00
glib::ObjectExt::set_property(self.as_ref(), "show-all", &show_all)
}
fn connect_show_all_notify<F: Fn(&Self) + Send + Sync + 'static>(
&self,
f: F,
) -> SignalHandlerId {
unsafe extern "C" fn notify_show_all_trampoline<
P: IsA<DeviceMonitor>,
F: Fn(&P) + Send + Sync + 'static,
>(
2020-11-21 13:46:33 +00:00
this: *mut ffi::GstDeviceMonitor,
_param_spec: glib::ffi::gpointer,
f: glib::ffi::gpointer,
) {
2019-06-18 10:10:46 +00:00
let f: &F = &*(f as *const F);
2021-06-21 21:07:45 +00:00
f(DeviceMonitor::from_glib_borrow(this).unsafe_cast_ref())
2019-06-18 10:10:46 +00:00
}
unsafe {
2019-01-29 13:53:44 +00:00
let f: Box_<F> = Box_::new(f);
connect_raw(
self.as_ptr() as *mut _,
b"notify::show-all\0".as_ptr() as *const _,
2020-04-13 16:11:33 +00:00
Some(transmute::<_, unsafe extern "C" fn()>(
notify_show_all_trampoline::<Self, F> as *const (),
)),
Box_::into_raw(f),
)
}
}
}