use File;
use FileMonitorEvent;
use ffi;
use glib::StaticType;
use glib::Value;
use glib::object::Cast;
use glib::object::IsA;
use glib::signal::SignalHandlerId;
use glib::signal::connect_raw;
use glib::translate::*;
use glib_ffi;
use gobject_ffi;
use std::boxed::Box as Box_;
use std::fmt;
use std::mem::transmute;
glib_wrapper! {
pub struct FileMonitor(Object<ffi::GFileMonitor, ffi::GFileMonitorClass, FileMonitorClass>);
match fn {
get_type => || ffi::g_file_monitor_get_type(),
}
}
pub const NONE_FILE_MONITOR: Option<&FileMonitor> = None;
pub trait FileMonitorExt: 'static {
fn cancel(&self) -> bool;
fn emit_event<P: IsA<File>, Q: IsA<File>>(&self, child: &P, other_file: &Q, event_type: FileMonitorEvent);
fn is_cancelled(&self) -> bool;
fn set_rate_limit(&self, limit_msecs: i32);
fn get_property_cancelled(&self) -> bool;
fn get_property_rate_limit(&self) -> i32;
fn connect_changed<F: Fn(&Self, &File, &Option<File>, FileMonitorEvent) + 'static>(&self, f: F) -> SignalHandlerId;
fn connect_property_cancelled_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId;
fn connect_property_rate_limit_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId;
}
impl<O: IsA<FileMonitor>> FileMonitorExt for O {
fn cancel(&self) -> bool {
unsafe {
from_glib(ffi::g_file_monitor_cancel(self.as_ref().to_glib_none().0))
}
}
fn emit_event<P: IsA<File>, Q: IsA<File>>(&self, child: &P, other_file: &Q, event_type: FileMonitorEvent) {
unsafe {
ffi::g_file_monitor_emit_event(self.as_ref().to_glib_none().0, child.as_ref().to_glib_none().0, other_file.as_ref().to_glib_none().0, event_type.to_glib());
}
}
fn is_cancelled(&self) -> bool {
unsafe {
from_glib(ffi::g_file_monitor_is_cancelled(self.as_ref().to_glib_none().0))
}
}
fn set_rate_limit(&self, limit_msecs: i32) {
unsafe {
ffi::g_file_monitor_set_rate_limit(self.as_ref().to_glib_none().0, limit_msecs);
}
}
fn get_property_cancelled(&self) -> bool {
unsafe {
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"cancelled\0".as_ptr() as *const _, value.to_glib_none_mut().0);
value.get().unwrap()
}
}
fn get_property_rate_limit(&self) -> i32 {
unsafe {
let mut value = Value::from_type(<i32 as StaticType>::static_type());
gobject_ffi::g_object_get_property(self.to_glib_none().0 as *mut gobject_ffi::GObject, b"rate-limit\0".as_ptr() as *const _, value.to_glib_none_mut().0);
value.get().unwrap()
}
}
fn connect_changed<F: Fn(&Self, &File, &Option<File>, FileMonitorEvent) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(self.as_ptr() as *mut _, b"changed\0".as_ptr() as *const _,
Some(transmute(changed_trampoline::<Self, F> as usize)), Box_::into_raw(f))
}
}
fn connect_property_cancelled_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(self.as_ptr() as *mut _, b"notify::cancelled\0".as_ptr() as *const _,
Some(transmute(notify_cancelled_trampoline::<Self, F> as usize)), Box_::into_raw(f))
}
}
fn connect_property_rate_limit_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(self.as_ptr() as *mut _, b"notify::rate-limit\0".as_ptr() as *const _,
Some(transmute(notify_rate_limit_trampoline::<Self, F> as usize)), Box_::into_raw(f))
}
}
}
unsafe extern "C" fn changed_trampoline<P, F: Fn(&P, &File, &Option<File>, FileMonitorEvent) + 'static>(this: *mut ffi::GFileMonitor, file: *mut ffi::GFile, other_file: *mut ffi::GFile, event_type: ffi::GFileMonitorEvent, f: glib_ffi::gpointer)
where P: IsA<FileMonitor> {
let f: &F = transmute(f);
f(&FileMonitor::from_glib_borrow(this).unsafe_cast(), &from_glib_borrow(file), &from_glib_borrow(other_file), from_glib(event_type))
}
unsafe extern "C" fn notify_cancelled_trampoline<P, F: Fn(&P) + 'static>(this: *mut ffi::GFileMonitor, _param_spec: glib_ffi::gpointer, f: glib_ffi::gpointer)
where P: IsA<FileMonitor> {
let f: &F = transmute(f);
f(&FileMonitor::from_glib_borrow(this).unsafe_cast())
}
unsafe extern "C" fn notify_rate_limit_trampoline<P, F: Fn(&P) + 'static>(this: *mut ffi::GFileMonitor, _param_spec: glib_ffi::gpointer, f: glib_ffi::gpointer)
where P: IsA<FileMonitor> {
let f: &F = transmute(f);
f(&FileMonitor::from_glib_borrow(this).unsafe_cast())
}
impl fmt::Display for FileMonitor {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(f, "FileMonitor")
}
}