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
// Take a look at the license at the top of the repository in the LICENSE file.

// rustdoc-stripper-ignore-next
//! Traits intended for subclassing [`NativeDialog`](crate::NativeDialog).

use glib::translate::*;

use crate::{prelude::*, subclass::prelude::*, NativeDialog, ResponseType};

#[cfg_attr(feature = "v4_10", deprecated = "Since 4.10")]
#[allow(deprecated)]
pub trait NativeDialogImpl: NativeDialogImplExt + ObjectImpl {
    /// class handler for the `GtkNativeDialog::response` signal
    fn response(&self, response: ResponseType) {
        self.parent_response(response)
    }

    /// Shows the dialog on the display.
    ///
    /// When the user accepts the state of the dialog the dialog will
    /// be automatically hidden and the [`response`][struct@crate::NativeDialog#response]
    /// signal will be emitted.
    ///
    /// Multiple calls while the dialog is visible will be ignored.
    fn show(&self) {
        self.parent_show()
    }

    /// Hides the dialog if it is visible, aborting any interaction.
    ///
    /// Once this is called the [`response`][struct@crate::NativeDialog#response] signal
    /// will *not* be emitted until after the next call to
    /// [`NativeDialogExt::show()`][crate::prelude::NativeDialogExt::show()].
    ///
    /// If the dialog is not visible this does nothing.
    fn hide(&self) {
        self.parent_hide()
    }
}

mod sealed {
    pub trait Sealed {}
    impl<T: super::NativeDialogImplExt> Sealed for T {}
}

#[cfg_attr(feature = "v4_10", deprecated = "Since 4.10")]
#[allow(deprecated)]
pub trait NativeDialogImplExt: sealed::Sealed + ObjectSubclass {
    fn parent_response(&self, response: ResponseType) {
        unsafe {
            let data = Self::type_data();
            let parent_class = data.as_ref().parent_class() as *mut ffi::GtkNativeDialogClass;
            if let Some(f) = (*parent_class).response {
                f(
                    self.obj()
                        .unsafe_cast_ref::<NativeDialog>()
                        .to_glib_none()
                        .0,
                    response.into_glib(),
                )
            }
        }
    }

    fn parent_show(&self) {
        unsafe {
            let data = Self::type_data();
            let parent_class = data.as_ref().parent_class() as *mut ffi::GtkNativeDialogClass;
            let f = (*parent_class)
                .show
                .expect("No parent class impl for \"show\"");
            f(self
                .obj()
                .unsafe_cast_ref::<NativeDialog>()
                .to_glib_none()
                .0)
        }
    }

    fn parent_hide(&self) {
        unsafe {
            let data = Self::type_data();
            let parent_class = data.as_ref().parent_class() as *mut ffi::GtkNativeDialogClass;
            let f = (*parent_class)
                .hide
                .expect("No parent class impl for \"hide\"");
            f(self
                .obj()
                .unsafe_cast_ref::<NativeDialog>()
                .to_glib_none()
                .0)
        }
    }
}

impl<T: NativeDialogImpl> NativeDialogImplExt for T {}

unsafe impl<T: NativeDialogImpl> IsSubclassable<T> for NativeDialog {
    fn class_init(class: &mut glib::Class<Self>) {
        Self::parent_class_init::<T>(class);

        assert_initialized_main_thread!();

        let klass = class.as_mut();
        klass.response = Some(dialog_response::<T>);
        klass.show = Some(dialog_show::<T>);
        klass.hide = Some(dialog_hide::<T>);
    }
}

unsafe extern "C" fn dialog_response<T: NativeDialogImpl>(
    ptr: *mut ffi::GtkNativeDialog,
    responseptr: i32,
) {
    let instance = &*(ptr as *mut T::Instance);
    let imp = instance.imp();
    let res: ResponseType = from_glib(responseptr);

    imp.response(res)
}

unsafe extern "C" fn dialog_show<T: NativeDialogImpl>(ptr: *mut ffi::GtkNativeDialog) {
    let instance = &*(ptr as *mut T::Instance);
    let imp = instance.imp();

    imp.show()
}

unsafe extern "C" fn dialog_hide<T: NativeDialogImpl>(ptr: *mut ffi::GtkNativeDialog) {
    let instance = &*(ptr as *mut T::Instance);
    let imp = instance.imp();

    imp.hide()
}