Merge pull request #2240 from snaggen/primary

Add support for primary clipboard
This commit is contained in:
Héctor Ramón 2024-02-13 03:35:35 +01:00 committed by GitHub
commit dc2cba9264
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
10 changed files with 110 additions and 46 deletions

View file

@ -17,7 +17,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- `Themer` widget. [#2209](https://github.com/iced-rs/iced/pull/2209) - `Themer` widget. [#2209](https://github.com/iced-rs/iced/pull/2209)
- `Transform` primitive. [#2120](https://github.com/iced-rs/iced/pull/2120) - `Transform` primitive. [#2120](https://github.com/iced-rs/iced/pull/2120)
- Cut functionality for `TextEditor`. [#2215](https://github.com/iced-rs/iced/pull/2215) - Cut functionality for `TextEditor`. [#2215](https://github.com/iced-rs/iced/pull/2215)
- Disabled support for `Checkbox`. [#2109](https://github.com/iced-rs/iced/pull/2109) - Primary clipboard support. [#2240](https://github.com/iced-rs/iced/pull/2240)
- Disabled state for `Checkbox`. [#2109](https://github.com/iced-rs/iced/pull/2109)
- `skip_taskbar` window setting for Windows. [#2211](https://github.com/iced-rs/iced/pull/2211) - `skip_taskbar` window setting for Windows. [#2211](https://github.com/iced-rs/iced/pull/2211)
- `fetch_maximized` and `fetch_minimized` commands in `window`. [#2189](https://github.com/iced-rs/iced/pull/2189) - `fetch_maximized` and `fetch_minimized` commands in `window`. [#2189](https://github.com/iced-rs/iced/pull/2189)
- `run_with_handle` command in `window`. [#2200](https://github.com/iced-rs/iced/pull/2200) - `run_with_handle` command in `window`. [#2200](https://github.com/iced-rs/iced/pull/2200)
@ -150,6 +151,7 @@ Many thanks to...
- @nyurik - @nyurik
- @Remmirad - @Remmirad
- @ripytide - @ripytide
- @snaggen
- @Tahinli - @Tahinli
- @tarkah - @tarkah
- @tzemanovic - @tzemanovic

View file

@ -160,5 +160,5 @@ web-sys = "=0.3.67"
web-time = "0.2" web-time = "0.2"
wgpu = "0.19" wgpu = "0.19"
winapi = "0.3" winapi = "0.3"
window_clipboard = "0.4" window_clipboard = "0.4.1"
winit = { git = "https://github.com/iced-rs/winit.git", rev = "b91e39ece2c0d378c3b80da7f3ab50e17bb798a5" } winit = { git = "https://github.com/iced-rs/winit.git", rev = "b91e39ece2c0d378c3b80da7f3ab50e17bb798a5" }

View file

@ -4,10 +4,21 @@
/// applications. /// applications.
pub trait Clipboard { pub trait Clipboard {
/// Reads the current content of the [`Clipboard`] as text. /// Reads the current content of the [`Clipboard`] as text.
fn read(&self) -> Option<String>; fn read(&self, kind: Kind) -> Option<String>;
/// Writes the given text contents to the [`Clipboard`]. /// Writes the given text contents to the [`Clipboard`].
fn write(&mut self, contents: String); fn write(&mut self, kind: Kind, contents: String);
}
/// The kind of [`Clipboard`].
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum Kind {
/// The standard clipboard.
Standard,
/// The primary clipboard.
///
/// Normally only present in X11 and Wayland.
Primary,
} }
/// A null implementation of the [`Clipboard`] trait. /// A null implementation of the [`Clipboard`] trait.
@ -15,9 +26,9 @@ pub trait Clipboard {
pub struct Null; pub struct Null;
impl Clipboard for Null { impl Clipboard for Null {
fn read(&self) -> Option<String> { fn read(&self, _kind: Kind) -> Option<String> {
None None
} }
fn write(&mut self, _contents: String) {} fn write(&mut self, _kind: Kind, _contents: String) {}
} }

View file

@ -1,5 +1,6 @@
//! Access the clipboard. //! Access the clipboard.
use crate::command::{self, Command}; use crate::command::{self, Command};
use crate::core::clipboard::Kind;
use crate::futures::MaybeSend; use crate::futures::MaybeSend;
use std::fmt; use std::fmt;
@ -9,10 +10,10 @@ use std::fmt;
/// [`Command`]: crate::Command /// [`Command`]: crate::Command
pub enum Action<T> { pub enum Action<T> {
/// Read the clipboard and produce `T` with the result. /// Read the clipboard and produce `T` with the result.
Read(Box<dyn Fn(Option<String>) -> T>), Read(Box<dyn Fn(Option<String>) -> T>, Kind),
/// Write the given contents to the clipboard. /// Write the given contents to the clipboard.
Write(String), Write(String, Kind),
} }
impl<T> Action<T> { impl<T> Action<T> {
@ -25,8 +26,10 @@ impl<T> Action<T> {
T: 'static, T: 'static,
{ {
match self { match self {
Self::Read(o) => Action::Read(Box::new(move |s| f(o(s)))), Self::Read(o, target) => {
Self::Write(content) => Action::Write(content), Action::Read(Box::new(move |s| f(o(s))), target)
}
Self::Write(content, target) => Action::Write(content, target),
} }
} }
} }
@ -34,8 +37,8 @@ impl<T> Action<T> {
impl<T> fmt::Debug for Action<T> { impl<T> fmt::Debug for Action<T> {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
match self { match self {
Self::Read(_) => write!(f, "Action::Read"), Self::Read(_, target) => write!(f, "Action::Read{target:?}"),
Self::Write(_) => write!(f, "Action::Write"), Self::Write(_, target) => write!(f, "Action::Write({target:?})"),
} }
} }
} }
@ -44,10 +47,34 @@ impl<T> fmt::Debug for Action<T> {
pub fn read<Message>( pub fn read<Message>(
f: impl Fn(Option<String>) -> Message + 'static, f: impl Fn(Option<String>) -> Message + 'static,
) -> Command<Message> { ) -> Command<Message> {
Command::single(command::Action::Clipboard(Action::Read(Box::new(f)))) Command::single(command::Action::Clipboard(Action::Read(
Box::new(f),
Kind::Standard,
)))
}
/// Read the current contents of the primary clipboard.
pub fn read_primary<Message>(
f: impl Fn(Option<String>) -> Message + 'static,
) -> Command<Message> {
Command::single(command::Action::Clipboard(Action::Read(
Box::new(f),
Kind::Primary,
)))
} }
/// Write the given contents to the clipboard. /// Write the given contents to the clipboard.
pub fn write<Message>(contents: String) -> Command<Message> { pub fn write<Message>(contents: String) -> Command<Message> {
Command::single(command::Action::Clipboard(Action::Write(contents))) Command::single(command::Action::Clipboard(Action::Write(
contents,
Kind::Standard,
)))
}
/// Write the given contents to the primary clipboard.
pub fn write_primary<Message>(contents: String) -> Command<Message> {
Command::single(command::Action::Clipboard(Action::Write(
contents,
Kind::Primary,
)))
} }

View file

@ -200,7 +200,9 @@ pub use crate::core::{
pub mod clipboard { pub mod clipboard {
//! Access the clipboard. //! Access the clipboard.
pub use crate::runtime::clipboard::{read, write}; pub use crate::runtime::clipboard::{
read, read_primary, write, write_primary,
};
} }
pub mod executor { pub mod executor {

View file

@ -1,4 +1,5 @@
//! Display a multi-line text input for text editing. //! Display a multi-line text input for text editing.
use crate::core::clipboard::{self, Clipboard};
use crate::core::event::{self, Event}; use crate::core::event::{self, Event};
use crate::core::keyboard; use crate::core::keyboard;
use crate::core::keyboard::key; use crate::core::keyboard::key;
@ -10,7 +11,7 @@ use crate::core::text::highlighter::{self, Highlighter};
use crate::core::text::{self, LineHeight}; use crate::core::text::{self, LineHeight};
use crate::core::widget::{self, Widget}; use crate::core::widget::{self, Widget};
use crate::core::{ use crate::core::{
Clipboard, Element, Length, Padding, Pixels, Rectangle, Shell, Size, Vector, Element, Length, Padding, Pixels, Rectangle, Shell, Size, Vector,
}; };
use std::cell::RefCell; use std::cell::RefCell;
@ -448,17 +449,19 @@ where
} }
Update::Copy => { Update::Copy => {
if let Some(selection) = self.content.selection() { if let Some(selection) = self.content.selection() {
clipboard.write(selection); clipboard.write(clipboard::Kind::Standard, selection);
} }
} }
Update::Cut => { Update::Cut => {
if let Some(selection) = self.content.selection() { if let Some(selection) = self.content.selection() {
clipboard.write(selection.clone()); clipboard.write(clipboard::Kind::Standard, selection);
shell.publish(on_edit(Action::Edit(Edit::Delete))); shell.publish(on_edit(Action::Edit(Edit::Delete)));
} }
} }
Update::Paste => { Update::Paste => {
if let Some(contents) = clipboard.read() { if let Some(contents) =
clipboard.read(clipboard::Kind::Standard)
{
shell.publish(on_edit(Action::Edit(Edit::Paste( shell.publish(on_edit(Action::Edit(Edit::Paste(
Arc::new(contents), Arc::new(contents),
)))); ))));

View file

@ -12,6 +12,7 @@ pub use value::Value;
use editor::Editor; use editor::Editor;
use crate::core::alignment; use crate::core::alignment;
use crate::core::clipboard::{self, Clipboard};
use crate::core::event::{self, Event}; use crate::core::event::{self, Event};
use crate::core::keyboard; use crate::core::keyboard;
use crate::core::keyboard::key; use crate::core::keyboard::key;
@ -26,8 +27,8 @@ use crate::core::widget::operation::{self, Operation};
use crate::core::widget::tree::{self, Tree}; use crate::core::widget::tree::{self, Tree};
use crate::core::window; use crate::core::window;
use crate::core::{ use crate::core::{
Clipboard, Element, Layout, Length, Padding, Pixels, Point, Rectangle, Element, Layout, Length, Padding, Pixels, Point, Rectangle, Shell, Size,
Shell, Size, Vector, Widget, Vector, Widget,
}; };
use crate::runtime::Command; use crate::runtime::Command;
@ -864,8 +865,10 @@ where
if let Some((start, end)) = if let Some((start, end)) =
state.cursor.selection(value) state.cursor.selection(value)
{ {
clipboard clipboard.write(
.write(value.select(start, end).to_string()); clipboard::Kind::Standard,
value.select(start, end).to_string(),
);
} }
} }
keyboard::Key::Character("x") keyboard::Key::Character("x")
@ -874,8 +877,10 @@ where
if let Some((start, end)) = if let Some((start, end)) =
state.cursor.selection(value) state.cursor.selection(value)
{ {
clipboard clipboard.write(
.write(value.select(start, end).to_string()); clipboard::Kind::Standard,
value.select(start, end).to_string(),
);
} }
let mut editor = Editor::new(value, &mut state.cursor); let mut editor = Editor::new(value, &mut state.cursor);
@ -894,7 +899,7 @@ where
Some(content) => content, Some(content) => content,
None => { None => {
let content: String = clipboard let content: String = clipboard
.read() .read(clipboard::Kind::Standard)
.unwrap_or_default() .unwrap_or_default()
.chars() .chars()
.filter(|c| !c.is_control()) .filter(|c| !c.is_control())

View file

@ -704,15 +704,15 @@ pub fn run_command<A, C, E>(
runtime.run(stream); runtime.run(stream);
} }
command::Action::Clipboard(action) => match action { command::Action::Clipboard(action) => match action {
clipboard::Action::Read(tag) => { clipboard::Action::Read(tag, kind) => {
let message = tag(clipboard.read()); let message = tag(clipboard.read(kind));
proxy proxy
.send_event(message) .send_event(message)
.expect("Send message to event loop"); .expect("Send message to event loop");
} }
clipboard::Action::Write(contents) => { clipboard::Action::Write(contents, kind) => {
clipboard.write(contents); clipboard.write(kind, contents);
} }
}, },
command::Action::Window(action) => match action { command::Action::Window(action) => match action {

View file

@ -1,5 +1,7 @@
//! Access the clipboard. //! Access the clipboard.
use crate::core::clipboard::Kind;
/// A buffer for short-term storage and transfer within and between /// A buffer for short-term storage and transfer within and between
/// applications. /// applications.
#[allow(missing_debug_implementations)] #[allow(missing_debug_implementations)]
@ -33,33 +35,45 @@ impl Clipboard {
} }
/// Reads the current content of the [`Clipboard`] as text. /// Reads the current content of the [`Clipboard`] as text.
pub fn read(&self) -> Option<String> { pub fn read(&self, kind: Kind) -> Option<String> {
match &self.state { match &self.state {
State::Connected(clipboard) => clipboard.read().ok(), State::Connected(clipboard) => match kind {
Kind::Standard => clipboard.read().ok(),
Kind::Primary => clipboard.read_primary().and_then(Result::ok),
},
State::Unavailable => None, State::Unavailable => None,
} }
} }
/// Writes the given text contents to the [`Clipboard`]. /// Writes the given text contents to the [`Clipboard`].
pub fn write(&mut self, contents: String) { pub fn write(&mut self, kind: Kind, contents: String) {
match &mut self.state { match &mut self.state {
State::Connected(clipboard) => match clipboard.write(contents) { State::Connected(clipboard) => {
Ok(()) => {} let result = match kind {
Err(error) => { Kind::Standard => clipboard.write(contents),
log::warn!("error writing to clipboard: {error}"); Kind::Primary => {
clipboard.write_primary(contents).unwrap_or(Ok(()))
}
};
match result {
Ok(()) => {}
Err(error) => {
log::warn!("error writing to clipboard: {error}");
}
} }
}, }
State::Unavailable => {} State::Unavailable => {}
} }
} }
} }
impl crate::core::Clipboard for Clipboard { impl crate::core::Clipboard for Clipboard {
fn read(&self) -> Option<String> { fn read(&self, kind: Kind) -> Option<String> {
self.read() self.read(kind)
} }
fn write(&mut self, contents: String) { fn write(&mut self, kind: Kind, contents: String) {
self.write(contents); self.write(kind, contents);
} }
} }

View file

@ -876,15 +876,15 @@ fn run_command<A, C, E>(
runtime.run(Box::pin(stream)); runtime.run(Box::pin(stream));
} }
command::Action::Clipboard(action) => match action { command::Action::Clipboard(action) => match action {
clipboard::Action::Read(tag) => { clipboard::Action::Read(tag, kind) => {
let message = tag(clipboard.read()); let message = tag(clipboard.read(kind));
proxy proxy
.send_event(message) .send_event(message)
.expect("Send message to event loop"); .expect("Send message to event loop");
} }
clipboard::Action::Write(contents) => { clipboard::Action::Write(contents, kind) => {
clipboard.write(contents); clipboard.write(kind, contents);
} }
}, },
command::Action::Window(action) => match action { command::Action::Window(action) => match action {