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
use crate::EditableText;
use glib::object::IsA;
use glib::translate::*;
pub trait EditableTextExtManual: 'static {
#[doc(alias = "atk_editable_text_insert_text")]
fn insert_text(&self, string: &str, position: i32) -> i32;
}
impl<O: IsA<EditableText>> EditableTextExtManual for O {
fn insert_text(&self, string: &str, mut position: i32) -> i32 {
let length = string.len() as i32;
unsafe {
ffi::atk_editable_text_insert_text(
self.as_ref().to_glib_none().0,
string.to_glib_none().0,
length,
&mut position,
);
}
position
}
}