mirror of
https://github.com/emilk/egui.git
synced 2026-08-30 21:30:03 -04:00
Use strongly typed CharIndex and ByteIndex + bug fixes (#8245)
Less risk of confusing the two. Found and fix a couple real bugs in the process! --------- Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -1,5 +1,9 @@
|
||||
//! All the data egui returns to the backend at the end of each frame.
|
||||
|
||||
use std::ops::Range;
|
||||
|
||||
use epaint::text::CharIndex;
|
||||
|
||||
use crate::{OrderedViewportIdMap, RepaintCause, ViewportOutput, WidgetType};
|
||||
|
||||
/// What egui emits each frame from [`crate::Context::run_ui`].
|
||||
@@ -554,7 +558,9 @@ pub struct WidgetInfo {
|
||||
pub value: Option<f64>,
|
||||
|
||||
/// Selected range of characters in [`Self::current_text_value`].
|
||||
pub text_selection: Option<std::ops::RangeInclusive<usize>>,
|
||||
///
|
||||
/// The range is `start..end` in *character* offsets (not bytes), with `end` exclusive.
|
||||
pub text_selection: Option<Range<CharIndex>>,
|
||||
|
||||
/// The hint text for text edit fields.
|
||||
pub hint_text: Option<String>,
|
||||
@@ -689,7 +695,7 @@ impl WidgetInfo {
|
||||
#[expect(clippy::needless_pass_by_value)]
|
||||
pub fn text_selection_changed(
|
||||
enabled: bool,
|
||||
text_selection: std::ops::RangeInclusive<usize>,
|
||||
text_selection: Range<CharIndex>,
|
||||
current_text_value: impl ToString,
|
||||
) -> Self {
|
||||
Self {
|
||||
|
||||
@@ -454,8 +454,8 @@ pub use epaint::{
|
||||
pub mod text {
|
||||
pub use crate::text_selection::CCursorRange;
|
||||
pub use epaint::text::{
|
||||
FontData, FontDefinitions, FontFamily, Fonts, Galley, LayoutJob, LayoutSection, TextFormat,
|
||||
TextWrapping, cursor::CCursor,
|
||||
ByteIndex, CharIndex, FontData, FontDefinitions, FontFamily, Fonts, Galley, LayoutJob,
|
||||
LayoutSection, TextFormat, TextWrapping, cursor::CCursor,
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
use emath::TSTransform;
|
||||
use epaint::text::CharIndex;
|
||||
|
||||
use crate::{Context, Galley, Id};
|
||||
|
||||
@@ -9,7 +10,8 @@ pub(crate) const MAX_CHARS_PER_TEXT_RUN: usize = 255;
|
||||
|
||||
/// Convert a (row, column) layout cursor position to a text run node ID and character index,
|
||||
/// accounting for rows that are split into multiple text runs.
|
||||
fn text_run_position(parent_id: Id, row: usize, column: usize) -> accesskit::TextPosition {
|
||||
fn text_run_position(parent_id: Id, row: usize, column: CharIndex) -> accesskit::TextPosition {
|
||||
let column = column.0;
|
||||
// When column lands exactly on a chunk boundary (e.g., 255), it refers to
|
||||
// the end of the previous chunk, not the start of a new one.
|
||||
let chunk_index = if column > 0 && column.is_multiple_of(MAX_CHARS_PER_TEXT_RUN) {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
use epaint::{Galley, text::cursor::CCursor};
|
||||
use epaint::{Galley, text::CharIndex, text::cursor::CCursor};
|
||||
|
||||
use crate::{Event, Id, Key, Modifiers, os::OperatingSystem};
|
||||
|
||||
@@ -49,7 +49,7 @@ impl CCursorRange {
|
||||
}
|
||||
|
||||
/// The range of selected character indices.
|
||||
pub fn as_sorted_char_range(&self) -> std::ops::Range<usize> {
|
||||
pub fn as_sorted_char_range(&self) -> std::ops::Range<CharIndex> {
|
||||
let [start, end] = self.sorted_cursors();
|
||||
std::ops::Range {
|
||||
start: start.index,
|
||||
@@ -237,7 +237,7 @@ fn ccursor_from_accesskit_text_position(
|
||||
if run_id.accesskit_id() == position.node {
|
||||
let column = chunk_idx * MAX_CHARS_PER_TEXT_RUN + position.character_index;
|
||||
return Some(CCursor {
|
||||
index: total_length + column,
|
||||
index: CharIndex(total_length + column),
|
||||
prefer_next_row: !(column == row.glyphs.len()
|
||||
&& !row.ends_with_newline
|
||||
&& (i + 1) < galley.rows.len()),
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
//! Text cursor changes/interaction, without modifying the text.
|
||||
|
||||
use epaint::text::{Galley, cursor::CCursor};
|
||||
use epaint::text::{ByteIndex, ByteRangeExt as _, CharIndex, Galley, cursor::CCursor};
|
||||
use unicode_segmentation::UnicodeSegmentation as _;
|
||||
|
||||
use crate::{NumExt as _, Rect, Response, Ui, epaint};
|
||||
@@ -129,11 +129,11 @@ fn select_word_at(text: &str, ccursor: CCursor) -> CCursorRange {
|
||||
}
|
||||
|
||||
fn select_line_at(text: &str, ccursor: CCursor) -> CCursorRange {
|
||||
if ccursor.index == 0 {
|
||||
if ccursor.index == CharIndex::ZERO {
|
||||
CCursorRange::two(ccursor, ccursor_next_line(text, ccursor))
|
||||
} else {
|
||||
let it = text.chars();
|
||||
let mut it = it.skip(ccursor.index - 1);
|
||||
let mut it = it.skip(ccursor.index.0 - 1);
|
||||
if let Some(char_before_cursor) = it.next() {
|
||||
if let Some(char_after_cursor) = it.next() {
|
||||
if (!is_linebreak(char_before_cursor)) && (!is_linebreak(char_after_cursor)) {
|
||||
@@ -178,26 +178,26 @@ fn ccursor_next_line(text: &str, ccursor: CCursor) -> CCursor {
|
||||
}
|
||||
|
||||
pub fn ccursor_previous_word(text: &str, ccursor: CCursor) -> CCursor {
|
||||
let num_chars = text.chars().count();
|
||||
let num_chars = CharIndex(text.chars().count());
|
||||
let reversed: String = text.graphemes(true).rev().collect();
|
||||
let boundary = next_word_boundary_char_index(&reversed, num_chars - ccursor.index);
|
||||
CCursor {
|
||||
index: num_chars
|
||||
- next_word_boundary_char_index(&reversed, num_chars - ccursor.index).min(num_chars),
|
||||
index: num_chars - boundary.min(num_chars),
|
||||
prefer_next_row: true,
|
||||
}
|
||||
}
|
||||
|
||||
fn ccursor_previous_line(text: &str, ccursor: CCursor) -> CCursor {
|
||||
let num_chars = text.chars().count();
|
||||
let num_chars = CharIndex(text.chars().count());
|
||||
let boundary = next_line_boundary_char_index(text.chars().rev(), num_chars - ccursor.index);
|
||||
CCursor {
|
||||
index: num_chars
|
||||
- next_line_boundary_char_index(text.chars().rev(), num_chars - ccursor.index),
|
||||
index: num_chars - boundary,
|
||||
prefer_next_row: true,
|
||||
}
|
||||
}
|
||||
|
||||
fn next_word_boundary_char_index(text: &str, cursor_ci: usize) -> usize {
|
||||
let mut current_char_idx = 0;
|
||||
fn next_word_boundary_char_index(text: &str, cursor_ci: CharIndex) -> CharIndex {
|
||||
let mut current_char_idx = CharIndex::ZERO;
|
||||
|
||||
for (_word_byte_index, word) in text.split_word_bound_indices() {
|
||||
let word_ci = current_char_idx;
|
||||
@@ -231,8 +231,11 @@ fn all_word_chars(text: &str) -> bool {
|
||||
text.chars().all(is_word_char)
|
||||
}
|
||||
|
||||
fn next_line_boundary_char_index(it: impl Iterator<Item = char>, mut index: usize) -> usize {
|
||||
let mut it = it.skip(index);
|
||||
fn next_line_boundary_char_index(
|
||||
it: impl Iterator<Item = char>,
|
||||
mut index: CharIndex,
|
||||
) -> CharIndex {
|
||||
let mut it = it.skip(index.0);
|
||||
if let Some(_first) = it.next() {
|
||||
index += 1;
|
||||
|
||||
@@ -260,36 +263,38 @@ fn is_linebreak(c: char) -> bool {
|
||||
/// Accepts and returns character offset (NOT byte offset!).
|
||||
pub fn find_line_start(text: &str, current_index: CCursor) -> CCursor {
|
||||
let byte_idx = byte_index_from_char_index(text, current_index.index);
|
||||
let text_before = &text[..byte_idx];
|
||||
let text_before = (ByteIndex::ZERO..byte_idx).slice(text);
|
||||
|
||||
if let Some(last_newline_byte) = text_before.rfind('\n') {
|
||||
let char_idx = char_index_from_byte_index(text, last_newline_byte + 1);
|
||||
let char_idx = char_index_from_byte_index(text, ByteIndex(last_newline_byte + 1));
|
||||
CCursor::new(char_idx)
|
||||
} else {
|
||||
CCursor::new(0)
|
||||
}
|
||||
}
|
||||
|
||||
pub fn byte_index_from_char_index(s: &str, char_index: usize) -> usize {
|
||||
pub fn byte_index_from_char_index(s: &str, char_index: CharIndex) -> ByteIndex {
|
||||
for (ci, (bi, _)) in s.char_indices().enumerate() {
|
||||
if ci == char_index {
|
||||
return bi;
|
||||
if ci == char_index.0 {
|
||||
return ByteIndex(bi);
|
||||
}
|
||||
}
|
||||
s.len()
|
||||
ByteIndex(s.len())
|
||||
}
|
||||
|
||||
pub fn char_index_from_byte_index(input: &str, byte_index: usize) -> usize {
|
||||
pub fn char_index_from_byte_index(input: &str, byte_index: ByteIndex) -> CharIndex {
|
||||
for (ci, (bi, _)) in input.char_indices().enumerate() {
|
||||
if bi == byte_index {
|
||||
return ci;
|
||||
if bi == byte_index.0 {
|
||||
return CharIndex(ci);
|
||||
}
|
||||
}
|
||||
|
||||
input.char_indices().last().map_or(0, |(i, _)| i + 1)
|
||||
// `byte_index` is at or past the end of the string (or not on a char boundary):
|
||||
// return the total number of characters.
|
||||
CharIndex(input.chars().count())
|
||||
}
|
||||
|
||||
pub fn slice_char_range(s: &str, char_range: std::ops::Range<usize>) -> &str {
|
||||
pub fn slice_char_range(s: &str, char_range: std::ops::Range<CharIndex>) -> &str {
|
||||
assert!(
|
||||
char_range.start <= char_range.end,
|
||||
"Invalid range, start must be less than end, but start = {}, end = {}",
|
||||
@@ -298,7 +303,7 @@ pub fn slice_char_range(s: &str, char_range: std::ops::Range<usize>) -> &str {
|
||||
);
|
||||
let start_byte = byte_index_from_char_index(s, char_range.start);
|
||||
let end_byte = byte_index_from_char_index(s, char_range.end);
|
||||
&s[start_byte..end_byte]
|
||||
(start_byte..end_byte).slice(s)
|
||||
}
|
||||
|
||||
/// The thin rectangle of one end of the selection, e.g. the primary cursor, in local galley coordinates.
|
||||
@@ -321,21 +326,21 @@ mod test {
|
||||
fn test_next_word_boundary_char_index() {
|
||||
// ASCII only
|
||||
let text = "abc d3f g_h i-j";
|
||||
assert_eq!(next_word_boundary_char_index(text, 1), 3);
|
||||
assert_eq!(next_word_boundary_char_index(text, 3), 7);
|
||||
assert_eq!(next_word_boundary_char_index(text, 9), 11);
|
||||
assert_eq!(next_word_boundary_char_index(text, 12), 13);
|
||||
assert_eq!(next_word_boundary_char_index(text, 13), 15);
|
||||
assert_eq!(next_word_boundary_char_index(text, 15), 15);
|
||||
assert_eq!(next_word_boundary_char_index(text, CharIndex(1)).0, 3);
|
||||
assert_eq!(next_word_boundary_char_index(text, CharIndex(3)).0, 7);
|
||||
assert_eq!(next_word_boundary_char_index(text, CharIndex(9)).0, 11);
|
||||
assert_eq!(next_word_boundary_char_index(text, CharIndex(12)).0, 13);
|
||||
assert_eq!(next_word_boundary_char_index(text, CharIndex(13)).0, 15);
|
||||
assert_eq!(next_word_boundary_char_index(text, CharIndex(15)).0, 15);
|
||||
|
||||
assert_eq!(next_word_boundary_char_index("", 0), 0);
|
||||
assert_eq!(next_word_boundary_char_index("", 1), 0);
|
||||
assert_eq!(next_word_boundary_char_index("", CharIndex(0)).0, 0);
|
||||
assert_eq!(next_word_boundary_char_index("", CharIndex(1)).0, 0);
|
||||
|
||||
// ASCII only
|
||||
let text = "abc.def.ghi";
|
||||
assert_eq!(next_word_boundary_char_index(text, 1), 3);
|
||||
assert_eq!(next_word_boundary_char_index(text, 3), 7);
|
||||
assert_eq!(next_word_boundary_char_index(text, 7), 11);
|
||||
assert_eq!(next_word_boundary_char_index(text, CharIndex(1)).0, 3);
|
||||
assert_eq!(next_word_boundary_char_index(text, CharIndex(3)).0, 7);
|
||||
assert_eq!(next_word_boundary_char_index(text, CharIndex(7)).0, 11);
|
||||
|
||||
// Unicode graphemes, some of which consist of multiple Unicode characters,
|
||||
// !!! Unicode character is not always what is tranditionally considered a character,
|
||||
@@ -343,32 +348,66 @@ mod test {
|
||||
// handling of and around emojis is kind of weird and is not consistent across
|
||||
// text editors and browsers
|
||||
let text = "❤️👍 skvělá knihovna 👍❤️";
|
||||
assert_eq!(next_word_boundary_char_index(text, 0), 2);
|
||||
assert_eq!(next_word_boundary_char_index(text, 2), 3); // this does not skip the space between thumbs-up and 'skvělá'
|
||||
assert_eq!(next_word_boundary_char_index(text, 6), 10);
|
||||
assert_eq!(next_word_boundary_char_index(text, 9), 10);
|
||||
assert_eq!(next_word_boundary_char_index(text, 12), 19);
|
||||
assert_eq!(next_word_boundary_char_index(text, 15), 19);
|
||||
assert_eq!(next_word_boundary_char_index(text, 19), 20);
|
||||
assert_eq!(next_word_boundary_char_index(text, 20), 21);
|
||||
assert_eq!(next_word_boundary_char_index(text, CharIndex(0)).0, 2);
|
||||
assert_eq!(next_word_boundary_char_index(text, CharIndex(2)).0, 3); // this does not skip the space between thumbs-up and 'skvělá'
|
||||
assert_eq!(next_word_boundary_char_index(text, CharIndex(6)).0, 10);
|
||||
assert_eq!(next_word_boundary_char_index(text, CharIndex(9)).0, 10);
|
||||
assert_eq!(next_word_boundary_char_index(text, CharIndex(12)).0, 19);
|
||||
assert_eq!(next_word_boundary_char_index(text, CharIndex(15)).0, 19);
|
||||
assert_eq!(next_word_boundary_char_index(text, CharIndex(19)).0, 20);
|
||||
assert_eq!(next_word_boundary_char_index(text, CharIndex(20)).0, 21);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_previous_word() {
|
||||
let text = "abc def ghi";
|
||||
assert_eq!(ccursor_previous_word(text, CCursor::new(7)).index, 4);
|
||||
assert_eq!(ccursor_previous_word(text, CCursor::new(5)).index, 4);
|
||||
assert_eq!(ccursor_previous_word(text, CCursor::new(4)).index, 0);
|
||||
assert_eq!(ccursor_previous_word(text, CCursor::new(0)).index, 0);
|
||||
assert_eq!(ccursor_previous_word(text, CCursor::new(7)).index.0, 4);
|
||||
assert_eq!(ccursor_previous_word(text, CCursor::new(5)).index.0, 4);
|
||||
assert_eq!(ccursor_previous_word(text, CCursor::new(4)).index.0, 0);
|
||||
assert_eq!(ccursor_previous_word(text, CCursor::new(0)).index.0, 0);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_next_word() {
|
||||
let text = "abc def ghi";
|
||||
assert_eq!(ccursor_next_word(text, CCursor::new(0)).index, 3);
|
||||
assert_eq!(ccursor_next_word(text, CCursor::new(3)).index, 7);
|
||||
assert_eq!(ccursor_next_word(text, CCursor::new(7)).index, 11);
|
||||
assert_eq!(ccursor_next_word(text, CCursor::new(11)).index, 11);
|
||||
assert_eq!(ccursor_next_word(text, CCursor::new(0)).index.0, 3);
|
||||
assert_eq!(ccursor_next_word(text, CCursor::new(3)).index.0, 7);
|
||||
assert_eq!(ccursor_next_word(text, CCursor::new(7)).index.0, 11);
|
||||
assert_eq!(ccursor_next_word(text, CCursor::new(11)).index.0, 11);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_index_conversion_roundtrip() {
|
||||
// "é" is 2 bytes, "👍" is 4 bytes.
|
||||
let text = "aé👍b";
|
||||
let char_count = text.chars().count(); // 4
|
||||
assert_eq!(char_count, 4);
|
||||
|
||||
// char -> byte, including the end index
|
||||
assert_eq!(byte_index_from_char_index(text, CharIndex(0)).0, 0);
|
||||
assert_eq!(byte_index_from_char_index(text, CharIndex(1)).0, 1);
|
||||
assert_eq!(byte_index_from_char_index(text, CharIndex(2)).0, 3);
|
||||
assert_eq!(byte_index_from_char_index(text, CharIndex(3)).0, 7);
|
||||
assert_eq!(byte_index_from_char_index(text, CharIndex(4)).0, 8);
|
||||
// Past the end clamps to the byte length:
|
||||
assert_eq!(
|
||||
byte_index_from_char_index(text, CharIndex(99)).0,
|
||||
text.len()
|
||||
);
|
||||
|
||||
// byte -> char, including the end index
|
||||
assert_eq!(char_index_from_byte_index(text, ByteIndex(0)).0, 0);
|
||||
assert_eq!(char_index_from_byte_index(text, ByteIndex(1)).0, 1);
|
||||
assert_eq!(char_index_from_byte_index(text, ByteIndex(3)).0, 2);
|
||||
assert_eq!(char_index_from_byte_index(text, ByteIndex(7)).0, 3);
|
||||
// The end byte index must map to the character count, not to some byte offset:
|
||||
assert_eq!(char_index_from_byte_index(text, ByteIndex(text.len())).0, 4);
|
||||
// Past the end clamps to the character count:
|
||||
assert_eq!(char_index_from_byte_index(text, ByteIndex(99)).0, 4);
|
||||
|
||||
// Empty string:
|
||||
assert_eq!(byte_index_from_char_index("", CharIndex(0)).0, 0);
|
||||
assert_eq!(char_index_from_byte_index("", ByteIndex(0)).0, 0);
|
||||
}
|
||||
|
||||
#[test]
|
||||
@@ -380,16 +419,16 @@ mod test {
|
||||
range.primary.index.min(range.secondary.index),
|
||||
range.primary.index.max(range.secondary.index),
|
||||
);
|
||||
assert_eq!(lo, 0);
|
||||
assert_eq!(hi, 5);
|
||||
assert_eq!(lo.0, 0);
|
||||
assert_eq!(hi.0, 5);
|
||||
|
||||
let range = select_word_at(text, CCursor::new(8));
|
||||
let (lo, hi) = (
|
||||
range.primary.index.min(range.secondary.index),
|
||||
range.primary.index.max(range.secondary.index),
|
||||
);
|
||||
assert_eq!(lo, 6);
|
||||
assert_eq!(hi, 11);
|
||||
assert_eq!(lo.0, 6);
|
||||
assert_eq!(hi.0, 11);
|
||||
}
|
||||
|
||||
#[test]
|
||||
@@ -401,10 +440,10 @@ mod test {
|
||||
let start = std::time::Instant::now();
|
||||
|
||||
let next = ccursor_next_word(&large_text, CCursor::new(len - 10));
|
||||
assert!(next.index <= len);
|
||||
assert!(next.index.0 <= len);
|
||||
|
||||
let prev = ccursor_previous_word(&large_text, CCursor::new(len - 10));
|
||||
assert!(prev.index < len);
|
||||
assert!(prev.index.0 < len);
|
||||
|
||||
let range = select_word_at(&large_text, CCursor::new(len - 3));
|
||||
let lo = range.primary.index.min(range.secondary.index);
|
||||
@@ -459,9 +498,9 @@ mod tests {
|
||||
for (text, cursor, expected) in cases {
|
||||
let result = ccursor_previous_word(text, CCursor::new(cursor));
|
||||
assert_eq!(
|
||||
result.index, expected,
|
||||
result.index.0, expected,
|
||||
"text={text:?}, cursor={cursor}, got={}, expected={expected}",
|
||||
result.index
|
||||
result.index.0
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -57,9 +57,9 @@ pub fn paint_text_selection(
|
||||
|
||||
if !row.glyphs.is_empty() {
|
||||
// Change color of the selected text:
|
||||
let first_glyph_index = if ri == min.row { min.column } else { 0 };
|
||||
let first_glyph_index = if ri == min.row { min.column.0 } else { 0 };
|
||||
let last_glyph_index = if ri == max.row {
|
||||
max.column
|
||||
max.column.0
|
||||
} else {
|
||||
row.glyphs.len()
|
||||
};
|
||||
|
||||
@@ -899,7 +899,7 @@ impl TextEdit<'_> {
|
||||
)
|
||||
});
|
||||
} else if selection_changed && let Some(cursor_range) = cursor_range {
|
||||
let char_range = cursor_range.primary.index..=cursor_range.secondary.index;
|
||||
let char_range = cursor_range.as_sorted_char_range();
|
||||
let info = WidgetInfo::text_selection_changed(
|
||||
ui.is_enabled(),
|
||||
char_range,
|
||||
|
||||
@@ -1,6 +1,11 @@
|
||||
use std::{borrow::Cow, ops::Range};
|
||||
|
||||
use epaint::{Galley, text::cursor::CCursor};
|
||||
use epaint::{
|
||||
Galley,
|
||||
text::{
|
||||
ByteIndex, ByteRangeExt as _, CharIndex, CharRange, CharRangeExt as _, cursor::CCursor,
|
||||
},
|
||||
};
|
||||
|
||||
/// One `\t` character is this many spaces wide (for indentation purposes).
|
||||
const TAB_SIZE: usize = 4;
|
||||
@@ -31,36 +36,36 @@ pub trait TextBuffer {
|
||||
///
|
||||
/// # Return
|
||||
/// Returns how many *characters* were successfully inserted
|
||||
fn insert_text(&mut self, text: &str, char_index: usize) -> usize;
|
||||
fn insert_text(&mut self, text: &str, char_index: CharIndex) -> usize;
|
||||
|
||||
/// Deletes a range of text `char_range` from this buffer.
|
||||
///
|
||||
/// # Notes
|
||||
/// `char_range` is a *character range*, not a byte range.
|
||||
fn delete_char_range(&mut self, char_range: Range<usize>);
|
||||
fn delete_char_range(&mut self, char_range: Range<CharIndex>);
|
||||
|
||||
/// Reads the given character range.
|
||||
fn char_range(&self, char_range: Range<usize>) -> &str {
|
||||
fn char_range(&self, char_range: Range<CharIndex>) -> &str {
|
||||
slice_char_range(self.as_str(), char_range)
|
||||
}
|
||||
|
||||
fn byte_index_from_char_index(&self, char_index: usize) -> usize {
|
||||
fn byte_index_from_char_index(&self, char_index: CharIndex) -> ByteIndex {
|
||||
byte_index_from_char_index(self.as_str(), char_index)
|
||||
}
|
||||
|
||||
fn char_index_from_byte_index(&self, char_index: usize) -> usize {
|
||||
char_index_from_byte_index(self.as_str(), char_index)
|
||||
fn char_index_from_byte_index(&self, byte_index: ByteIndex) -> CharIndex {
|
||||
char_index_from_byte_index(self.as_str(), byte_index)
|
||||
}
|
||||
|
||||
/// Clears all characters in this buffer
|
||||
fn clear(&mut self) {
|
||||
self.delete_char_range(0..self.as_str().len());
|
||||
self.delete_char_range(CharRange::full(self.as_str()));
|
||||
}
|
||||
|
||||
/// Replaces all contents of this string with `text`
|
||||
fn replace_with(&mut self, text: &str) {
|
||||
self.clear();
|
||||
self.insert_text(text, 0);
|
||||
self.insert_text(text, CharIndex(0));
|
||||
}
|
||||
|
||||
/// Clears all characters in this buffer and returns a string of the contents.
|
||||
@@ -90,12 +95,12 @@ pub trait TextBuffer {
|
||||
fn decrease_indentation(&mut self, ccursor: &mut CCursor) {
|
||||
let line_start = find_line_start(self.as_str(), *ccursor);
|
||||
|
||||
let remove_len = if self.as_str().chars().nth(line_start.index) == Some('\t') {
|
||||
let remove_len = if self.as_str().chars().nth(line_start.index.0) == Some('\t') {
|
||||
Some(1)
|
||||
} else if self
|
||||
.as_str()
|
||||
.chars()
|
||||
.skip(line_start.index)
|
||||
.skip(line_start.index.0)
|
||||
.take(TAB_SIZE)
|
||||
.all(|c| c == ' ')
|
||||
{
|
||||
@@ -126,7 +131,7 @@ pub trait TextBuffer {
|
||||
}
|
||||
|
||||
fn delete_previous_char(&mut self, ccursor: CCursor) -> CCursor {
|
||||
if ccursor.index > 0 {
|
||||
if CharIndex::ZERO < ccursor.index {
|
||||
let max_ccursor = ccursor;
|
||||
let min_ccursor = max_ccursor - 1;
|
||||
self.delete_selected_ccursor_range([min_ccursor, max_ccursor])
|
||||
@@ -190,8 +195,8 @@ pub trait TextBuffer {
|
||||
/// impl TextBuffer for ExampleBuffer {
|
||||
/// fn is_mutable(&self) -> bool { unimplemented!() }
|
||||
/// fn as_str(&self) -> &str { unimplemented!() }
|
||||
/// fn insert_text(&mut self, text: &str, char_index: usize) -> usize { unimplemented!() }
|
||||
/// fn delete_char_range(&mut self, char_range: std::ops::Range<usize>) { unimplemented!() }
|
||||
/// fn insert_text(&mut self, text: &str, char_index: egui::text::CharIndex) -> usize { unimplemented!() }
|
||||
/// fn delete_char_range(&mut self, char_range: std::ops::Range<egui::text::CharIndex>) { unimplemented!() }
|
||||
///
|
||||
/// // Implement it like the following:
|
||||
/// fn type_id(&self) -> TypeId {
|
||||
@@ -220,17 +225,17 @@ impl TextBuffer for String {
|
||||
self.as_ref()
|
||||
}
|
||||
|
||||
fn insert_text(&mut self, text: &str, char_index: usize) -> usize {
|
||||
fn insert_text(&mut self, text: &str, char_index: CharIndex) -> usize {
|
||||
// Get the byte index from the character index
|
||||
let byte_idx = byte_index_from_char_index(self.as_str(), char_index);
|
||||
|
||||
// Then insert the string
|
||||
self.insert_str(byte_idx, text);
|
||||
self.insert_str(byte_idx.into(), text);
|
||||
|
||||
text.chars().count()
|
||||
}
|
||||
|
||||
fn delete_char_range(&mut self, char_range: Range<usize>) {
|
||||
fn delete_char_range(&mut self, char_range: Range<CharIndex>) {
|
||||
assert!(
|
||||
char_range.start <= char_range.end,
|
||||
"start must be <= end, but got {char_range:?}"
|
||||
@@ -241,7 +246,7 @@ impl TextBuffer for String {
|
||||
let byte_end = byte_index_from_char_index(self.as_str(), char_range.end);
|
||||
|
||||
// Then drain all characters within this range
|
||||
self.drain(byte_start..byte_end);
|
||||
self.drain((byte_start..byte_end).as_usize());
|
||||
}
|
||||
|
||||
fn clear(&mut self) {
|
||||
@@ -270,11 +275,11 @@ impl TextBuffer for Cow<'_, str> {
|
||||
self.as_ref()
|
||||
}
|
||||
|
||||
fn insert_text(&mut self, text: &str, char_index: usize) -> usize {
|
||||
fn insert_text(&mut self, text: &str, char_index: CharIndex) -> usize {
|
||||
<String as TextBuffer>::insert_text(self.to_mut(), text, char_index)
|
||||
}
|
||||
|
||||
fn delete_char_range(&mut self, char_range: Range<usize>) {
|
||||
fn delete_char_range(&mut self, char_range: Range<CharIndex>) {
|
||||
<String as TextBuffer>::delete_char_range(self.to_mut(), char_range);
|
||||
}
|
||||
|
||||
@@ -305,11 +310,11 @@ impl TextBuffer for &str {
|
||||
self
|
||||
}
|
||||
|
||||
fn insert_text(&mut self, _text: &str, _ch_idx: usize) -> usize {
|
||||
fn insert_text(&mut self, _text: &str, _ch_idx: CharIndex) -> usize {
|
||||
0
|
||||
}
|
||||
|
||||
fn delete_char_range(&mut self, _ch_range: Range<usize>) {}
|
||||
fn delete_char_range(&mut self, _ch_range: Range<CharIndex>) {}
|
||||
|
||||
fn type_id(&self) -> std::any::TypeId {
|
||||
std::any::TypeId::of::<&str>()
|
||||
|
||||
Reference in New Issue
Block a user