summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón <hector0193@gmail.com>2022-02-07 22:53:10 +0700
committerLibravatar GitHub <noreply@github.com>2022-02-07 22:53:10 +0700
commit880671e104f6ee33040f3dfe8c7b735a1e70031d (patch)
tree4df3a4b2358b186d78c6fbe1f2309841f9d8e83d
parentc15701581e52ae838f8e7153ae7e639dd86b1ef6 (diff)
parent2e8fb095686c3ebaf83e61fe8ff222b91f25bfb4 (diff)
downloadiced-880671e104f6ee33040f3dfe8c7b735a1e70031d.tar.gz
iced-880671e104f6ee33040f3dfe8c7b735a1e70031d.tar.bz2
iced-880671e104f6ee33040f3dfe8c7b735a1e70031d.zip
Merge pull request #1231 from TannerRogalsky/allow-the-creation-of-unconnected-clipboard
Allow the creation of a clipboard without a window.
-rw-r--r--winit/src/clipboard.rs8
1 files changed, 8 insertions, 0 deletions
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<String> {
match &self.state {