gtk4/auto/
text_tag_table.rsuse crate::{ffi, Buildable, TextTag};
use glib::{
prelude::*,
signal::{connect_raw, SignalHandlerId},
translate::*,
};
use std::boxed::Box as Box_;
glib::wrapper! {
#[doc(alias = "GtkTextTagTable")]
pub struct TextTagTable(Object<ffi::GtkTextTagTable>) @implements Buildable;
match fn {
type_ => || ffi::gtk_text_tag_table_get_type(),
}
}
impl TextTagTable {
#[doc(alias = "gtk_text_tag_table_new")]
pub fn new() -> TextTagTable {
assert_initialized_main_thread!();
unsafe { from_glib_full(ffi::gtk_text_tag_table_new()) }
}
#[doc(alias = "gtk_text_tag_table_add")]
pub fn add(&self, tag: &impl IsA<TextTag>) -> bool {
unsafe {
from_glib(ffi::gtk_text_tag_table_add(
self.to_glib_none().0,
tag.as_ref().to_glib_none().0,
))
}
}
#[doc(alias = "gtk_text_tag_table_foreach")]
pub fn foreach<P: FnMut(&TextTag)>(&self, func: P) {
let mut func_data: P = func;
unsafe extern "C" fn func_func<P: FnMut(&TextTag)>(
tag: *mut ffi::GtkTextTag,
data: glib::ffi::gpointer,
) {
let tag = from_glib_borrow(tag);
let callback = data as *mut P;
(*callback)(&tag)
}
let func = Some(func_func::<P> as _);
let super_callback0: &mut P = &mut func_data;
unsafe {
ffi::gtk_text_tag_table_foreach(
self.to_glib_none().0,
func,
super_callback0 as *mut _ as *mut _,
);
}
}
#[doc(alias = "gtk_text_tag_table_get_size")]
#[doc(alias = "get_size")]
pub fn size(&self) -> i32 {
unsafe { ffi::gtk_text_tag_table_get_size(self.to_glib_none().0) }
}
#[doc(alias = "gtk_text_tag_table_lookup")]
pub fn lookup(&self, name: &str) -> Option<TextTag> {
unsafe {
from_glib_none(ffi::gtk_text_tag_table_lookup(
self.to_glib_none().0,
name.to_glib_none().0,
))
}
}
#[doc(alias = "gtk_text_tag_table_remove")]
pub fn remove(&self, tag: &impl IsA<TextTag>) {
unsafe {
ffi::gtk_text_tag_table_remove(self.to_glib_none().0, tag.as_ref().to_glib_none().0);
}
}
#[doc(alias = "tag-added")]
pub fn connect_tag_added<F: Fn(&Self, &TextTag) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe extern "C" fn tag_added_trampoline<F: Fn(&TextTagTable, &TextTag) + 'static>(
this: *mut ffi::GtkTextTagTable,
tag: *mut ffi::GtkTextTag,
f: glib::ffi::gpointer,
) {
let f: &F = &*(f as *const F);
f(&from_glib_borrow(this), &from_glib_borrow(tag))
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(
self.as_ptr() as *mut _,
b"tag-added\0".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
tag_added_trampoline::<F> as *const (),
)),
Box_::into_raw(f),
)
}
}
#[doc(alias = "tag-changed")]
pub fn connect_tag_changed<F: Fn(&Self, &TextTag, bool) + 'static>(
&self,
f: F,
) -> SignalHandlerId {
unsafe extern "C" fn tag_changed_trampoline<
F: Fn(&TextTagTable, &TextTag, bool) + 'static,
>(
this: *mut ffi::GtkTextTagTable,
tag: *mut ffi::GtkTextTag,
size_changed: glib::ffi::gboolean,
f: glib::ffi::gpointer,
) {
let f: &F = &*(f as *const F);
f(
&from_glib_borrow(this),
&from_glib_borrow(tag),
from_glib(size_changed),
)
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(
self.as_ptr() as *mut _,
b"tag-changed\0".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
tag_changed_trampoline::<F> as *const (),
)),
Box_::into_raw(f),
)
}
}
#[doc(alias = "tag-removed")]
pub fn connect_tag_removed<F: Fn(&Self, &TextTag) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe extern "C" fn tag_removed_trampoline<F: Fn(&TextTagTable, &TextTag) + 'static>(
this: *mut ffi::GtkTextTagTable,
tag: *mut ffi::GtkTextTag,
f: glib::ffi::gpointer,
) {
let f: &F = &*(f as *const F);
f(&from_glib_borrow(this), &from_glib_borrow(tag))
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(
self.as_ptr() as *mut _,
b"tag-removed\0".as_ptr() as *const _,
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
tag_removed_trampoline::<F> as *const (),
)),
Box_::into_raw(f),
)
}
}
}
impl Default for TextTagTable {
fn default() -> Self {
Self::new()
}
}