summaryrefslogtreecommitdiffstats
path: root/native/src/lib.rs
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2019-12-18 07:45:49 +0100
committerLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2019-12-18 07:45:49 +0100
commita14b39555e5c480422c24df7d708dd1addd0a67b (patch)
tree00404b80c27f715d3739f14d882e88241d68f0c1 /native/src/lib.rs
parent0f2e20f5e5b1f0658ab4e6cbe6fdda9ca97f2b36 (diff)
downloadiced-a14b39555e5c480422c24df7d708dd1addd0a67b.tar.gz
iced-a14b39555e5c480422c24df7d708dd1addd0a67b.tar.bz2
iced-a14b39555e5c480422c24df7d708dd1addd0a67b.zip
Allow clipboard access in `Widget::on_event`
Diffstat (limited to 'native/src/lib.rs')
-rw-r--r--native/src/lib.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/native/src/lib.rs b/native/src/lib.rs
index c4d72df8..8dcacb2b 100644
--- a/native/src/lib.rs
+++ b/native/src/lib.rs
@@ -45,6 +45,7 @@ pub mod renderer;
pub mod subscription;
pub mod widget;
+mod clipboard;
mod element;
mod event;
mod hasher;
@@ -57,6 +58,7 @@ pub use iced_core::{
Point, Rectangle, Vector, VerticalAlignment,
};
+pub use clipboard::Clipboard;
pub use element::Element;
pub use event::Event;
pub use hasher::Hasher;