pub trait FindControllerExt: IsA<FindController> + Sealed + 'static {
Show 16 methods // Provided methods fn count_matches( &self, search_text: &str, find_options: u32, max_match_count: u32 ) { ... } fn max_match_count(&self) -> u32 { ... } fn options(&self) -> u32 { ... } fn search_text(&self) -> Option<GString> { ... } fn 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 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_max_match_count_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId { ... } fn connect_options_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId { ... } fn connect_text_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId { ... }
}

Provided Methods§

source

fn count_matches( &self, search_text: &str, find_options: u32, max_match_count: u32 )

source

fn max_match_count(&self) -> u32

source

fn options(&self) -> u32

source

fn search_text(&self) -> Option<GString>

source

fn web_view(&self) -> Option<WebView>

source

fn search(&self, search_text: &str, find_options: u32, max_match_count: u32)

source

fn search_finish(&self)

source

fn search_next(&self)

source

fn search_previous(&self)

source

fn text(&self) -> Option<GString>

source

fn connect_counted_matches<F: Fn(&Self, u32) + 'static>( &self, f: F ) -> SignalHandlerId

source

fn connect_failed_to_find_text<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId

source

fn connect_found_text<F: Fn(&Self, u32) + 'static>( &self, f: F ) -> SignalHandlerId

source

fn connect_max_match_count_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId

source

fn connect_options_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId

source

fn connect_text_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId

Object Safety§

This trait is not object safe.

Implementors§