1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
use libc::{c_char, c_int};
use std::boxed::Box as Box_;
use std::mem::{self, transmute};
use std::{slice, str};
use ffi;
use gdk;
use glib;
use glib::object::IsA;
use glib::translate::*;
use glib::signal::connect;
use glib_ffi;
use TextBuffer;
use TextIter;
pub trait TextBufferExtManual {
fn get_deserialize_formats(&self) -> Vec<gdk::Atom>;
fn get_serialize_formats(&self) -> Vec<gdk::Atom>;
fn insert(&self, iter: &mut TextIter, text: &str);
fn insert_at_cursor(&self, text: &str);
fn insert_interactive(&self, iter: &mut TextIter, text: &str, default_editable: bool)
-> bool;
fn insert_interactive_at_cursor(&self, text: &str, default_editable: bool) -> bool;
#[cfg(feature = "v3_16")]
fn insert_markup(&self, iter: &mut TextIter, markup: &str);
fn set_text(&self, text: &str);
fn connect_insert_text<F: Fn(&TextBuffer, &TextIter, &str) + 'static>(&self, f: F) -> u64;
}
impl<O: IsA<TextBuffer> + IsA<glib::object::Object>> TextBufferExtManual for O {
fn get_deserialize_formats(&self) -> Vec<gdk::Atom> {
unsafe {
let mut n_formats = mem::uninitialized();
let formats = ffi::gtk_text_buffer_get_deserialize_formats(self.to_glib_none().0, &mut n_formats);
FromGlibPtrContainer::from_glib_container_num(formats, n_formats as usize)
}
}
fn get_serialize_formats(&self) -> Vec<gdk::Atom> {
unsafe {
let mut n_formats = mem::uninitialized();
let formats = ffi::gtk_text_buffer_get_serialize_formats(self.to_glib_none().0, &mut n_formats);
FromGlibPtrContainer::from_glib_container_num(formats, n_formats as usize)
}
}
fn insert(&self, iter: &mut TextIter, text: &str) {
unsafe {
ffi::gtk_text_buffer_insert(self.to_glib_none().0, iter.to_glib_none_mut().0,
text.as_ptr() as *const c_char, text.len() as c_int);
}
}
fn insert_at_cursor(&self, text: &str) {
unsafe {
ffi::gtk_text_buffer_insert_at_cursor(self.to_glib_none().0,
text.as_ptr() as *const c_char, text.len() as c_int);
}
}
fn insert_interactive(&self, iter: &mut TextIter, text: &str, default_editable: bool)
-> bool {
unsafe {
from_glib(
ffi::gtk_text_buffer_insert_interactive(self.to_glib_none().0,
iter.to_glib_none_mut().0, text.as_ptr() as *const c_char, text.len() as c_int,
default_editable.to_glib()))
}
}
fn insert_interactive_at_cursor(&self, text: &str, default_editable: bool) -> bool {
unsafe {
from_glib(ffi::gtk_text_buffer_insert_interactive_at_cursor(self.to_glib_none().0,
text.as_ptr() as *const c_char, text.len() as c_int, default_editable.to_glib()))
}
}
#[cfg(feature = "v3_16")]
fn insert_markup(&self, iter: &mut TextIter, markup: &str) {
unsafe {
ffi::gtk_text_buffer_insert_markup(self.to_glib_none().0, iter.to_glib_none_mut().0,
markup.as_ptr() as *const c_char, markup.len() as c_int);
}
}
fn set_text(&self, text: &str) {
unsafe {
ffi::gtk_text_buffer_set_text(self.to_glib_none().0, text.as_ptr() as *const c_char,
text.len() as c_int);
}
}
fn connect_insert_text<F: Fn(&TextBuffer, &TextIter, &str) + 'static>(&self, f: F) -> u64 {
unsafe {
let f: Box_<Box_<Fn(&TextBuffer, &TextIter, &str) + 'static>> = Box_::new(Box_::new(f));
connect(self.to_glib_none().0, "insert-text",
transmute(insert_text_trampoline as usize), Box_::into_raw(f) as *mut _)
}
}
}
unsafe extern "C" fn insert_text_trampoline(this: *mut ffi::GtkTextBuffer,
location: *mut ffi::GtkTextIter,
text: *mut c_char,
len: c_int,
f: glib_ffi::gpointer) {
callback_guard!();
let f: &Box_<Fn(&TextBuffer, &TextIter, &str) + 'static> = transmute(f);
f(&from_glib_none(this),
&from_glib_none(location),
&str::from_utf8(slice::from_raw_parts(text as *const u8, len as usize)).unwrap())
}