summaryrefslogtreecommitdiffstats
path: root/graphics
diff options
context:
space:
mode:
authorLibravatar PgBiel <9021226+PgBiel@users.noreply.github.com>2024-03-10 15:47:38 -0300
committerLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2024-07-08 01:16:31 +0200
commit76f5bc2ccebb4c8b76ef81856c52da5b5e7c8960 (patch)
tree22673d11b6878a19eda279ef24add1de11dc3d16 /graphics
parent23d9497e7ff54f48a4c07247d7f1f68270b510d2 (diff)
downloadiced-76f5bc2ccebb4c8b76ef81856c52da5b5e7c8960.tar.gz
iced-76f5bc2ccebb4c8b76ef81856c52da5b5e7c8960.tar.bz2
iced-76f5bc2ccebb4c8b76ef81856c52da5b5e7c8960.zip
add SelectAll to TextEditor
Diffstat (limited to 'graphics')
-rw-r--r--graphics/src/text/editor.rs21
1 files changed, 21 insertions, 0 deletions
diff --git a/graphics/src/text/editor.rs b/graphics/src/text/editor.rs
index c488a51c..36b4ca6e 100644
--- a/graphics/src/text/editor.rs
+++ b/graphics/src/text/editor.rs
@@ -385,6 +385,27 @@ impl editor::Editor for Editor {
}));
}
}
+ Action::SelectAll => {
+ let buffer = editor.buffer();
+ if buffer.lines.len() > 1
+ || buffer
+ .lines
+ .first()
+ .is_some_and(|line| !line.text().is_empty())
+ {
+ let cursor = editor.cursor();
+ editor.set_select_opt(Some(cosmic_text::Cursor {
+ line: 0,
+ index: 0,
+ ..cursor
+ }));
+
+ editor.action(
+ font_system.raw(),
+ motion_to_action(Motion::DocumentEnd),
+ );
+ }
+ }
// Editing events
Action::Edit(edit) => {