1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
// This file was generated by gir (https://github.com/gtk-rs/gir)
// from gir-files (https://github.com/gtk-rs/gir-files)
// DO NOT EDIT

use atk_sys;
use gobject_sys;

glib_wrapper! {
    /// A structure used to describe a text range.
    #[derive(Debug, PartialEq, Eq, PartialOrd, Ord, Hash)]
    pub struct TextRange(Boxed<atk_sys::AtkTextRange>);

    match fn {
        copy => |ptr| gobject_sys::g_boxed_copy(atk_sys::atk_text_range_get_type(), ptr as *mut _) as *mut atk_sys::AtkTextRange,
        free => |ptr| gobject_sys::g_boxed_free(atk_sys::atk_text_range_get_type(), ptr as *mut _),
        get_type => || atk_sys::atk_text_range_get_type(),
    }
}