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
// Copyright 2013-2015, The Gtk-rs Project Developers.
// See the COPYRIGHT file at the top-level directory of this distribution.
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
use ffi;
/*
* # Availables signals :
* * `activate` : Action
* * `backspace` : Action
* * `copy-clipboard` : Action
* * `cut-clipboard` : Action
* * `delete-from-cursor` : Action
* * `icon-press` : Run Last
* * `icon-release` : Run Last
* * `insert-at-cursor` : Action
* * `move-cursor` : Action
* * `paste-clipboard` : Action
* * `populate-popup` : Run Last
* * `preedit-changed` : Action
* * `toggle-overwrite` : Action
*/
struct_Widget!(Entry);
impl Entry {
pub fn new() -> Option<Entry> {
assert_initialized_main_thread!();
let tmp_pointer = unsafe { ffi::gtk_entry_new() };
check_pointer!(tmp_pointer, Entry)
}
pub fn new_with_buffer(buffer: &::EntryBuffer) -> Option<Entry> {
skip_assert_initialized!();
let tmp_pointer = unsafe { ffi::gtk_entry_new_with_buffer(buffer.unwrap_pointer()) };
check_pointer!(tmp_pointer, Entry)
}
}
impl_drop!(Entry);
impl_TraitWidget!(Entry);
impl ::EntryTrait for Entry {}
impl ::EditableTrait for Entry {}