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
use glib::subclass::prelude::*;
use glib::translate::*;

use super::dialog::AdwDialogImpl;
use crate::{prelude::*, AlertDialog};

pub trait AdwAlertDialogImpl: AdwDialogImpl {
    fn response(&self, response: &str) {
        AdwAlertDialogImplExt::parent_response(self, response)
    }
}

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

pub trait AdwAlertDialogImplExt: 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::AdwAlertDialogClass;
            if let Some(f) = (*parent_class).response {
                f(
                    self.obj().unsafe_cast_ref::<AlertDialog>().to_glib_none().0,
                    response.to_glib_none().0,
                )
            }
        }
    }
}

impl<T: AdwAlertDialogImpl> AdwAlertDialogImplExt for T {}

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

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

unsafe extern "C" fn response<T: AdwAlertDialogImpl>(
    ptr: *mut ffi::AdwAlertDialog,
    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())
}