smithay-clipboard/src/dnd/mod.rs

14 lines
293 B
Rust
Raw Normal View History

use crate::Clipboard;
impl Clipboard {
/// Set up DnD operations for the Clipboard
pub fn init_dnd() {}
/// Start a DnD operation on the given surface with some data
pub fn start_dnd() {}
/// End the current DnD operation, if there is one
pub fn end_dnd() {}
}