14 lines
293 B
Rust
14 lines
293 B
Rust
|
|
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() {}
|
||
|
|
|
||
|
|
|
||
|
|
}
|