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
use crate::{prelude::*, MessageDialog};
use glib::translate::*;
use gtk::subclass::prelude::*;

pub trait MessageDialogImpl: gtk::subclass::prelude::WindowImpl {
    /// Emits the [`response`][struct@crate::MessageDialog#response] signal with the given response ID.
    ///
    /// Used to indicate that the user has responded to the dialog in some way.
    /// ## `response`
    /// response ID
    fn response(&self, response: &str) {
        self.parent_response(response)
    }
}

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

pub trait MessageDialogImplExt: sealed::Sealed + ObjectSubclass {
    fn parent_response(&self, response: &str) {
        unsafe {
            let data = Self::type_data();
            let parent_class = data.as_ref().parent_class() as *mut ffi::AdwMessageDialogClass;
            if let Some(f) = (*parent_class).response {
                f(
                    self.obj()
                        .unsafe_cast_ref::<MessageDialog>()
                        .to_glib_none()
                        .0,
                    response.to_glib_none().0,
                )
            }
        }
    }
}

impl<T: MessageDialogImpl> MessageDialogImplExt for T {}

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

        let klass = class.as_mut();
        klass.response = Some(message_dialog_response::<T>);
    }
}

unsafe extern "C" fn message_dialog_response<T: MessageDialogImpl>(
    ptr: *mut ffi::AdwMessageDialog,
    response: *const libc::c_char,
) {
    let instance = &*(ptr as *mut T::Instance);
    let imp = instance.imp();

    let response: Borrowed<glib::GString> = from_glib_borrow(response);

    imp.response(response.as_ref())
}