Trait gtk::prelude::SearchEntryExt[][src]

pub trait SearchEntryExt: 'static {
    fn handle_event(&self, event: &Event) -> bool;
fn connect_next_match<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn emit_next_match(&self);
fn connect_previous_match<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn emit_previous_match(&self);
fn connect_search_changed<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_stop_search<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn emit_stop_search(&self); }

Required methods

fn handle_event(&self, event: &Event) -> bool[src]

fn connect_next_match<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId[src]

fn emit_next_match(&self)[src]

fn connect_previous_match<F: Fn(&Self) + 'static>(
    &self,
    f: F
) -> SignalHandlerId
[src]

fn emit_previous_match(&self)[src]

fn connect_search_changed<F: Fn(&Self) + 'static>(
    &self,
    f: F
) -> SignalHandlerId
[src]

Loading content...

Implementors

impl<O: IsA<SearchEntry>> SearchEntryExt for O[src]

Loading content...