From 2e8fb095686c3ebaf83e61fe8ff222b91f25bfb4 Mon Sep 17 00:00:00 2001 From: Tanner Rogalsky Date: Sat, 5 Feb 2022 06:55:22 -0500 Subject: Allow the creation of a clipboard without a window. --- winit/src/clipboard.rs | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/winit/src/clipboard.rs b/winit/src/clipboard.rs index 1b92b28d..c1fd8813 100644 --- a/winit/src/clipboard.rs +++ b/winit/src/clipboard.rs @@ -26,6 +26,14 @@ impl Clipboard { Clipboard { state } } + /// Creates a new [`Clipboard`] that isn't associated with a window. + /// This clipboard will never contain a copied value. + pub fn unconnected() -> Clipboard { + Clipboard { + state: State::Unavailable, + } + } + /// Reads the current content of the [`Clipboard`] as text. pub fn read(&self) -> Option { match &self.state { -- cgit