pub trait TreeDragSourceImplExt: ObjectSubclass {
    // Required methods
    fn parent_row_draggable(
        &self,
        _tree_drag_source: &Self::Type,
        _path: &TreePath
    ) -> bool;
    fn parent_drag_data_get(
        &self,
        tree_drag_source: &Self::Type,
        path: &TreePath
    ) -> ContentProvider;
    fn parent_drag_data_delete(
        &self,
        tree_drag_source: &Self::Type,
        path: &TreePath
    ) -> bool;
}

Required Methods§

source

fn parent_row_draggable( &self, _tree_drag_source: &Self::Type, _path: &TreePath ) -> bool

source

fn parent_drag_data_get( &self, tree_drag_source: &Self::Type, path: &TreePath ) -> ContentProvider

source

fn parent_drag_data_delete( &self, tree_drag_source: &Self::Type, path: &TreePath ) -> bool

Implementors§