Trait SearchSettingsExt

Source
pub trait SearchSettingsExt: 'static {
Show 15 methods // Required methods fn get_at_word_boundaries(&self) -> bool; fn get_case_sensitive(&self) -> bool; fn get_regex_enabled(&self) -> bool; fn get_search_text(&self) -> Option<GString>; fn get_wrap_around(&self) -> bool; fn set_at_word_boundaries(&self, at_word_boundaries: bool); fn set_case_sensitive(&self, case_sensitive: bool); fn set_regex_enabled(&self, regex_enabled: bool); fn set_search_text(&self, search_text: Option<&str>); fn set_wrap_around(&self, wrap_around: bool); fn connect_property_at_word_boundaries_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId; fn connect_property_case_sensitive_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId; fn connect_property_regex_enabled_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId; fn connect_property_search_text_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId; fn connect_property_wrap_around_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId;
}

Required Methods§

Source

fn get_at_word_boundaries(&self) -> bool

Source

fn get_case_sensitive(&self) -> bool

Source

fn get_regex_enabled(&self) -> bool

Source

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

Source

fn get_wrap_around(&self) -> bool

Source

fn set_at_word_boundaries(&self, at_word_boundaries: bool)

Source

fn set_case_sensitive(&self, case_sensitive: bool)

Source

fn set_regex_enabled(&self, regex_enabled: bool)

Source

fn set_search_text(&self, search_text: Option<&str>)

Source

fn set_wrap_around(&self, wrap_around: bool)

Source

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

Source

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

Source

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

Source

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

Source

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

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§