libadwaita/auto/
toggle.rs

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
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
// This file was generated by gir (https://github.com/gtk-rs/gir)
// from
// from gir-files (https://github.com/gtk-rs/gir-files.git)
// DO NOT EDIT

use crate::ffi;
use glib::{
    prelude::*,
    signal::{connect_raw, SignalHandlerId},
    translate::*,
};
use std::boxed::Box as Box_;

glib::wrapper! {
    /// A toggle within [`ToggleGroup`][crate::ToggleGroup].
    ///
    /// [`Toggle`][crate::Toggle] can optionally have a name, set with [`name`][struct@crate::Toggle#name].
    /// If the name is set, [`active-name`][struct@crate::ToggleGroup#active-name] can be used to access
    /// toggles instead of index.
    ///
    /// ## Properties
    ///
    ///
    /// #### `child`
    ///  The toggle child.
    ///
    /// When the child is set, icon and label are not displayed.
    ///
    /// It's recommended to still set the label, as it can still be used by the
    /// screen reader.
    ///
    /// Readable | Writeable
    ///
    ///
    /// #### `enabled`
    ///  Whether this toggle is enabled.
    ///
    /// Readable | Writeable
    ///
    ///
    /// #### `icon-name`
    ///  The toggle icon name.
    ///
    /// The icon will be displayed alone or next to the label, unless
    /// [`child`][struct@crate::Toggle#child] is set.
    ///
    /// Readable | Writeable
    ///
    ///
    /// #### `label`
    ///  The toggle label.
    ///
    /// The label will be displayed alone or next to the icon, unless
    /// [`child`][struct@crate::Toggle#child] is set, but will stil be read out by the screen
    /// reader.
    ///
    /// Readable | Writeable
    ///
    ///
    /// #### `name`
    ///  The toggle name.
    ///
    /// Allows accessing the toggle by its name instead of index.
    ///
    /// See [`active-name`][struct@crate::ToggleGroup#active-name].
    ///
    /// Readable | Writeable
    ///
    ///
    /// #### `tooltip`
    ///  The tooltip of the toggle.
    ///
    /// The tooltip can be marked up with the Pango text markup language.
    ///
    /// Readable | Writeable
    ///
    ///
    /// #### `use-underline`
    ///  Whether an embedded underline in the label indicates a mnemonic.
    ///
    /// See [`label`][struct@crate::Toggle#label].
    ///
    /// Readable | Writeable
    ///
    /// # Implements
    ///
    /// [`trait@glib::ObjectExt`]
    #[doc(alias = "AdwToggle")]
    pub struct Toggle(Object<ffi::AdwToggle, ffi::AdwToggleClass>);

    match fn {
        type_ => || ffi::adw_toggle_get_type(),
    }
}

impl Toggle {
    /// Creates a new [`Toggle`][crate::Toggle].
    ///
    /// # Returns
    ///
    /// the newly created [`Toggle`][crate::Toggle]
    #[doc(alias = "adw_toggle_new")]
    pub fn new() -> Toggle {
        assert_initialized_main_thread!();
        unsafe { from_glib_full(ffi::adw_toggle_new()) }
    }

    // rustdoc-stripper-ignore-next
    /// Creates a new builder-pattern struct instance to construct [`Toggle`] objects.
    ///
    /// This method returns an instance of [`ToggleBuilder`](crate::builders::ToggleBuilder) which can be used to create [`Toggle`] objects.
    pub fn builder() -> ToggleBuilder {
        ToggleBuilder::new()
    }

    /// Gets the child widget of @self.
    ///
    /// # Returns
    ///
    /// the toggle child
    #[doc(alias = "adw_toggle_get_child")]
    #[doc(alias = "get_child")]
    pub fn child(&self) -> Option<gtk::Widget> {
        unsafe { from_glib_none(ffi::adw_toggle_get_child(self.to_glib_none().0)) }
    }

    /// Gets whether @self is enabled.
    ///
    /// # Returns
    ///
    /// whether the toggle is enabled
    #[doc(alias = "adw_toggle_get_enabled")]
    #[doc(alias = "get_enabled")]
    #[doc(alias = "enabled")]
    pub fn is_enabled(&self) -> bool {
        unsafe { from_glib(ffi::adw_toggle_get_enabled(self.to_glib_none().0)) }
    }

    /// Gets the icon name of @self.
    ///
    /// # Returns
    ///
    /// the toggle icon name
    #[doc(alias = "adw_toggle_get_icon_name")]
    #[doc(alias = "get_icon_name")]
    #[doc(alias = "icon-name")]
    pub fn icon_name(&self) -> Option<glib::GString> {
        unsafe { from_glib_none(ffi::adw_toggle_get_icon_name(self.to_glib_none().0)) }
    }

    /// Gets the index of @self within its toggle group.
    ///
    /// # Returns
    ///
    /// the index, or `GTK_INVALID_LIST_POSITION` if it's not in a group
    #[doc(alias = "adw_toggle_get_index")]
    #[doc(alias = "get_index")]
    pub fn index(&self) -> u32 {
        unsafe { ffi::adw_toggle_get_index(self.to_glib_none().0) }
    }

    /// Gets the label of @self.
    ///
    /// # Returns
    ///
    /// the toggle label
    #[doc(alias = "adw_toggle_get_label")]
    #[doc(alias = "get_label")]
    pub fn label(&self) -> Option<glib::GString> {
        unsafe { from_glib_none(ffi::adw_toggle_get_label(self.to_glib_none().0)) }
    }

    /// Gets the name of @self.
    ///
    /// # Returns
    ///
    /// the toggle name
    #[doc(alias = "adw_toggle_get_name")]
    #[doc(alias = "get_name")]
    pub fn name(&self) -> glib::GString {
        unsafe { from_glib_none(ffi::adw_toggle_get_name(self.to_glib_none().0)) }
    }

    /// Gets the tooltip of @self.
    ///
    /// # Returns
    ///
    /// the toggle tooltip
    #[doc(alias = "adw_toggle_get_tooltip")]
    #[doc(alias = "get_tooltip")]
    pub fn tooltip(&self) -> glib::GString {
        unsafe { from_glib_none(ffi::adw_toggle_get_tooltip(self.to_glib_none().0)) }
    }

    /// Gets whether @self uses underlines.
    ///
    /// # Returns
    ///
    /// whether the toggle uses underlines
    #[doc(alias = "adw_toggle_get_use_underline")]
    #[doc(alias = "get_use_underline")]
    #[doc(alias = "use-underline")]
    pub fn uses_underline(&self) -> bool {
        unsafe { from_glib(ffi::adw_toggle_get_use_underline(self.to_glib_none().0)) }
    }

    /// Sets the child of @self to @child.
    ///
    /// When the child is set, icon and label are not displayed.
    ///
    /// It's recommended to still set the label, as it can still be used by the
    /// screen reader.
    /// ## `child`
    /// a child widget
    #[doc(alias = "adw_toggle_set_child")]
    #[doc(alias = "child")]
    pub fn set_child(&self, child: Option<&impl IsA<gtk::Widget>>) {
        unsafe {
            ffi::adw_toggle_set_child(
                self.to_glib_none().0,
                child.map(|p| p.as_ref()).to_glib_none().0,
            );
        }
    }

    /// Sets whether @self is enabled.
    /// ## `enabled`
    /// whether the toggle should be enbled
    #[doc(alias = "adw_toggle_set_enabled")]
    #[doc(alias = "enabled")]
    pub fn set_enabled(&self, enabled: bool) {
        unsafe {
            ffi::adw_toggle_set_enabled(self.to_glib_none().0, enabled.into_glib());
        }
    }

    /// Sets the icon name of @self to @icon_name.
    ///
    /// The icon will be displayed alone or next to the label, unless
    /// [`child`][struct@crate::Toggle#child] is set.
    /// ## `icon_name`
    /// the icon name
    #[doc(alias = "adw_toggle_set_icon_name")]
    #[doc(alias = "icon-name")]
    pub fn set_icon_name(&self, icon_name: Option<&str>) {
        unsafe {
            ffi::adw_toggle_set_icon_name(self.to_glib_none().0, icon_name.to_glib_none().0);
        }
    }

    /// Sets the label of @self to @label.
    ///
    /// The label will be displayed alone or next to the icon, unless
    /// [`child`][struct@crate::Toggle#child] is set, but will stil be read out by the screen
    /// reader.
    /// ## `label`
    /// a label
    #[doc(alias = "adw_toggle_set_label")]
    #[doc(alias = "label")]
    pub fn set_label(&self, label: Option<&str>) {
        unsafe {
            ffi::adw_toggle_set_label(self.to_glib_none().0, label.to_glib_none().0);
        }
    }

    /// Sets the name of @self to @name.
    ///
    /// Allows accessing @self by its name instead of index.
    ///
    /// See [`active-name`][struct@crate::ToggleGroup#active-name].
    /// ## `name`
    /// a name
    #[doc(alias = "adw_toggle_set_name")]
    #[doc(alias = "name")]
    pub fn set_name(&self, name: Option<&str>) {
        unsafe {
            ffi::adw_toggle_set_name(self.to_glib_none().0, name.to_glib_none().0);
        }
    }

    /// Sets the tooltip of @self to @tooltip.
    ///
    /// @tooltip can be marked up with the Pango text markup language.
    /// ## `tooltip`
    /// the tooltip
    #[doc(alias = "adw_toggle_set_tooltip")]
    #[doc(alias = "tooltip")]
    pub fn set_tooltip(&self, tooltip: &str) {
        unsafe {
            ffi::adw_toggle_set_tooltip(self.to_glib_none().0, tooltip.to_glib_none().0);
        }
    }

    /// Sets whether an embedded underline in the label indicates a mnemonic.
    ///
    /// See [`label`][struct@crate::Toggle#label].
    /// ## `use_underline`
    /// whether an underline in the label indicates a mnemonic
    #[doc(alias = "adw_toggle_set_use_underline")]
    #[doc(alias = "use-underline")]
    pub fn set_use_underline(&self, use_underline: bool) {
        unsafe {
            ffi::adw_toggle_set_use_underline(self.to_glib_none().0, use_underline.into_glib());
        }
    }

    #[cfg(feature = "v1_7")]
    #[cfg_attr(docsrs, doc(cfg(feature = "v1_7")))]
    #[doc(alias = "child")]
    pub fn connect_child_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
        unsafe extern "C" fn notify_child_trampoline<F: Fn(&Toggle) + 'static>(
            this: *mut ffi::AdwToggle,
            _param_spec: glib::ffi::gpointer,
            f: glib::ffi::gpointer,
        ) {
            let f: &F = &*(f as *const F);
            f(&from_glib_borrow(this))
        }
        unsafe {
            let f: Box_<F> = Box_::new(f);
            connect_raw(
                self.as_ptr() as *mut _,
                b"notify::child\0".as_ptr() as *const _,
                Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
                    notify_child_trampoline::<F> as *const (),
                )),
                Box_::into_raw(f),
            )
        }
    }

    #[cfg(feature = "v1_7")]
    #[cfg_attr(docsrs, doc(cfg(feature = "v1_7")))]
    #[doc(alias = "enabled")]
    pub fn connect_enabled_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
        unsafe extern "C" fn notify_enabled_trampoline<F: Fn(&Toggle) + 'static>(
            this: *mut ffi::AdwToggle,
            _param_spec: glib::ffi::gpointer,
            f: glib::ffi::gpointer,
        ) {
            let f: &F = &*(f as *const F);
            f(&from_glib_borrow(this))
        }
        unsafe {
            let f: Box_<F> = Box_::new(f);
            connect_raw(
                self.as_ptr() as *mut _,
                b"notify::enabled\0".as_ptr() as *const _,
                Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
                    notify_enabled_trampoline::<F> as *const (),
                )),
                Box_::into_raw(f),
            )
        }
    }

    #[cfg(feature = "v1_7")]
    #[cfg_attr(docsrs, doc(cfg(feature = "v1_7")))]
    #[doc(alias = "icon-name")]
    pub fn connect_icon_name_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
        unsafe extern "C" fn notify_icon_name_trampoline<F: Fn(&Toggle) + 'static>(
            this: *mut ffi::AdwToggle,
            _param_spec: glib::ffi::gpointer,
            f: glib::ffi::gpointer,
        ) {
            let f: &F = &*(f as *const F);
            f(&from_glib_borrow(this))
        }
        unsafe {
            let f: Box_<F> = Box_::new(f);
            connect_raw(
                self.as_ptr() as *mut _,
                b"notify::icon-name\0".as_ptr() as *const _,
                Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
                    notify_icon_name_trampoline::<F> as *const (),
                )),
                Box_::into_raw(f),
            )
        }
    }

    #[cfg(feature = "v1_7")]
    #[cfg_attr(docsrs, doc(cfg(feature = "v1_7")))]
    #[doc(alias = "label")]
    pub fn connect_label_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
        unsafe extern "C" fn notify_label_trampoline<F: Fn(&Toggle) + 'static>(
            this: *mut ffi::AdwToggle,
            _param_spec: glib::ffi::gpointer,
            f: glib::ffi::gpointer,
        ) {
            let f: &F = &*(f as *const F);
            f(&from_glib_borrow(this))
        }
        unsafe {
            let f: Box_<F> = Box_::new(f);
            connect_raw(
                self.as_ptr() as *mut _,
                b"notify::label\0".as_ptr() as *const _,
                Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
                    notify_label_trampoline::<F> as *const (),
                )),
                Box_::into_raw(f),
            )
        }
    }

    #[cfg(feature = "v1_7")]
    #[cfg_attr(docsrs, doc(cfg(feature = "v1_7")))]
    #[doc(alias = "name")]
    pub fn connect_name_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
        unsafe extern "C" fn notify_name_trampoline<F: Fn(&Toggle) + 'static>(
            this: *mut ffi::AdwToggle,
            _param_spec: glib::ffi::gpointer,
            f: glib::ffi::gpointer,
        ) {
            let f: &F = &*(f as *const F);
            f(&from_glib_borrow(this))
        }
        unsafe {
            let f: Box_<F> = Box_::new(f);
            connect_raw(
                self.as_ptr() as *mut _,
                b"notify::name\0".as_ptr() as *const _,
                Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
                    notify_name_trampoline::<F> as *const (),
                )),
                Box_::into_raw(f),
            )
        }
    }

    #[cfg(feature = "v1_7")]
    #[cfg_attr(docsrs, doc(cfg(feature = "v1_7")))]
    #[doc(alias = "tooltip")]
    pub fn connect_tooltip_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
        unsafe extern "C" fn notify_tooltip_trampoline<F: Fn(&Toggle) + 'static>(
            this: *mut ffi::AdwToggle,
            _param_spec: glib::ffi::gpointer,
            f: glib::ffi::gpointer,
        ) {
            let f: &F = &*(f as *const F);
            f(&from_glib_borrow(this))
        }
        unsafe {
            let f: Box_<F> = Box_::new(f);
            connect_raw(
                self.as_ptr() as *mut _,
                b"notify::tooltip\0".as_ptr() as *const _,
                Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
                    notify_tooltip_trampoline::<F> as *const (),
                )),
                Box_::into_raw(f),
            )
        }
    }

    #[cfg(feature = "v1_7")]
    #[cfg_attr(docsrs, doc(cfg(feature = "v1_7")))]
    #[doc(alias = "use-underline")]
    pub fn connect_use_underline_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
        unsafe extern "C" fn notify_use_underline_trampoline<F: Fn(&Toggle) + 'static>(
            this: *mut ffi::AdwToggle,
            _param_spec: glib::ffi::gpointer,
            f: glib::ffi::gpointer,
        ) {
            let f: &F = &*(f as *const F);
            f(&from_glib_borrow(this))
        }
        unsafe {
            let f: Box_<F> = Box_::new(f);
            connect_raw(
                self.as_ptr() as *mut _,
                b"notify::use-underline\0".as_ptr() as *const _,
                Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
                    notify_use_underline_trampoline::<F> as *const (),
                )),
                Box_::into_raw(f),
            )
        }
    }
}

#[cfg(feature = "v1_7")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_7")))]
impl Default for Toggle {
    fn default() -> Self {
        Self::new()
    }
}

impl std::fmt::Display for Toggle {
    #[inline]
    fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
        f.write_str(&self.name())
    }
}

// rustdoc-stripper-ignore-next
/// A [builder-pattern] type to construct [`Toggle`] 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 ToggleBuilder {
    builder: glib::object::ObjectBuilder<'static, Toggle>,
}

impl ToggleBuilder {
    fn new() -> Self {
        Self {
            builder: glib::object::Object::builder(),
        }
    }

    /// The toggle child.
    ///
    /// When the child is set, icon and label are not displayed.
    ///
    /// It's recommended to still set the label, as it can still be used by the
    /// screen reader.
    #[cfg(feature = "v1_7")]
    #[cfg_attr(docsrs, doc(cfg(feature = "v1_7")))]
    pub fn child(self, child: &impl IsA<gtk::Widget>) -> Self {
        Self {
            builder: self.builder.property("child", child.clone().upcast()),
        }
    }

    /// Whether this toggle is enabled.
    #[cfg(feature = "v1_7")]
    #[cfg_attr(docsrs, doc(cfg(feature = "v1_7")))]
    pub fn enabled(self, enabled: bool) -> Self {
        Self {
            builder: self.builder.property("enabled", enabled),
        }
    }

    /// The toggle icon name.
    ///
    /// The icon will be displayed alone or next to the label, unless
    /// [`child`][struct@crate::Toggle#child] is set.
    #[cfg(feature = "v1_7")]
    #[cfg_attr(docsrs, doc(cfg(feature = "v1_7")))]
    pub fn icon_name(self, icon_name: impl Into<glib::GString>) -> Self {
        Self {
            builder: self.builder.property("icon-name", icon_name.into()),
        }
    }

    /// The toggle label.
    ///
    /// The label will be displayed alone or next to the icon, unless
    /// [`child`][struct@crate::Toggle#child] is set, but will stil be read out by the screen
    /// reader.
    #[cfg(feature = "v1_7")]
    #[cfg_attr(docsrs, doc(cfg(feature = "v1_7")))]
    pub fn label(self, label: impl Into<glib::GString>) -> Self {
        Self {
            builder: self.builder.property("label", label.into()),
        }
    }

    /// The toggle name.
    ///
    /// Allows accessing the toggle by its name instead of index.
    ///
    /// See [`active-name`][struct@crate::ToggleGroup#active-name].
    #[cfg(feature = "v1_7")]
    #[cfg_attr(docsrs, doc(cfg(feature = "v1_7")))]
    pub fn name(self, name: impl Into<glib::GString>) -> Self {
        Self {
            builder: self.builder.property("name", name.into()),
        }
    }

    /// The tooltip of the toggle.
    ///
    /// The tooltip can be marked up with the Pango text markup language.
    #[cfg(feature = "v1_7")]
    #[cfg_attr(docsrs, doc(cfg(feature = "v1_7")))]
    pub fn tooltip(self, tooltip: impl Into<glib::GString>) -> Self {
        Self {
            builder: self.builder.property("tooltip", tooltip.into()),
        }
    }

    /// Whether an embedded underline in the label indicates a mnemonic.
    ///
    /// See [`label`][struct@crate::Toggle#label].
    #[cfg(feature = "v1_7")]
    #[cfg_attr(docsrs, doc(cfg(feature = "v1_7")))]
    pub fn use_underline(self, use_underline: bool) -> Self {
        Self {
            builder: self.builder.property("use-underline", use_underline),
        }
    }

    // rustdoc-stripper-ignore-next
    /// Build the [`Toggle`].
    #[must_use = "Building the object from the builder is usually expensive and is not expected to have side effects"]
    pub fn build(self) -> Toggle {
        assert_initialized_main_thread!();
        self.builder.build()
    }
}