Trait webkit2gtk::FindControllerExt[][src]

pub trait FindControllerExt {
    fn count_matches(
        &self,
        search_text: &str,
        find_options: u32,
        max_match_count: u32
    );
fn get_max_match_count(&self) -> u32;
fn get_options(&self) -> u32;
fn get_search_text(&self) -> Option<String>;
fn get_web_view(&self) -> Option<WebView>;
fn search(&self, search_text: &str, find_options: u32, max_match_count: u32);
fn search_finish(&self);
fn search_next(&self);
fn search_previous(&self);
fn get_property_text(&self) -> Option<String>;
fn connect_counted_matches<F: Fn(&Self, u32) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_failed_to_find_text<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_found_text<F: Fn(&Self, u32) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_max_match_count_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_options_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_text_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_web_view_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; }

Required Methods

Implementors