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
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
// This file was generated by gir (https://github.com/gtk-rs/gir)
// from gir-files (https://github.com/gtk-rs/gir-files)
// DO NOT EDIT

use crate::FlapFoldPolicy;
use crate::FlapTransitionType;
use crate::Swipeable;
use glib::object::Cast;
use glib::object::IsA;
use glib::object::ObjectType as ObjectType_;
use glib::signal::connect_raw;
use glib::signal::SignalHandlerId;
use glib::translate::*;
use std::boxed::Box as Box_;
use std::fmt;
use std::mem::transmute;

glib::wrapper! {
    pub struct Flap(Object<ffi::HdyFlap, ffi::HdyFlapClass>) @extends gtk::Widget, @implements gtk::Accessible, gtk::Buildable, gtk::ConstraintTarget, gtk::Orientable, Swipeable;

    match fn {
        get_type => || ffi::hdy_flap_get_type(),
    }
}

impl Flap {
    /// Creates a new `Flap`.
    ///
    /// # Returns
    ///
    /// a new `Flap`
    #[doc(alias = "hdy_flap_new")]
    pub fn new() -> Flap {
        assert_initialized_main_thread!();
        unsafe { gtk::Widget::from_glib_none(ffi::hdy_flap_new()).unsafe_cast() }
    }

    /// Gets the content widget for `self`
    ///
    /// # Returns
    ///
    /// the content widget for `self`
    #[doc(alias = "hdy_flap_get_content")]
    pub fn get_content(&self) -> Option<gtk::Widget> {
        unsafe { from_glib_none(ffi::hdy_flap_get_content(self.to_glib_none().0)) }
    }

    /// Gets the flap widget for `self`
    ///
    /// # Returns
    ///
    /// the flap widget for `self`
    #[doc(alias = "hdy_flap_get_flap")]
    pub fn get_flap(&self) -> Option<gtk::Widget> {
        unsafe { from_glib_none(ffi::hdy_flap_get_flap(self.to_glib_none().0)) }
    }

    /// Gets the flap position for `self`.
    ///
    /// # Returns
    ///
    /// the flap position for `self`
    #[doc(alias = "hdy_flap_get_flap_position")]
    pub fn get_flap_position(&self) -> gtk::PackType {
        unsafe { from_glib(ffi::hdy_flap_get_flap_position(self.to_glib_none().0)) }
    }

    /// Returns the amount of time (in milliseconds) that fold transitions in `self`
    /// will take.
    ///
    /// # Returns
    ///
    /// the fold transition duration
    #[doc(alias = "hdy_flap_get_fold_duration")]
    pub fn get_fold_duration(&self) -> u32 {
        unsafe { ffi::hdy_flap_get_fold_duration(self.to_glib_none().0) }
    }

    /// Gets the current fold policy of `self`. See `Flap::set_fold_policy`.
    ///
    /// # Returns
    ///
    /// the current fold policy of `self`
    #[doc(alias = "hdy_flap_get_fold_policy")]
    pub fn get_fold_policy(&self) -> FlapFoldPolicy {
        unsafe { from_glib(ffi::hdy_flap_get_fold_policy(self.to_glib_none().0)) }
    }

    /// Gets whether `self` is currently folded.
    ///
    /// See `Flap:fold-policy`.
    ///
    /// # Returns
    ///
    /// `true` if `self` is currently folded, `false` otherwise
    #[doc(alias = "hdy_flap_get_folded")]
    pub fn get_folded(&self) -> bool {
        unsafe { from_glib(ffi::hdy_flap_get_folded(self.to_glib_none().0)) }
    }

    /// Gets whether `self` is locked.
    ///
    /// # Returns
    ///
    /// `true` if `self` is locked, `false` otherwise
    #[doc(alias = "hdy_flap_get_locked")]
    pub fn get_locked(&self) -> bool {
        unsafe { from_glib(ffi::hdy_flap_get_locked(self.to_glib_none().0)) }
    }

    /// Gets whether the `self` is modal. See `Flap::set_modal`.
    ///
    /// # Returns
    ///
    /// `true` if `self` is modal
    #[doc(alias = "hdy_flap_get_modal")]
    pub fn get_modal(&self) -> bool {
        unsafe { from_glib(ffi::hdy_flap_get_modal(self.to_glib_none().0)) }
    }

    /// Returns the amount of time (in milliseconds) that reveal transitions in `self`
    /// will take.
    ///
    /// # Returns
    ///
    /// the reveal transition duration
    #[doc(alias = "hdy_flap_get_reveal_duration")]
    pub fn get_reveal_duration(&self) -> u32 {
        unsafe { ffi::hdy_flap_get_reveal_duration(self.to_glib_none().0) }
    }

    /// Gets whether the flap widget is revealed for `self`.
    ///
    /// # Returns
    ///
    /// `true` if the flap widget is revealed, `false` otherwise.
    #[doc(alias = "hdy_flap_get_reveal_flap")]
    pub fn get_reveal_flap(&self) -> bool {
        unsafe { from_glib(ffi::hdy_flap_get_reveal_flap(self.to_glib_none().0)) }
    }

    /// Gets the current reveal transition progress for `self`. 0 means fully hidden,
    /// 1 means fully revealed. See `Flap:reveal-flap`.
    ///
    /// # Returns
    ///
    /// the current reveal progress for `self`
    #[doc(alias = "hdy_flap_get_reveal_progress")]
    pub fn get_reveal_progress(&self) -> f64 {
        unsafe { ffi::hdy_flap_get_reveal_progress(self.to_glib_none().0) }
    }

    /// Gets the separator widget for `self`.
    ///
    /// # Returns
    ///
    /// the separator widget for `self`
    #[doc(alias = "hdy_flap_get_separator")]
    pub fn get_separator(&self) -> Option<gtk::Widget> {
        unsafe { from_glib_none(ffi::hdy_flap_get_separator(self.to_glib_none().0)) }
    }

    /// Gets whether `self` can be closed with a swipe gesture.
    ///
    /// # Returns
    ///
    /// `true` if `self` can be closed with a swipe gesture
    #[doc(alias = "hdy_flap_get_swipe_to_close")]
    pub fn get_swipe_to_close(&self) -> bool {
        unsafe { from_glib(ffi::hdy_flap_get_swipe_to_close(self.to_glib_none().0)) }
    }

    /// Gets whether `self` can be opened with a swipe gesture.
    ///
    /// # Returns
    ///
    /// `true` if `self` can be opened with a swipe gesture
    #[doc(alias = "hdy_flap_get_swipe_to_open")]
    pub fn get_swipe_to_open(&self) -> bool {
        unsafe { from_glib(ffi::hdy_flap_get_swipe_to_open(self.to_glib_none().0)) }
    }

    /// Gets the type of animation that will be used for reveal and fold transitions
    /// in `self`.
    ///
    /// # Returns
    ///
    /// the current transition type of `self`
    #[doc(alias = "hdy_flap_get_transition_type")]
    pub fn get_transition_type(&self) -> FlapTransitionType {
        unsafe { from_glib(ffi::hdy_flap_get_transition_type(self.to_glib_none().0)) }
    }

    /// Sets the content widget for `self`, always displayed when unfolded, and
    /// partially visible when folded.
    /// ## `content`
    /// the content widget, or `None`
    #[doc(alias = "hdy_flap_set_content")]
    pub fn set_content<P: IsA<gtk::Widget>>(&self, content: Option<&P>) {
        unsafe {
            ffi::hdy_flap_set_content(
                self.to_glib_none().0,
                content.map(|p| p.as_ref()).to_glib_none().0,
            );
        }
    }

    /// Sets the flap widget for `self`, only visible when `Flap:reveal-progress` is
    /// greater than 0.
    /// ## `flap`
    /// the flap widget, or `None`
    #[doc(alias = "hdy_flap_set_flap")]
    pub fn set_flap<P: IsA<gtk::Widget>>(&self, flap: Option<&P>) {
        unsafe {
            ffi::hdy_flap_set_flap(
                self.to_glib_none().0,
                flap.map(|p| p.as_ref()).to_glib_none().0,
            );
        }
    }

    /// Sets the flap position for `self`. If `gtk::PackType::Start`, the flap is displayed
    /// before the content, if `gtk::PackType::End`, it's displayed after the content.
    /// ## `position`
    /// the new value
    #[doc(alias = "hdy_flap_set_flap_position")]
    pub fn set_flap_position(&self, position: gtk::PackType) {
        unsafe {
            ffi::hdy_flap_set_flap_position(self.to_glib_none().0, position.to_glib());
        }
    }

    /// Sets the duration that fold transitions in `self` will take.
    /// ## `duration`
    /// the new duration, in milliseconds
    #[doc(alias = "hdy_flap_set_fold_duration")]
    pub fn set_fold_duration(&self, duration: u32) {
        unsafe {
            ffi::hdy_flap_set_fold_duration(self.to_glib_none().0, duration);
        }
    }

    /// Sets the current fold policy for `self`. See `FlapFoldPolicy` for available
    /// policies.
    /// ## `policy`
    /// Fold policy
    #[doc(alias = "hdy_flap_set_fold_policy")]
    pub fn set_fold_policy(&self, policy: FlapFoldPolicy) {
        unsafe {
            ffi::hdy_flap_set_fold_policy(self.to_glib_none().0, policy.to_glib());
        }
    }

    /// Sets whether `self` is locked.
    ///
    /// If `false`, folding `self` when the flap is revealed automatically closes it,
    /// and unfolding it when the flap is not revealed opens it. If `true`,
    /// `Flap:reveal-flap` value never changes on its own.
    /// ## `locked`
    /// the new value
    #[doc(alias = "hdy_flap_set_locked")]
    pub fn set_locked(&self, locked: bool) {
        unsafe {
            ffi::hdy_flap_set_locked(self.to_glib_none().0, locked.to_glib());
        }
    }

    /// Sets whether the `self` can be closed with a click.
    ///
    /// If `modal` is `true`, clicking the content widget while flap is revealed, or
    /// pressing Escape key, will close the flap. If `false`, clicks are passed
    /// through to the content widget.
    /// ## `modal`
    /// Whether `self` can be closed with a click
    #[doc(alias = "hdy_flap_set_modal")]
    pub fn set_modal(&self, modal: bool) {
        unsafe {
            ffi::hdy_flap_set_modal(self.to_glib_none().0, modal.to_glib());
        }
    }

    /// Sets the duration that reveal transitions in `self` will take.
    /// ## `duration`
    /// the new duration, in milliseconds
    #[doc(alias = "hdy_flap_set_reveal_duration")]
    pub fn set_reveal_duration(&self, duration: u32) {
        unsafe {
            ffi::hdy_flap_set_reveal_duration(self.to_glib_none().0, duration);
        }
    }

    /// Sets whether the flap widget is revealed for `self`.
    /// ## `reveal_flap`
    /// `true` to reveal the flap widget, `false` otherwise
    #[doc(alias = "hdy_flap_set_reveal_flap")]
    pub fn set_reveal_flap(&self, reveal_flap: bool) {
        unsafe {
            ffi::hdy_flap_set_reveal_flap(self.to_glib_none().0, reveal_flap.to_glib());
        }
    }

    /// Sets the separator widget for `self`, displayed between content and flap when
    /// there's no shadow to display. When exactly it's visible depends on the
    /// `Flap:transition-type` value. If `None`, no separator will be used.
    /// ## `separator`
    /// the separator widget, or `None`
    #[doc(alias = "hdy_flap_set_separator")]
    pub fn set_separator<P: IsA<gtk::Widget>>(&self, separator: Option<&P>) {
        unsafe {
            ffi::hdy_flap_set_separator(
                self.to_glib_none().0,
                separator.map(|p| p.as_ref()).to_glib_none().0,
            );
        }
    }

    /// Sets whether `self` can be closed with a swipe gesture.
    ///
    /// The area that can be swiped depends on the `Flap:transition-type` value.
    /// ## `swipe_to_close`
    /// Whether `self` can be closed with a swipe gesture
    #[doc(alias = "hdy_flap_set_swipe_to_close")]
    pub fn set_swipe_to_close(&self, swipe_to_close: bool) {
        unsafe {
            ffi::hdy_flap_set_swipe_to_close(self.to_glib_none().0, swipe_to_close.to_glib());
        }
    }

    /// Sets whether `self` can be opened with a swipe gesture.
    ///
    /// The area that can be swiped depends on the `Flap:transition-type` value.
    /// ## `swipe_to_open`
    /// Whether `self` can be opened with a swipe gesture
    #[doc(alias = "hdy_flap_set_swipe_to_open")]
    pub fn set_swipe_to_open(&self, swipe_to_open: bool) {
        unsafe {
            ffi::hdy_flap_set_swipe_to_open(self.to_glib_none().0, swipe_to_open.to_glib());
        }
    }

    /// Sets the type of animation that will be used for reveal and fold transitions
    /// in `self`.
    ///
    /// `Flap:flap` is transparent by default, which means the content will be seen
    /// through it with `FlapTransitionType::Over` transitions; add the
    /// .background style class to it if this is unwanted.
    /// ## `transition_type`
    /// the new transition type
    #[doc(alias = "hdy_flap_set_transition_type")]
    pub fn set_transition_type(&self, transition_type: FlapTransitionType) {
        unsafe {
            ffi::hdy_flap_set_transition_type(self.to_glib_none().0, transition_type.to_glib());
        }
    }

    pub fn connect_property_content_notify<F: Fn(&Flap) + 'static>(&self, f: F) -> SignalHandlerId {
        unsafe extern "C" fn notify_content_trampoline<F: Fn(&Flap) + 'static>(
            this: *mut ffi::HdyFlap,
            _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::content\0".as_ptr() as *const _,
                Some(transmute::<_, unsafe extern "C" fn()>(
                    notify_content_trampoline::<F> as *const (),
                )),
                Box_::into_raw(f),
            )
        }
    }

    pub fn connect_property_flap_notify<F: Fn(&Flap) + 'static>(&self, f: F) -> SignalHandlerId {
        unsafe extern "C" fn notify_flap_trampoline<F: Fn(&Flap) + 'static>(
            this: *mut ffi::HdyFlap,
            _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::flap\0".as_ptr() as *const _,
                Some(transmute::<_, unsafe extern "C" fn()>(
                    notify_flap_trampoline::<F> as *const (),
                )),
                Box_::into_raw(f),
            )
        }
    }

    pub fn connect_property_flap_position_notify<F: Fn(&Flap) + 'static>(
        &self,
        f: F,
    ) -> SignalHandlerId {
        unsafe extern "C" fn notify_flap_position_trampoline<F: Fn(&Flap) + 'static>(
            this: *mut ffi::HdyFlap,
            _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::flap-position\0".as_ptr() as *const _,
                Some(transmute::<_, unsafe extern "C" fn()>(
                    notify_flap_position_trampoline::<F> as *const (),
                )),
                Box_::into_raw(f),
            )
        }
    }

    pub fn connect_property_fold_duration_notify<F: Fn(&Flap) + 'static>(
        &self,
        f: F,
    ) -> SignalHandlerId {
        unsafe extern "C" fn notify_fold_duration_trampoline<F: Fn(&Flap) + 'static>(
            this: *mut ffi::HdyFlap,
            _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::fold-duration\0".as_ptr() as *const _,
                Some(transmute::<_, unsafe extern "C" fn()>(
                    notify_fold_duration_trampoline::<F> as *const (),
                )),
                Box_::into_raw(f),
            )
        }
    }

    pub fn connect_property_fold_policy_notify<F: Fn(&Flap) + 'static>(
        &self,
        f: F,
    ) -> SignalHandlerId {
        unsafe extern "C" fn notify_fold_policy_trampoline<F: Fn(&Flap) + 'static>(
            this: *mut ffi::HdyFlap,
            _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::fold-policy\0".as_ptr() as *const _,
                Some(transmute::<_, unsafe extern "C" fn()>(
                    notify_fold_policy_trampoline::<F> as *const (),
                )),
                Box_::into_raw(f),
            )
        }
    }

    pub fn connect_property_folded_notify<F: Fn(&Flap) + 'static>(&self, f: F) -> SignalHandlerId {
        unsafe extern "C" fn notify_folded_trampoline<F: Fn(&Flap) + 'static>(
            this: *mut ffi::HdyFlap,
            _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::folded\0".as_ptr() as *const _,
                Some(transmute::<_, unsafe extern "C" fn()>(
                    notify_folded_trampoline::<F> as *const (),
                )),
                Box_::into_raw(f),
            )
        }
    }

    pub fn connect_property_locked_notify<F: Fn(&Flap) + 'static>(&self, f: F) -> SignalHandlerId {
        unsafe extern "C" fn notify_locked_trampoline<F: Fn(&Flap) + 'static>(
            this: *mut ffi::HdyFlap,
            _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::locked\0".as_ptr() as *const _,
                Some(transmute::<_, unsafe extern "C" fn()>(
                    notify_locked_trampoline::<F> as *const (),
                )),
                Box_::into_raw(f),
            )
        }
    }

    pub fn connect_property_modal_notify<F: Fn(&Flap) + 'static>(&self, f: F) -> SignalHandlerId {
        unsafe extern "C" fn notify_modal_trampoline<F: Fn(&Flap) + 'static>(
            this: *mut ffi::HdyFlap,
            _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::modal\0".as_ptr() as *const _,
                Some(transmute::<_, unsafe extern "C" fn()>(
                    notify_modal_trampoline::<F> as *const (),
                )),
                Box_::into_raw(f),
            )
        }
    }

    pub fn connect_property_reveal_duration_notify<F: Fn(&Flap) + 'static>(
        &self,
        f: F,
    ) -> SignalHandlerId {
        unsafe extern "C" fn notify_reveal_duration_trampoline<F: Fn(&Flap) + 'static>(
            this: *mut ffi::HdyFlap,
            _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::reveal-duration\0".as_ptr() as *const _,
                Some(transmute::<_, unsafe extern "C" fn()>(
                    notify_reveal_duration_trampoline::<F> as *const (),
                )),
                Box_::into_raw(f),
            )
        }
    }

    pub fn connect_property_reveal_flap_notify<F: Fn(&Flap) + 'static>(
        &self,
        f: F,
    ) -> SignalHandlerId {
        unsafe extern "C" fn notify_reveal_flap_trampoline<F: Fn(&Flap) + 'static>(
            this: *mut ffi::HdyFlap,
            _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::reveal-flap\0".as_ptr() as *const _,
                Some(transmute::<_, unsafe extern "C" fn()>(
                    notify_reveal_flap_trampoline::<F> as *const (),
                )),
                Box_::into_raw(f),
            )
        }
    }

    pub fn connect_property_reveal_progress_notify<F: Fn(&Flap) + 'static>(
        &self,
        f: F,
    ) -> SignalHandlerId {
        unsafe extern "C" fn notify_reveal_progress_trampoline<F: Fn(&Flap) + 'static>(
            this: *mut ffi::HdyFlap,
            _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::reveal-progress\0".as_ptr() as *const _,
                Some(transmute::<_, unsafe extern "C" fn()>(
                    notify_reveal_progress_trampoline::<F> as *const (),
                )),
                Box_::into_raw(f),
            )
        }
    }

    pub fn connect_property_separator_notify<F: Fn(&Flap) + 'static>(
        &self,
        f: F,
    ) -> SignalHandlerId {
        unsafe extern "C" fn notify_separator_trampoline<F: Fn(&Flap) + 'static>(
            this: *mut ffi::HdyFlap,
            _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::separator\0".as_ptr() as *const _,
                Some(transmute::<_, unsafe extern "C" fn()>(
                    notify_separator_trampoline::<F> as *const (),
                )),
                Box_::into_raw(f),
            )
        }
    }

    pub fn connect_property_swipe_to_close_notify<F: Fn(&Flap) + 'static>(
        &self,
        f: F,
    ) -> SignalHandlerId {
        unsafe extern "C" fn notify_swipe_to_close_trampoline<F: Fn(&Flap) + 'static>(
            this: *mut ffi::HdyFlap,
            _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::swipe-to-close\0".as_ptr() as *const _,
                Some(transmute::<_, unsafe extern "C" fn()>(
                    notify_swipe_to_close_trampoline::<F> as *const (),
                )),
                Box_::into_raw(f),
            )
        }
    }

    pub fn connect_property_swipe_to_open_notify<F: Fn(&Flap) + 'static>(
        &self,
        f: F,
    ) -> SignalHandlerId {
        unsafe extern "C" fn notify_swipe_to_open_trampoline<F: Fn(&Flap) + 'static>(
            this: *mut ffi::HdyFlap,
            _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::swipe-to-open\0".as_ptr() as *const _,
                Some(transmute::<_, unsafe extern "C" fn()>(
                    notify_swipe_to_open_trampoline::<F> as *const (),
                )),
                Box_::into_raw(f),
            )
        }
    }

    pub fn connect_property_transition_type_notify<F: Fn(&Flap) + 'static>(
        &self,
        f: F,
    ) -> SignalHandlerId {
        unsafe extern "C" fn notify_transition_type_trampoline<F: Fn(&Flap) + 'static>(
            this: *mut ffi::HdyFlap,
            _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::transition-type\0".as_ptr() as *const _,
                Some(transmute::<_, unsafe extern "C" fn()>(
                    notify_transition_type_trampoline::<F> as *const (),
                )),
                Box_::into_raw(f),
            )
        }
    }
}

impl Default for Flap {
    fn default() -> Self {
        Self::new()
    }
}

impl fmt::Display for Flap {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        f.write_str("Flap")
    }
}