gtk4/subclass/
tree_drag_source.rsuse glib::translate::*;
use crate::{ffi, prelude::*, subclass::prelude::*, TreeDragSource, TreePath};
#[cfg_attr(feature = "v4_10", deprecated = "Since 4.10")]
#[allow(deprecated)]
pub trait TreeDragSourceImpl: ObjectImpl {
fn row_draggable(&self, path: &TreePath) -> bool {
self.parent_row_draggable(path)
}
fn drag_data_get(&self, path: &TreePath) -> gdk::ContentProvider;
fn drag_data_delete(&self, path: &TreePath) -> bool;
}
mod sealed {
pub trait Sealed {}
impl<T: super::TreeDragSourceImplExt> Sealed for T {}
}
#[cfg_attr(feature = "v4_10", deprecated = "Since 4.10")]
#[allow(deprecated)]
pub trait TreeDragSourceImplExt: sealed::Sealed + ObjectSubclass {
fn parent_row_draggable(&self, path: &TreePath) -> bool {
unsafe {
let type_data = Self::type_data();
let parent_iface = type_data.as_ref().parent_interface::<TreeDragSource>()
as *const ffi::GtkTreeDragSourceIface;
if let Some(func) = (*parent_iface).row_draggable {
from_glib(func(
self.obj()
.unsafe_cast_ref::<TreeDragSource>()
.to_glib_none()
.0,
mut_override(path.to_glib_none().0),
))
} else {
true
}
}
}
fn parent_drag_data_get(&self, path: &TreePath) -> gdk::ContentProvider {
unsafe {
let type_data = Self::type_data();
let parent_iface = type_data.as_ref().parent_interface::<TreeDragSource>()
as *const ffi::GtkTreeDragSourceIface;
let func = (*parent_iface)
.drag_data_get
.expect("no parent \"drag_data_get\" implementation");
from_glib_full(func(
self.obj()
.unsafe_cast_ref::<TreeDragSource>()
.to_glib_none()
.0,
mut_override(path.to_glib_none().0),
))
}
}
fn parent_drag_data_delete(&self, path: &TreePath) -> bool {
unsafe {
let type_data = Self::type_data();
let parent_iface = type_data.as_ref().parent_interface::<TreeDragSource>()
as *const ffi::GtkTreeDragSourceIface;
let func = (*parent_iface)
.drag_data_delete
.expect("no parent \"drag_data_delete\" implementation");
from_glib(func(
self.obj()
.unsafe_cast_ref::<TreeDragSource>()
.to_glib_none()
.0,
mut_override(path.to_glib_none().0),
))
}
}
}
impl<T: TreeDragSourceImpl> TreeDragSourceImplExt for T {}
unsafe impl<T: TreeDragSourceImpl> IsImplementable<T> for TreeDragSource {
fn interface_init(iface: &mut glib::Interface<Self>) {
let iface = iface.as_mut();
assert_initialized_main_thread!();
iface.row_draggable = Some(tree_drag_source_row_draggable::<T>);
iface.drag_data_get = Some(tree_drag_source_drag_data_get::<T>);
iface.drag_data_delete = Some(tree_drag_source_drag_data_delete::<T>);
}
}
unsafe extern "C" fn tree_drag_source_row_draggable<T: TreeDragSourceImpl>(
tree_drag_source: *mut ffi::GtkTreeDragSource,
pathptr: *mut ffi::GtkTreePath,
) -> glib::ffi::gboolean {
let instance = &*(tree_drag_source as *mut T::Instance);
let imp = instance.imp();
let path: Borrowed<TreePath> = from_glib_borrow(pathptr);
imp.row_draggable(&path).into_glib()
}
unsafe extern "C" fn tree_drag_source_drag_data_get<T: TreeDragSourceImpl>(
tree_drag_source: *mut ffi::GtkTreeDragSource,
pathptr: *mut ffi::GtkTreePath,
) -> *mut gdk::ffi::GdkContentProvider {
let instance = &*(tree_drag_source as *mut T::Instance);
let imp = instance.imp();
let path: Borrowed<TreePath> = from_glib_borrow(pathptr);
imp.drag_data_get(&path).into_glib_ptr()
}
unsafe extern "C" fn tree_drag_source_drag_data_delete<T: TreeDragSourceImpl>(
tree_drag_source: *mut ffi::GtkTreeDragSource,
pathptr: *mut ffi::GtkTreePath,
) -> glib::ffi::gboolean {
let instance = &*(tree_drag_source as *mut T::Instance);
let imp = instance.imp();
let path: Borrowed<TreePath> = from_glib_borrow(pathptr);
imp.drag_data_delete(&path).into_glib()
}