[][src]Trait sourceview::SearchSettingsExt

pub trait SearchSettingsExt: 'static {
    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

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

Loading content...

Implementors

impl<O: IsA<SearchSettings>> SearchSettingsExt for O[src]

Loading content...