[][src]Trait webkit2gtk::FindControllerExt

pub trait FindControllerExt: 'static {
    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<GString>;
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<GString>;
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; }

Required methods

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<GString>

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<GString>

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

Loading content...

Implementors

impl<O: IsA<FindController>> FindControllerExt for O[src]

Loading content...