use crate::ffi;
use glib::{
prelude::*,
signal::{SignalHandlerId, connect_raw},
translate::*,
};
use std::boxed::Box as Box_;
glib::wrapper! {
#[doc(alias = "GtkSourceSearchSettings")]
pub struct SearchSettings(Object<ffi::GtkSourceSearchSettings, ffi::GtkSourceSearchSettingsClass>);
match fn {
type_ => || ffi::gtk_source_search_settings_get_type(),
}
}
impl SearchSettings {
pub const NONE: Option<&'static SearchSettings> = None;
#[doc(alias = "gtk_source_search_settings_new")]
pub fn new() -> SearchSettings {
assert_initialized_main_thread!();
unsafe { from_glib_full(ffi::gtk_source_search_settings_new()) }
}
pub fn builder() -> SearchSettingsBuilder {
SearchSettingsBuilder::new()
}
}
impl Default for SearchSettings {
fn default() -> Self {
Self::new()
}
}
#[must_use = "The builder must be built to be used"]
pub struct SearchSettingsBuilder {
builder: glib::object::ObjectBuilder<'static, SearchSettings>,
}
impl SearchSettingsBuilder {
fn new() -> Self {
Self {
builder: glib::object::Object::builder(),
}
}
pub fn at_word_boundaries(self, at_word_boundaries: bool) -> Self {
Self {
builder: self
.builder
.property("at-word-boundaries", at_word_boundaries),
}
}
pub fn case_sensitive(self, case_sensitive: bool) -> Self {
Self {
builder: self.builder.property("case-sensitive", case_sensitive),
}
}
pub fn regex_enabled(self, regex_enabled: bool) -> Self {
Self {
builder: self.builder.property("regex-enabled", regex_enabled),
}
}
pub fn search_text(self, search_text: impl Into<glib::GString>) -> Self {
Self {
builder: self.builder.property("search-text", search_text.into()),
}
}
#[cfg(feature = "v5_12")]
#[cfg_attr(docsrs, doc(cfg(feature = "v5_12")))]
pub fn visible_only(self, visible_only: bool) -> Self {
Self {
builder: self.builder.property("visible-only", visible_only),
}
}
pub fn wrap_around(self, wrap_around: bool) -> Self {
Self {
builder: self.builder.property("wrap-around", wrap_around),
}
}
#[must_use = "Building the object from the builder is usually expensive and is not expected to have side effects"]
pub fn build(self) -> SearchSettings {
assert_initialized_main_thread!();
self.builder.build()
}
}
pub trait SearchSettingsExt: IsA<SearchSettings> + 'static {
#[doc(alias = "gtk_source_search_settings_get_at_word_boundaries")]
#[doc(alias = "get_at_word_boundaries")]
#[doc(alias = "at-word-boundaries")]
fn is_at_word_boundaries(&self) -> bool {
unsafe {
from_glib(ffi::gtk_source_search_settings_get_at_word_boundaries(
self.as_ref().to_glib_none().0,
))
}
}
#[doc(alias = "gtk_source_search_settings_get_case_sensitive")]
#[doc(alias = "get_case_sensitive")]
#[doc(alias = "case-sensitive")]
fn is_case_sensitive(&self) -> bool {
unsafe {
from_glib(ffi::gtk_source_search_settings_get_case_sensitive(
self.as_ref().to_glib_none().0,
))
}
}
#[doc(alias = "gtk_source_search_settings_get_regex_enabled")]
#[doc(alias = "get_regex_enabled")]
#[doc(alias = "regex-enabled")]
fn is_regex_enabled(&self) -> bool {
unsafe {
from_glib(ffi::gtk_source_search_settings_get_regex_enabled(
self.as_ref().to_glib_none().0,
))
}
}
#[doc(alias = "gtk_source_search_settings_get_search_text")]
#[doc(alias = "get_search_text")]
#[doc(alias = "search-text")]
fn search_text(&self) -> Option<glib::GString> {
unsafe {
from_glib_none(ffi::gtk_source_search_settings_get_search_text(
self.as_ref().to_glib_none().0,
))
}
}
#[cfg(feature = "v5_12")]
#[cfg_attr(docsrs, doc(cfg(feature = "v5_12")))]
#[doc(alias = "gtk_source_search_settings_get_visible_only")]
#[doc(alias = "get_visible_only")]
#[doc(alias = "visible-only")]
fn is_visible_only(&self) -> bool {
unsafe {
from_glib(ffi::gtk_source_search_settings_get_visible_only(
self.as_ref().to_glib_none().0,
))
}
}
#[doc(alias = "gtk_source_search_settings_get_wrap_around")]
#[doc(alias = "get_wrap_around")]
#[doc(alias = "wrap-around")]
fn wraps_around(&self) -> bool {
unsafe {
from_glib(ffi::gtk_source_search_settings_get_wrap_around(
self.as_ref().to_glib_none().0,
))
}
}
#[doc(alias = "gtk_source_search_settings_set_at_word_boundaries")]
#[doc(alias = "at-word-boundaries")]
fn set_at_word_boundaries(&self, at_word_boundaries: bool) {
unsafe {
ffi::gtk_source_search_settings_set_at_word_boundaries(
self.as_ref().to_glib_none().0,
at_word_boundaries.into_glib(),
);
}
}
#[doc(alias = "gtk_source_search_settings_set_case_sensitive")]
#[doc(alias = "case-sensitive")]
fn set_case_sensitive(&self, case_sensitive: bool) {
unsafe {
ffi::gtk_source_search_settings_set_case_sensitive(
self.as_ref().to_glib_none().0,
case_sensitive.into_glib(),
);
}
}
#[doc(alias = "gtk_source_search_settings_set_regex_enabled")]
#[doc(alias = "regex-enabled")]
fn set_regex_enabled(&self, regex_enabled: bool) {
unsafe {
ffi::gtk_source_search_settings_set_regex_enabled(
self.as_ref().to_glib_none().0,
regex_enabled.into_glib(),
);
}
}
#[doc(alias = "gtk_source_search_settings_set_search_text")]
#[doc(alias = "search-text")]
fn set_search_text(&self, search_text: Option<&str>) {
unsafe {
ffi::gtk_source_search_settings_set_search_text(
self.as_ref().to_glib_none().0,
search_text.to_glib_none().0,
);
}
}
#[cfg(feature = "v5_12")]
#[cfg_attr(docsrs, doc(cfg(feature = "v5_12")))]
#[doc(alias = "gtk_source_search_settings_set_visible_only")]
#[doc(alias = "visible-only")]
fn set_visible_only(&self, visible_only: bool) {
unsafe {
ffi::gtk_source_search_settings_set_visible_only(
self.as_ref().to_glib_none().0,
visible_only.into_glib(),
);
}
}
#[doc(alias = "gtk_source_search_settings_set_wrap_around")]
#[doc(alias = "wrap-around")]
fn set_wrap_around(&self, wrap_around: bool) {
unsafe {
ffi::gtk_source_search_settings_set_wrap_around(
self.as_ref().to_glib_none().0,
wrap_around.into_glib(),
);
}
}
#[doc(alias = "at-word-boundaries")]
fn connect_at_word_boundaries_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe extern "C" fn notify_at_word_boundaries_trampoline<
P: IsA<SearchSettings>,
F: Fn(&P) + 'static,
>(
this: *mut ffi::GtkSourceSearchSettings,
_param_spec: glib::ffi::gpointer,
f: glib::ffi::gpointer,
) {
unsafe {
let f: &F = &*(f as *const F);
f(SearchSettings::from_glib_borrow(this).unsafe_cast_ref())
}
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(
self.as_ptr() as *mut _,
c"notify::at-word-boundaries".as_ptr(),
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_at_word_boundaries_trampoline::<Self, F> as *const (),
)),
Box_::into_raw(f),
)
}
}
#[doc(alias = "case-sensitive")]
fn connect_case_sensitive_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe extern "C" fn notify_case_sensitive_trampoline<
P: IsA<SearchSettings>,
F: Fn(&P) + 'static,
>(
this: *mut ffi::GtkSourceSearchSettings,
_param_spec: glib::ffi::gpointer,
f: glib::ffi::gpointer,
) {
unsafe {
let f: &F = &*(f as *const F);
f(SearchSettings::from_glib_borrow(this).unsafe_cast_ref())
}
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(
self.as_ptr() as *mut _,
c"notify::case-sensitive".as_ptr(),
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_case_sensitive_trampoline::<Self, F> as *const (),
)),
Box_::into_raw(f),
)
}
}
#[doc(alias = "regex-enabled")]
fn connect_regex_enabled_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe extern "C" fn notify_regex_enabled_trampoline<
P: IsA<SearchSettings>,
F: Fn(&P) + 'static,
>(
this: *mut ffi::GtkSourceSearchSettings,
_param_spec: glib::ffi::gpointer,
f: glib::ffi::gpointer,
) {
unsafe {
let f: &F = &*(f as *const F);
f(SearchSettings::from_glib_borrow(this).unsafe_cast_ref())
}
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(
self.as_ptr() as *mut _,
c"notify::regex-enabled".as_ptr(),
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_regex_enabled_trampoline::<Self, F> as *const (),
)),
Box_::into_raw(f),
)
}
}
#[doc(alias = "search-text")]
fn connect_search_text_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe extern "C" fn notify_search_text_trampoline<
P: IsA<SearchSettings>,
F: Fn(&P) + 'static,
>(
this: *mut ffi::GtkSourceSearchSettings,
_param_spec: glib::ffi::gpointer,
f: glib::ffi::gpointer,
) {
unsafe {
let f: &F = &*(f as *const F);
f(SearchSettings::from_glib_borrow(this).unsafe_cast_ref())
}
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(
self.as_ptr() as *mut _,
c"notify::search-text".as_ptr(),
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_search_text_trampoline::<Self, F> as *const (),
)),
Box_::into_raw(f),
)
}
}
#[cfg(feature = "v5_12")]
#[cfg_attr(docsrs, doc(cfg(feature = "v5_12")))]
#[doc(alias = "visible-only")]
fn connect_visible_only_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe extern "C" fn notify_visible_only_trampoline<
P: IsA<SearchSettings>,
F: Fn(&P) + 'static,
>(
this: *mut ffi::GtkSourceSearchSettings,
_param_spec: glib::ffi::gpointer,
f: glib::ffi::gpointer,
) {
unsafe {
let f: &F = &*(f as *const F);
f(SearchSettings::from_glib_borrow(this).unsafe_cast_ref())
}
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(
self.as_ptr() as *mut _,
c"notify::visible-only".as_ptr(),
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_visible_only_trampoline::<Self, F> as *const (),
)),
Box_::into_raw(f),
)
}
}
#[doc(alias = "wrap-around")]
fn connect_wrap_around_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
unsafe extern "C" fn notify_wrap_around_trampoline<
P: IsA<SearchSettings>,
F: Fn(&P) + 'static,
>(
this: *mut ffi::GtkSourceSearchSettings,
_param_spec: glib::ffi::gpointer,
f: glib::ffi::gpointer,
) {
unsafe {
let f: &F = &*(f as *const F);
f(SearchSettings::from_glib_borrow(this).unsafe_cast_ref())
}
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(
self.as_ptr() as *mut _,
c"notify::wrap-around".as_ptr(),
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
notify_wrap_around_trampoline::<Self, F> as *const (),
)),
Box_::into_raw(f),
)
}
}
}
impl<O: IsA<SearchSettings>> SearchSettingsExt for O {}