iced-yoda/runtime/src/clipboard.rs

63 lines
1.6 KiB
Rust
Raw Normal View History

//! Access the clipboard.
2024-02-13 03:14:08 +01:00
use crate::core::clipboard::Kind;
use crate::futures::futures::channel::oneshot;
2024-07-05 01:13:28 +02:00
use crate::task::{self, Task};
/// A clipboard action to be performed by some [`Task`].
///
/// [`Task`]: crate::Task
#[derive(Debug)]
pub enum Action {
/// Read the clipboard and produce `T` with the result.
Read {
/// The clipboard target.
target: Kind,
/// The channel to send the read contents.
channel: oneshot::Sender<Option<String>>,
},
/// Write the given contents to the clipboard.
Write {
/// The clipboard target.
target: Kind,
/// The contents to be written.
contents: String,
},
}
2023-03-05 06:35:20 +01:00
/// Read the current contents of the clipboard.
pub fn read() -> Task<Option<String>> {
2024-07-05 01:13:28 +02:00
task::oneshot(|channel| {
crate::Action::Clipboard(Action::Read {
target: Kind::Standard,
channel,
})
})
2023-03-05 06:35:20 +01:00
}
2024-02-13 03:14:08 +01:00
/// Read the current contents of the primary clipboard.
pub fn read_primary() -> Task<Option<String>> {
2024-07-05 01:13:28 +02:00
task::oneshot(|channel| {
crate::Action::Clipboard(Action::Read {
target: Kind::Primary,
channel,
})
})
2024-02-13 03:14:08 +01:00
}
/// Write the given contents to the clipboard.
pub fn write<T>(contents: String) -> Task<T> {
2024-07-05 01:13:28 +02:00
task::effect(crate::Action::Clipboard(Action::Write {
target: Kind::Standard,
2024-02-13 03:14:08 +01:00
contents,
}))
2024-02-07 17:25:40 +01:00
}
2024-02-13 03:14:08 +01:00
/// Write the given contents to the primary clipboard.
pub fn write_primary<Message>(contents: String) -> Task<Message> {
2024-07-05 01:13:28 +02:00
task::effect(crate::Action::Clipboard(Action::Write {
target: Kind::Primary,
2024-02-13 03:14:08 +01:00
contents,
}))
2024-02-07 17:25:40 +01:00
}