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 atk_sys;
use glib::object::IsA;
use glib::translate::*;
use std::fmt;

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

    match fn {
        get_type => || atk_sys::atk_editable_text_get_type(),
    }
}

pub const NONE_EDITABLE_TEXT: Option<&EditableText> = None;

/// Trait containing all `EditableText` methods.
///
/// # Implementors
///
/// [`EditableText`](struct.EditableText.html), [`NoOpObject`](struct.NoOpObject.html)
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
    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
    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
    fn delete_text(&self, start_pos: i32, end_pos: i32);

    /// Paste text from clipboard to specified `position`.
    /// ## `position`
    /// position to paste
    fn paste_text(&self, position: i32);

    //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`
    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 {
            atk_sys::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 {
            atk_sys::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 {
            atk_sys::atk_editable_text_delete_text(
                self.as_ref().to_glib_none().0,
                start_pos,
                end_pos,
            );
        }
    }

    fn paste_text(&self, position: i32) {
        unsafe {
            atk_sys::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 atk_sys:atk_editable_text_set_run_attributes() }
    //}

    fn set_text_contents(&self, string: &str) {
        unsafe {
            atk_sys::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 {
        write!(f, "EditableText")
    }
}