1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465
// This file was generated by gir (https://github.com/gtk-rs/gir)
// from
// from gir-files (https://github.com/gtk-rs/gir-files)
// DO NOT EDIT
use glib::{
prelude::*,
signal::{connect_raw, SignalHandlerId},
translate::*,
};
use std::{boxed::Box as Box_, fmt, mem::transmute};
glib::wrapper! {
///
///
/// ## Properties
///
///
/// #### `at-word-boundaries`
/// If [`true`], a search match must start and end a word. The match can
/// span multiple words.
///
/// Readable | Writeable | Construct
///
///
/// #### `case-sensitive`
/// Whether the search is case sensitive.
///
/// Readable | Writeable | Construct
///
///
/// #### `regex-enabled`
/// Search by regular expressions with
/// [`search-text`][struct@crate::SearchSettings#search-text] as the pattern.
///
/// Readable | Writeable | Construct
///
///
/// #### `search-text`
/// A search string, or [`None`] if the search is disabled. If the regular
/// expression search is enabled, [`search-text`][struct@crate::SearchSettings#search-text] is
/// the pattern.
///
/// Readable | Writeable | Construct
///
///
/// #### `wrap-around`
/// For a forward search, continue at the beginning of the buffer if no
/// search occurrence is found. For a backward search, continue at the
/// end of the buffer.
///
/// Readable | Writeable | Construct
///
/// # Implements
///
/// [`SearchSettingsExt`][trait@crate::prelude::SearchSettingsExt]
#[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;
/// Creates a new search settings object.
///
/// # Returns
///
/// a new search settings object.
#[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()) }
}
// rustdoc-stripper-ignore-next
/// Creates a new builder-pattern struct instance to construct [`SearchSettings`] objects.
///
/// This method returns an instance of [`SearchSettingsBuilder`](crate::builders::SearchSettingsBuilder) which can be used to create [`SearchSettings`] objects.
pub fn builder() -> SearchSettingsBuilder {
SearchSettingsBuilder::new()
}
}
impl Default for SearchSettings {
fn default() -> Self {
Self::new()
}
}
// rustdoc-stripper-ignore-next
/// A [builder-pattern] type to construct [`SearchSettings`] objects.
///
/// [builder-pattern]: https://doc.rust-lang.org/1.0.0/style/ownership/builders.html
#[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(),
}
}
/// If [`true`], a search match must start and end a word. The match can
/// span multiple words.
pub fn at_word_boundaries(self, at_word_boundaries: bool) -> Self {
Self {
builder: self
.builder
.property("at-word-boundaries", at_word_boundaries),
}
}
/// Whether the search is case sensitive.
pub fn case_sensitive(self, case_sensitive: bool) -> Self {
Self {
builder: self.builder.property("case-sensitive", case_sensitive),
}
}
/// Search by regular expressions with
/// [`search-text`][struct@crate::SearchSettings#search-text] as the pattern.
pub fn regex_enabled(self, regex_enabled: bool) -> Self {
Self {
builder: self.builder.property("regex-enabled", regex_enabled),
}
}
/// A search string, or [`None`] if the search is disabled. If the regular
/// expression search is enabled, [`search-text`][struct@crate::SearchSettings#search-text] is
/// the pattern.
pub fn search_text(self, search_text: impl Into<glib::GString>) -> Self {
Self {
builder: self.builder.property("search-text", search_text.into()),
}
}
/// For a forward search, continue at the beginning of the buffer if no
/// search occurrence is found. For a backward search, continue at the
/// end of the buffer.
pub fn wrap_around(self, wrap_around: bool) -> Self {
Self {
builder: self.builder.property("wrap-around", wrap_around),
}
}
// rustdoc-stripper-ignore-next
/// Build the [`SearchSettings`].
#[must_use = "Building the object from the builder is usually expensive and is not expected to have side effects"]
pub fn build(self) -> SearchSettings {
self.builder.build()
}
}
mod sealed {
pub trait Sealed {}
impl<T: super::IsA<super::SearchSettings>> Sealed for T {}
}
/// Trait containing all [`struct@SearchSettings`] methods.
///
/// # Implementors
///
/// [`SearchSettings`][struct@crate::SearchSettings]
pub trait SearchSettingsExt: IsA<SearchSettings> + sealed::Sealed + 'static {
///
/// # Returns
///
/// whether to search at word boundaries.
#[doc(alias = "gtk_source_search_settings_get_at_word_boundaries")]
#[doc(alias = "get_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,
))
}
}
///
/// # Returns
///
/// whether the search is case sensitive.
#[doc(alias = "gtk_source_search_settings_get_case_sensitive")]
#[doc(alias = "get_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,
))
}
}
///
/// # Returns
///
/// whether to search by regular expressions.
#[doc(alias = "gtk_source_search_settings_get_regex_enabled")]
#[doc(alias = "get_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,
))
}
}
/// Gets the text to search. The return value must not be freed.
///
/// You may be interested to call `gtk_source_utils_escape_search_text()` after
/// this function.
///
/// # Returns
///
/// the text to search, or [`None`] if the search is disabled.
#[doc(alias = "gtk_source_search_settings_get_search_text")]
#[doc(alias = "get_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,
))
}
}
///
/// # Returns
///
/// whether to wrap around the search.
#[doc(alias = "gtk_source_search_settings_get_wrap_around")]
#[doc(alias = "get_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,
))
}
}
/// Change whether the search is done at word boundaries. If `at_word_boundaries`
/// is [`true`], a search match must start and end a word. The match can span
/// multiple words. See also [`gtk::TextIter::starts_word()`][crate::gtk::TextIter::starts_word()] and
/// [`gtk::TextIter::ends_word()`][crate::gtk::TextIter::ends_word()].
/// ## `at_word_boundaries`
/// the setting.
#[doc(alias = "gtk_source_search_settings_set_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(),
);
}
}
/// Enables or disables the case sensitivity for the search.
/// ## `case_sensitive`
/// the setting.
#[doc(alias = "gtk_source_search_settings_set_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(),
);
}
}
/// Enables or disables whether to search by regular expressions.
/// If enabled, the [`search-text`][struct@crate::SearchSettings#search-text] property contains the
/// pattern of the regular expression.
///
/// [`SearchContext`][crate::SearchContext] uses `GRegex` when regex search is enabled. See the
/// [Regular expression syntax](https://developer.gnome.org/glib/stable/glib-regex-syntax.html)
/// page in the GLib reference manual.
/// ## `regex_enabled`
/// the setting.
#[doc(alias = "gtk_source_search_settings_set_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(),
);
}
}
/// Sets the text to search. If `search_text` is [`None`] or is empty, the search
/// will be disabled. A copy of `search_text` will be made, so you can safely free
/// `search_text` after a call to this function.
///
/// You may be interested to call `gtk_source_utils_unescape_search_text()` before
/// this function.
/// ## `search_text`
/// the nul-terminated text to search, or [`None`] to disable the search.
#[doc(alias = "gtk_source_search_settings_set_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,
);
}
}
/// Enables or disables the wrap around search. If `wrap_around` is [`true`], the
/// forward search continues at the beginning of the buffer if no search
/// occurrences are found. Similarly, the backward search continues to search at
/// the end of the buffer.
/// ## `wrap_around`
/// the setting.
#[doc(alias = "gtk_source_search_settings_set_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,
) {
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 _,
b"notify::at-word-boundaries\0".as_ptr() as *const _,
Some(transmute::<_, 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,
) {
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 _,
b"notify::case-sensitive\0".as_ptr() as *const _,
Some(transmute::<_, 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,
) {
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 _,
b"notify::regex-enabled\0".as_ptr() as *const _,
Some(transmute::<_, 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,
) {
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 _,
b"notify::search-text\0".as_ptr() as *const _,
Some(transmute::<_, unsafe extern "C" fn()>(
notify_search_text_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,
) {
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 _,
b"notify::wrap-around\0".as_ptr() as *const _,
Some(transmute::<_, unsafe extern "C" fn()>(
notify_wrap_around_trampoline::<Self, F> as *const (),
)),
Box_::into_raw(f),
)
}
}
}
impl<O: IsA<SearchSettings>> SearchSettingsExt for O {}
impl fmt::Display for SearchSettings {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
f.write_str("SearchSettings")
}
}