use Action;
use Object;
use ffi;
use glib::GString;
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 Hyperlink(Object<ffi::AtkHyperlink, ffi::AtkHyperlinkClass, HyperlinkClass>) @implements Action;
match fn {
get_type => || ffi::atk_hyperlink_get_type(),
}
}
pub const NONE_HYPERLINK: Option<&Hyperlink> = None;
pub trait HyperlinkExt: 'static {
fn get_end_index(&self) -> i32;
fn get_n_anchors(&self) -> i32;
fn get_object(&self, i: i32) -> Option<Object>;
fn get_start_index(&self) -> i32;
fn get_uri(&self, i: i32) -> Option<GString>;
fn is_inline(&self) -> bool;
fn is_valid(&self) -> bool;
fn get_property_number_of_anchors(&self) -> i32;
fn connect_link_activated<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId;
fn connect_property_end_index_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId;
fn connect_property_number_of_anchors_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId;
fn connect_property_start_index_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId;
}
impl<O: IsA<Hyperlink>> HyperlinkExt for O {
fn get_end_index(&self) -> i32 {
unsafe {
ffi::atk_hyperlink_get_end_index(self.as_ref().to_glib_none().0)
}
}
fn get_n_anchors(&self) -> i32 {
unsafe {
ffi::atk_hyperlink_get_n_anchors(self.as_ref().to_glib_none().0)
}
}
fn get_object(&self, i: i32) -> Option<Object> {
unsafe {
from_glib_none(ffi::atk_hyperlink_get_object(self.as_ref().to_glib_none().0, i))
}
}
fn get_start_index(&self) -> i32 {
unsafe {
ffi::atk_hyperlink_get_start_index(self.as_ref().to_glib_none().0)
}
}
fn get_uri(&self, i: i32) -> Option<GString> {
unsafe {
from_glib_full(ffi::atk_hyperlink_get_uri(self.as_ref().to_glib_none().0, i))
}
}
fn is_inline(&self) -> bool {
unsafe {
from_glib(ffi::atk_hyperlink_is_inline(self.as_ref().to_glib_none().0))
}
}
fn is_valid(&self) -> bool {
unsafe {
from_glib(ffi::atk_hyperlink_is_valid(self.as_ref().to_glib_none().0))
}
}
fn get_property_number_of_anchors(&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"number-of-anchors\0".as_ptr() as *const _, value.to_glib_none_mut().0);
value.get().unwrap()
}
}
fn connect_link_activated<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(self.as_ptr() as *mut _, b"link-activated\0".as_ptr() as *const _,
Some(transmute(link_activated_trampoline::<Self, F> as usize)), Box_::into_raw(f))
}
}
fn connect_property_end_index_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::end-index\0".as_ptr() as *const _,
Some(transmute(notify_end_index_trampoline::<Self, F> as usize)), Box_::into_raw(f))
}
}
fn connect_property_number_of_anchors_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::number-of-anchors\0".as_ptr() as *const _,
Some(transmute(notify_number_of_anchors_trampoline::<Self, F> as usize)), Box_::into_raw(f))
}
}
fn connect_property_start_index_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::start-index\0".as_ptr() as *const _,
Some(transmute(notify_start_index_trampoline::<Self, F> as usize)), Box_::into_raw(f))
}
}
}
unsafe extern "C" fn link_activated_trampoline<P, F: Fn(&P) + 'static>(this: *mut ffi::AtkHyperlink, f: glib_ffi::gpointer)
where P: IsA<Hyperlink> {
let f: &F = transmute(f);
f(&Hyperlink::from_glib_borrow(this).unsafe_cast())
}
unsafe extern "C" fn notify_end_index_trampoline<P, F: Fn(&P) + 'static>(this: *mut ffi::AtkHyperlink, _param_spec: glib_ffi::gpointer, f: glib_ffi::gpointer)
where P: IsA<Hyperlink> {
let f: &F = transmute(f);
f(&Hyperlink::from_glib_borrow(this).unsafe_cast())
}
unsafe extern "C" fn notify_number_of_anchors_trampoline<P, F: Fn(&P) + 'static>(this: *mut ffi::AtkHyperlink, _param_spec: glib_ffi::gpointer, f: glib_ffi::gpointer)
where P: IsA<Hyperlink> {
let f: &F = transmute(f);
f(&Hyperlink::from_glib_borrow(this).unsafe_cast())
}
unsafe extern "C" fn notify_start_index_trampoline<P, F: Fn(&P) + 'static>(this: *mut ffi::AtkHyperlink, _param_spec: glib_ffi::gpointer, f: glib_ffi::gpointer)
where P: IsA<Hyperlink> {
let f: &F = transmute(f);
f(&Hyperlink::from_glib_borrow(this).unsafe_cast())
}
impl fmt::Display for Hyperlink {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(f, "Hyperlink")
}
}