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 glib::translate::*;
use libc::{c_int, c_uint};
glib::wrapper! {
#[doc(alias = "GtkEntryBuffer")]
pub struct EntryBuffer(Object<ffi::GtkEntryBuffer, ffi::GtkEntryBufferClass>);
match fn {
type_ => || ffi::gtk_entry_buffer_get_type(),
}
}
macro_rules! to_u16 {
($e:expr) => (
{
let x = $e;
assert!(x as usize <= u16::max_value() as usize,
"Unexpected value exceeding `u16` range");
x as u16
}
)
}
#[allow(clippy::cast_lossless)]
impl EntryBuffer {
#[doc(alias = "gtk_entry_buffer_new")]
pub fn new(initial_chars: Option<&str>) -> EntryBuffer {
assert_initialized_main_thread!();
unsafe {
from_glib_full(ffi::gtk_entry_buffer_new(
initial_chars.to_glib_none().0,
-1,
))
}
}
#[doc(alias = "gtk_entry_buffer_delete_text")]
pub fn delete_text(&self, position: u16, n_chars: Option<u16>) -> u16 {
unsafe {
to_u16!(ffi::gtk_entry_buffer_delete_text(
self.to_glib_none().0,
position as c_uint,
n_chars.map(|n| n as c_int).unwrap_or(-1)
))
}
}
#[doc(alias = "gtk_entry_buffer_get_bytes")]
#[doc(alias = "get_bytes")]
pub fn bytes(&self) -> u32 {
unsafe { ffi::gtk_entry_buffer_get_bytes(self.to_glib_none().0) as u32 }
}
#[doc(alias = "gtk_entry_buffer_get_length")]
#[doc(alias = "get_length")]
pub fn length(&self) -> u16 {
unsafe { to_u16!(ffi::gtk_entry_buffer_get_length(self.to_glib_none().0)) }
}
#[doc(alias = "gtk_entry_buffer_get_max_length")]
#[doc(alias = "get_max_length")]
pub fn max_length(&self) -> Option<u16> {
unsafe {
match ffi::gtk_entry_buffer_get_max_length(self.to_glib_none().0) {
0 => None,
x => Some(to_u16!(x)),
}
}
}
#[doc(alias = "gtk_entry_buffer_get_text")]
#[doc(alias = "get_text")]
pub fn text(&self) -> String {
unsafe { from_glib_none(ffi::gtk_entry_buffer_get_text(self.to_glib_none().0)) }
}
#[doc(alias = "gtk_entry_buffer_insert_text")]
pub fn insert_text(&self, position: u16, chars: &str) -> u16 {
unsafe {
to_u16!(ffi::gtk_entry_buffer_insert_text(
self.to_glib_none().0,
position as c_uint,
chars.to_glib_none().0,
-1
))
}
}
#[doc(alias = "gtk_entry_buffer_set_max_length")]
pub fn set_max_length(&self, max_length: Option<u16>) {
unsafe {
assert_ne!(max_length, Some(0), "Zero maximum length not supported");
ffi::gtk_entry_buffer_set_max_length(
self.to_glib_none().0,
max_length.unwrap_or(0) as c_int,
);
}
}
#[doc(alias = "gtk_entry_buffer_set_text")]
pub fn set_text(&self, chars: &str) {
unsafe {
ffi::gtk_entry_buffer_set_text(self.to_glib_none().0, chars.to_glib_none().0, -1);
}
}
}