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
use crate::{TabBar, TabPage};
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::mem::transmute;
impl TabBar {
#[doc(alias = "adw_tab_bar_setup_extra_drop_target")]
pub fn setup_extra_drop_target(&self, actions: gdk::DragAction, types: &[glib::Type]) {
unsafe {
ffi::adw_tab_bar_setup_extra_drop_target(
self.to_glib_none().0,
actions.into_glib(),
types.to_glib_none().0,
types.len() as usize,
)
}
}
#[doc(alias = "extra-drag-drop")]
pub fn connect_extra_drag_drop<F: Fn(&TabBar, &TabPage, &glib::Value) -> bool + 'static>(
&self,
f: F,
) -> SignalHandlerId {
unsafe extern "C" fn extra_drag_drop_trampoline<
F: Fn(&TabBar, &TabPage, &glib::Value) -> bool + 'static,
>(
this: *mut ffi::AdwTabBar,
page: *mut ffi::AdwTabPage,
value: *mut glib::gobject_ffi::GValue,
f: glib::ffi::gpointer,
) -> glib::ffi::gboolean {
let f: &F = &*(f as *const F);
f(
&from_glib_borrow(this),
&from_glib_borrow(page),
&*(value as *const glib::Value),
)
.into_glib()
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(
self.as_ptr() as *mut _,
b"extra-drag-drop\0".as_ptr() as *const _,
Some(transmute::<_, unsafe extern "C" fn()>(
extra_drag_drop_trampoline::<F> as *const (),
)),
Box_::into_raw(f),
)
}
}
}