#[cfg(any(feature = "v3_6", feature = "dox"))]
use glib::GString;
#[cfg(any(feature = "v3_6", feature = "dox"))]
use glib::object::Cast;
use glib::object::IsA;
#[cfg(any(feature = "v3_6", feature = "dox"))]
use glib::signal::SignalHandlerId;
#[cfg(any(feature = "v3_6", feature = "dox"))]
use glib::signal::connect_raw;
use glib::translate::*;
#[cfg(any(feature = "v3_6", feature = "dox"))]
use glib_sys;
use goa_sys;
#[cfg(any(feature = "v3_6", feature = "dox"))]
use std::boxed::Box as Box_;
use std::fmt;
#[cfg(any(feature = "v3_6", feature = "dox"))]
use std::mem::transmute;
glib_wrapper! {
pub struct Exchange(Interface<goa_sys::GoaExchange>);
match fn {
get_type => || goa_sys::goa_exchange_get_type(),
}
}
impl Exchange {
}
pub const NONE_EXCHANGE: Option<&Exchange> = None;
pub trait ExchangeExt: 'static {
#[cfg(any(feature = "v3_6", feature = "dox"))]
fn dup_host(&self) -> Option<GString>;
#[cfg(any(feature = "v3_8", feature = "dox"))]
fn get_accept_ssl_errors(&self) -> bool;
#[cfg(any(feature = "v3_6", feature = "dox"))]
fn get_host(&self) -> Option<GString>;
#[cfg(any(feature = "v3_8", feature = "dox"))]
fn set_accept_ssl_errors(&self, value: bool);
#[cfg(any(feature = "v3_6", feature = "dox"))]
fn set_host(&self, value: &str);
#[cfg(any(feature = "v3_8", feature = "dox"))]
fn connect_property_accept_ssl_errors_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId;
#[cfg(any(feature = "v3_6", feature = "dox"))]
fn connect_property_host_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId;
}
impl<O: IsA<Exchange>> ExchangeExt for O {
#[cfg(any(feature = "v3_6", feature = "dox"))]
fn dup_host(&self) -> Option<GString> {
unsafe {
from_glib_full(goa_sys::goa_exchange_dup_host(self.as_ref().to_glib_none().0))
}
}
#[cfg(any(feature = "v3_8", feature = "dox"))]
fn get_accept_ssl_errors(&self) -> bool {
unsafe {
from_glib(goa_sys::goa_exchange_get_accept_ssl_errors(self.as_ref().to_glib_none().0))
}
}
#[cfg(any(feature = "v3_6", feature = "dox"))]
fn get_host(&self) -> Option<GString> {
unsafe {
from_glib_none(goa_sys::goa_exchange_get_host(self.as_ref().to_glib_none().0))
}
}
#[cfg(any(feature = "v3_8", feature = "dox"))]
fn set_accept_ssl_errors(&self, value: bool) {
unsafe {
goa_sys::goa_exchange_set_accept_ssl_errors(self.as_ref().to_glib_none().0, value.to_glib());
}
}
#[cfg(any(feature = "v3_6", feature = "dox"))]
fn set_host(&self, value: &str) {
unsafe {
goa_sys::goa_exchange_set_host(self.as_ref().to_glib_none().0, value.to_glib_none().0);
}
}
#[cfg(any(feature = "v3_8", feature = "dox"))]
fn connect_property_accept_ssl_errors_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe extern "C" fn notify_accept_ssl_errors_trampoline<P, F: Fn(&P) + 'static>(this: *mut goa_sys::GoaExchange, _param_spec: glib_sys::gpointer, f: glib_sys::gpointer)
where P: IsA<Exchange>
{
let f: &F = &*(f as *const F);
f(&Exchange::from_glib_borrow(this).unsafe_cast())
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(self.as_ptr() as *mut _, b"notify::accept-ssl-errors\0".as_ptr() as *const _,
Some(transmute(notify_accept_ssl_errors_trampoline::<Self, F> as usize)), Box_::into_raw(f))
}
}
#[cfg(any(feature = "v3_6", feature = "dox"))]
fn connect_property_host_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe extern "C" fn notify_host_trampoline<P, F: Fn(&P) + 'static>(this: *mut goa_sys::GoaExchange, _param_spec: glib_sys::gpointer, f: glib_sys::gpointer)
where P: IsA<Exchange>
{
let f: &F = &*(f as *const F);
f(&Exchange::from_glib_borrow(this).unsafe_cast())
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(self.as_ptr() as *mut _, b"notify::host\0".as_ptr() as *const _,
Some(transmute(notify_host_trampoline::<Self, F> as usize)), Box_::into_raw(f))
}
}
}
impl fmt::Display for Exchange {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(f, "Exchange")
}
}