From 1879b30d495a4734a526b0f5780cbf6ebc72e241 Mon Sep 17 00:00:00 2001 From: Ashley Wulber Date: Thu, 14 Mar 2024 16:28:26 -0400 Subject: [PATCH] feat: add conversion from string for MimeType --- src/dnd/mod.rs | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 src/dnd/mod.rs diff --git a/src/dnd/mod.rs b/src/dnd/mod.rs new file mode 100644 index 0000000..3df6524 --- /dev/null +++ b/src/dnd/mod.rs @@ -0,0 +1,14 @@ +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() {} + + +} \ No newline at end of file