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
124
125
126
// 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 glib::object::IsA;
use glib::translate::*;
use std::fmt;

glib::wrapper! {
    /// [`EditableText`][crate::EditableText] should be implemented by UI components which
    /// contain text which the user can edit, via the [`Object`][crate::Object]
    /// corresponding to that component (see [`Object`][crate::Object]).
    ///
    /// [`EditableText`][crate::EditableText] is a subclass of [`Text`][crate::Text], and as such, an object
    /// which implements [`EditableText`][crate::EditableText] is by definition an [`Text`][crate::Text]
    /// implementor as well.
    ///
    /// See also: [`Text`][crate::Text]
    ///
    /// # Implements
    ///
    /// [`EditableTextExt`][trait@crate::prelude::EditableTextExt], [`EditableTextExtManual`][trait@crate::prelude::EditableTextExtManual]
    #[doc(alias = "AtkEditableText")]
    pub struct EditableText(Interface<ffi::AtkEditableText, ffi::AtkEditableTextIface>);

    match fn {
        type_ => || ffi::atk_editable_text_get_type(),
    }
}

impl EditableText {
    pub const NONE: Option<&'static EditableText> = None;
}

/// Trait containing all [`struct@EditableText`] methods.
///
/// # Implementors
///
/// [`EditableText`][struct@crate::EditableText], [`NoOpObject`][struct@crate::NoOpObject]
pub trait EditableTextExt: 'static {
    /// Copy text from `start_pos` up to, but not including `end_pos`
    /// to the clipboard.
    /// ## `start_pos`
    /// start position
    /// ## `end_pos`
    /// end position
    #[doc(alias = "atk_editable_text_copy_text")]
    fn copy_text(&self, start_pos: i32, end_pos: i32);

    /// Copy text from `start_pos` up to, but not including `end_pos`
    /// to the clipboard and then delete from the widget.
    /// ## `start_pos`
    /// start position
    /// ## `end_pos`
    /// end position
    #[doc(alias = "atk_editable_text_cut_text")]
    fn cut_text(&self, start_pos: i32, end_pos: i32);

    /// Delete text `start_pos` up to, but not including `end_pos`.
    /// ## `start_pos`
    /// start position
    /// ## `end_pos`
    /// end position
    #[doc(alias = "atk_editable_text_delete_text")]
    fn delete_text(&self, start_pos: i32, end_pos: i32);

    /// Paste text from clipboard to specified `position`.
    /// ## `position`
    /// position to paste
    #[doc(alias = "atk_editable_text_paste_text")]
    fn paste_text(&self, position: i32);

    //#[doc(alias = "atk_editable_text_set_run_attributes")]
    //fn set_run_attributes(&self, attrib_set: /*Ignored*/&mut AttributeSet, start_offset: i32, end_offset: i32) -> bool;

    /// Set text contents of `self`.
    /// ## `string`
    /// string to set for text contents of `self`
    #[doc(alias = "atk_editable_text_set_text_contents")]
    fn set_text_contents(&self, string: &str);
}

impl<O: IsA<EditableText>> EditableTextExt for O {
    fn copy_text(&self, start_pos: i32, end_pos: i32) {
        unsafe {
            ffi::atk_editable_text_copy_text(self.as_ref().to_glib_none().0, start_pos, end_pos);
        }
    }

    fn cut_text(&self, start_pos: i32, end_pos: i32) {
        unsafe {
            ffi::atk_editable_text_cut_text(self.as_ref().to_glib_none().0, start_pos, end_pos);
        }
    }

    fn delete_text(&self, start_pos: i32, end_pos: i32) {
        unsafe {
            ffi::atk_editable_text_delete_text(self.as_ref().to_glib_none().0, start_pos, end_pos);
        }
    }

    fn paste_text(&self, position: i32) {
        unsafe {
            ffi::atk_editable_text_paste_text(self.as_ref().to_glib_none().0, position);
        }
    }

    //fn set_run_attributes(&self, attrib_set: /*Ignored*/&mut AttributeSet, start_offset: i32, end_offset: i32) -> bool {
    //    unsafe { TODO: call ffi:atk_editable_text_set_run_attributes() }
    //}

    fn set_text_contents(&self, string: &str) {
        unsafe {
            ffi::atk_editable_text_set_text_contents(
                self.as_ref().to_glib_none().0,
                string.to_glib_none().0,
            );
        }
    }
}

impl fmt::Display for EditableText {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        f.write_str("EditableText")
    }
}