1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
//! Clipboard types.
use std::{fmt, path::PathBuf};
use zng_txt::Txt;
use crate::{image::ImageId, ipc::IpcBytes};
/// Clipboard data.
#[derive(Debug, Clone, PartialEq, serde::Serialize, serde::Deserialize)]
pub enum ClipboardData {
/// Text string.
///
/// View-process can convert between [`String`] and the text formats of the platform.
Text(Txt),
/// Image data.
///
/// View-process reads from clipboard in any format supported and starts an image decode task
/// for the data, the [`ImageId`] may still be decoding when received. For writing the
/// view-process will expect the image to already be loaded, the image will be encoded in
/// a format compatible with the platform clipboard.
Image(ImageId),
/// List of paths.
FileList(Vec<PathBuf>),
/// Any data format supported only by the specific view-process implementation.
Extension {
/// Type key, must be in a format defined by the view-process.
data_type: Txt,
/// The raw data.
data: IpcBytes,
},
}
/// Clipboard data type.
#[derive(Debug, Clone, PartialEq, serde::Serialize, serde::Deserialize)]
pub enum ClipboardType {
/// A [`ClipboardData::Text`].
Text,
/// A [`ClipboardData::Image`].
Image,
/// A [`ClipboardData::FileList`].
FileList,
/// A [`ClipboardData::Extension`].
Extension(Txt),
}
/// Clipboard read/write error.
#[derive(Debug, Clone, PartialEq, serde::Serialize, serde::Deserialize)]
pub enum ClipboardError {
/// Requested format is not set on the clipboard.
NotFound,
/// View-process or operating system does not support the data type.
NotSupported,
/// Other error.
///
/// The string can be a debug description of the error, only suitable for logging.
Other(Txt),
}
impl fmt::Display for ClipboardError {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
match self {
ClipboardError::NotFound => write!(f, "clipboard does not contain the requested format"),
ClipboardError::NotSupported => write!(f, "clipboard implementation does not support the format"),
ClipboardError::Other(_) => write!(f, "internal error"),
}
}
}
impl std::error::Error for ClipboardError {}