Trait gtk::prelude::SearchEntryExt
[−]
[src]
pub trait SearchEntryExt { fn handle_event(&self, event: &Event) -> bool; fn connect_next_match<F: Fn(&Self) + 'static>(&self, f: F) -> u64; fn connect_previous_match<F: Fn(&Self) + 'static>(&self, f: F) -> u64; fn connect_search_changed<F: Fn(&Self) + 'static>(&self, f: F) -> u64; fn connect_stop_search<F: Fn(&Self) + 'static>(&self, f: F) -> u64; }
Required Methods
fn handle_event(&self, event: &Event) -> bool
fn connect_next_match<F: Fn(&Self) + 'static>(&self, f: F) -> u64
fn connect_previous_match<F: Fn(&Self) + 'static>(&self, f: F) -> u64
fn connect_search_changed<F: Fn(&Self) + 'static>(&self, f: F) -> u64
fn connect_stop_search<F: Fn(&Self) + 'static>(&self, f: F) -> u64
Implementors
impl<O: IsA<SearchEntry> + IsA<Object>> SearchEntryExt for O