cranpose_ui/text_selection.rs
1//! Native-grade text selection primitives for `BasicTextField`.
2//!
3//! This module holds the pure, unit-tested building blocks the text field uses
4//! to offer Android/iOS-style selection: tap-count classification, word and
5//! line/paragraph boundary detection, and the geometry of the draggable
6//! teardrop selection handles (their shapes, their hit regions, and the
7//! selection math that a handle drag produces).
8//!
9//! Keeping these as free functions makes the touch behavior testable without a
10//! renderer and keeps `TextFieldModifierNode` focused on wiring.
11
12/// Maximum time between taps that still counts as a multi-tap, in milliseconds.
13pub const MULTI_TAP_TIMEOUT_MS: u128 = 500;
14
15/// Maximum distance (px) between consecutive taps that still counts as a
16/// multi-tap. A tap that lands far from the previous one starts a fresh
17/// single tap even if it arrives quickly, matching Android's `ViewConfiguration`
18/// double-tap slop behavior.
19pub const MULTI_TAP_SLOP_PX: f32 = 24.0;
20
21/// The unit of text a tap gesture selects, growing with the tap count the way
22/// mature text editors do (Android `TextView`, iOS `UITextView`, VS Code):
23///
24/// * 1 tap → [`Caret`](SelectionGranularity::Caret) (place the cursor);
25/// * 2 taps → [`Word`](SelectionGranularity::Word);
26/// * 3 taps → [`Line`](SelectionGranularity::Line);
27/// * 4 taps → [`Paragraph`](SelectionGranularity::Paragraph);
28/// * 5+ taps → cycle back through word → line → paragraph.
29#[derive(Clone, Copy, Debug, PartialEq, Eq)]
30pub enum SelectionGranularity {
31 /// Collapsed caret (a single tap places the cursor).
32 Caret,
33 /// The word under the tap.
34 Word,
35 /// The line under the tap (delimited by `\n`).
36 Line,
37 /// The paragraph under the tap (delimited by blank lines).
38 Paragraph,
39}
40
41/// Classifies a press into a 1-based tap count from the previous tap's count,
42/// the time since it, and the distance from it.
43///
44/// `previous` is the last tap's `(count, x, y)` or `None` for the first tap. A
45/// tap increments the count only when it lands within both the timeout and the
46/// slop radius; otherwise it restarts at `1`. The count is **not** wrapped here
47/// — the granularity mapping ([`tap_selection_granularity`]) cycles instead, so
48/// the field can keep escalating (word → line → paragraph → word …) as long as
49/// the finger keeps tapping in place.
50pub fn classify_tap_count(
51 previous: Option<(u8, f32, f32)>,
52 elapsed_ms: u128,
53 x: f32,
54 y: f32,
55 timeout_ms: u128,
56 slop_px: f32,
57) -> u8 {
58 let Some((prev_count, prev_x, prev_y)) = previous else {
59 return 1;
60 };
61 let within_time = elapsed_ms <= timeout_ms;
62 let dx = x - prev_x;
63 let dy = y - prev_y;
64 let within_slop = dx * dx + dy * dy <= slop_px * slop_px;
65 if !within_time || !within_slop {
66 return 1;
67 }
68 prev_count.saturating_add(1)
69}
70
71/// Resolves the effective tap count for a press, folding in the "tap inside an
72/// existing selection" gesture so it drives the same word → line → paragraph
73/// granularity ladder ([`tap_selection_granularity`]) as a rapid multi-tap.
74///
75/// Inputs:
76/// * `raw_tap_count` — the time-and-slop-gated multi-tap count from
77/// [`classify_tap_count`] (2+ means a genuine rapid multi-tap in progress);
78/// * `previous_count` — the effective count the *previous* press resolved to
79/// (the field remembers it as its click count);
80/// * `tap_in_selection` — the press landed inside the current, non-collapsed
81/// selection;
82/// * `repeat_in_place` — the press landed within the multi-tap slop of the
83/// previous press, **independent of timing** (the same spot, tapped again).
84///
85/// Behavior:
86/// * a rapid multi-tap (`raw_tap_count >= 2`) uses its own running count, so
87/// double→word, triple→line, … keep working exactly as before;
88/// * a lone tap inside a selection selects the word under the finger, and each
89/// further tap at the *same spot* climbs the ladder (word → line → paragraph →
90/// word …) even when it arrives slowly (the multi-tap timeout has lapsed) —
91/// users tap-then-look-then-tap, so the growth is keyed on location, not time;
92/// * a lone tap at a *new* spot inside the selection re-grabs that word (resets
93/// to word); and
94/// * a lone tap outside any selection is left as-is (a single tap → caret).
95pub fn resolve_selection_tap_count(
96 raw_tap_count: u8,
97 previous_count: u8,
98 tap_in_selection: bool,
99 repeat_in_place: bool,
100) -> u8 {
101 if raw_tap_count >= 2 {
102 raw_tap_count
103 } else if tap_in_selection {
104 if repeat_in_place {
105 // Keep climbing the granularity ladder at the same spot.
106 previous_count.max(1).saturating_add(1)
107 } else {
108 // First tap inside the selection (or a tap on a different word):
109 // grab the word under the finger.
110 2
111 }
112 } else {
113 raw_tap_count
114 }
115}
116
117/// Maps a 1-based tap count to the granularity it selects.
118///
119/// A single tap places the caret; two taps select the word, three the line,
120/// four the paragraph, and every further tap cycles back through
121/// word → line → paragraph so a resting finger keeps toggling between the three
122/// range granularities (matching desktop editors and iOS).
123pub fn tap_selection_granularity(tap_count: u8) -> SelectionGranularity {
124 match tap_count {
125 0 | 1 => SelectionGranularity::Caret,
126 n => match (n - 2) % 3 {
127 0 => SelectionGranularity::Word,
128 1 => SelectionGranularity::Line,
129 _ => SelectionGranularity::Paragraph,
130 },
131 }
132}
133
134/// Returns the byte range `[start, end)` of the line containing `pos`, delimited
135/// by `\n` (the newline itself is excluded from the range).
136///
137/// Used for triple-tap line selection. Byte offsets always land on `char`
138/// boundaries because `\n` is a single-byte ASCII character.
139pub fn find_line_boundaries(text: &str, pos: usize) -> (usize, usize) {
140 let pos = pos.min(text.len());
141 let start = text[..pos].rfind('\n').map(|i| i + 1).unwrap_or(0);
142 let end = text[pos..]
143 .find('\n')
144 .map(|i| pos + i)
145 .unwrap_or(text.len());
146 (start, end)
147}
148
149/// Returns the byte range `[start, end)` of the paragraph containing `pos`.
150///
151/// Paragraphs are delimited by blank lines — a run of two or more consecutive
152/// `\n` — so a fourth tap grows the selection from one line to the whole block
153/// of text around it. Text with no blank line is a single paragraph (the whole
154/// string). Byte offsets land on `char` boundaries because `\n` is single-byte
155/// ASCII. Unicode-aware: multi-byte characters inside the paragraph are spanned
156/// whole.
157pub fn find_paragraph_boundaries(text: &str, pos: usize) -> (usize, usize) {
158 let pos = pos.min(text.len());
159 // Start: just after the last blank-line separator at or before `pos`.
160 let start = text[..pos]
161 .rfind("\n\n")
162 .map(|i| {
163 // Skip the whole run of blank lines so the paragraph starts on its
164 // first non-empty line.
165 let mut s = i + 1;
166 while text[s..].starts_with('\n') {
167 s += 1;
168 }
169 s
170 })
171 .unwrap_or(0);
172 // End: the next blank-line separator at or after `pos`.
173 let end = text[pos..]
174 .find("\n\n")
175 .map(|i| pos + i)
176 .unwrap_or(text.len());
177 (start.min(end), end)
178}
179
180/// Which visual line a caret/handle at a soft-wrap boundary belongs to. At a
181/// shared boundary byte (the end of one wrapped visual line IS the start of
182/// the next — mid-word wraps produce these) the offset alone is ambiguous:
183///
184/// * [`LineAffinity::Upstream`] anchors to the END of the upper line — the
185/// glyph a dragging finger means. Selection END and cursor handles, the
186/// drawn caret, and the loupe use this; without it a drag along a wrapped
187/// line's right edge snaps the handle one line DOWN and to the left edge.
188/// * [`LineAffinity::Downstream`] anchors to the START of the lower line —
189/// where the first selected glyph actually renders. Selection START handles
190/// and highlight geometry use this.
191#[derive(Clone, Copy, Debug, PartialEq, Eq)]
192pub enum LineAffinity {
193 Upstream,
194 Downstream,
195}
196
197/// Given the source byte ranges of the **visual** (wrapped) lines and a caret
198/// byte `offset`, returns the `(visual_line_index, line_start_byte)` the caret
199/// sits on.
200///
201/// The caret belongs to the last visual line whose start is at or before
202/// `offset`, except at a shared soft-wrap boundary where `affinity` decides
203/// (see [`LineAffinity`]):
204/// * a caret in the middle of a visual line resolves to that line;
205/// * a caret at the very end of the text sits on the last visual line.
206///
207/// This is the wrap-aware replacement for counting logical `\n` lines: without
208/// it, a caret on a wrapped line's second visual line is drawn on the first (and
209/// its x runs off the right edge), even though typing and the magnifier place it
210/// correctly. Returns `(0, 0)` when there are no ranges.
211pub fn caret_visual_line(
212 ranges: &[std::ops::Range<usize>],
213 offset: usize,
214 affinity: LineAffinity,
215) -> (usize, usize) {
216 let mut result = (0usize, 0usize);
217 for (index, range) in ranges.iter().enumerate() {
218 if range.start <= offset {
219 // A SHARED boundary (the previous line ends exactly where this one
220 // starts — soft wrap, no separator byte) belongs upstream to the
221 // upper line's end. A hard `\n` never shares (the ranges gap over
222 // the separator), and an empty upper line never captures.
223 if affinity == LineAffinity::Upstream
224 && index > 0
225 && range.start == offset
226 && ranges[index - 1].end == offset
227 && ranges[index - 1].start < offset
228 {
229 break;
230 }
231 result = (index, range.start);
232 } else {
233 break;
234 }
235 }
236 result
237}
238
239/// Downward travel that follows with the original finger-to-handle offset
240/// before the visibility drift starts.
241pub const GRAB_DIRECT_FOLLOW_DISTANCE: f32 = 8.0;
242/// Additional downward travel over which the handle moves into full view.
243pub const GRAB_VISIBILITY_DRIFT_DISTANCE: f32 = 48.0;
244/// Extra clearance (dp) below the handle dot once fully visible above the
245/// finger.
246pub const GRAB_BIAS_VIEW_CLEARANCE: f32 = 4.0;
247
248/// The drift target: bias placing the finger just below the handle dot
249/// (tip + dot + clearance), so the whole lollipop stays visible above it.
250pub fn grab_bias_full_view() -> f32 {
251 -(2.0 * HANDLE_RADIUS + GRAB_BIAS_VIEW_CLEARANCE)
252}
253
254/// Finger-to-handle relationship for one drag. The first phase preserves the
255/// captured offset exactly, the second shifts the handle above the finger,
256/// and the third preserves that final offset exactly. Progress is based on
257/// the furthest displacement from the grab, so event cadence and small
258/// reversals cannot change the result.
259#[derive(Clone, Copy, Debug, PartialEq)]
260pub struct HandleGrabOffset {
261 initial_bias: f32,
262 bias: f32,
263 start_y: f32,
264 furthest_y: f32,
265 drift_progress: f32,
266}
267
268impl HandleGrabOffset {
269 pub fn begin(handle_tip_y: f32, finger_y: f32) -> Self {
270 let initial_bias = handle_tip_y - finger_y;
271 Self {
272 initial_bias,
273 bias: initial_bias,
274 start_y: finger_y,
275 furthest_y: finger_y,
276 drift_progress: 0.0,
277 }
278 }
279
280 pub fn track(&mut self, finger_y: f32) -> f32 {
281 self.furthest_y = self.furthest_y.max(finger_y);
282 let travel = (self.furthest_y - self.start_y - GRAB_DIRECT_FOLLOW_DISTANCE).max(0.0);
283 let t = (travel / GRAB_VISIBILITY_DRIFT_DISTANCE).clamp(0.0, 1.0);
284 self.drift_progress = t * t * (3.0 - 2.0 * t);
285 let full_view = self.initial_bias.min(grab_bias_full_view());
286 self.bias = self.initial_bias + (full_view - self.initial_bias) * self.drift_progress;
287 self.bias
288 }
289
290 pub fn bias(&self) -> f32 {
291 self.bias
292 }
293
294 pub fn drift_progress(&self) -> f32 {
295 self.drift_progress
296 }
297}
298
299/// Which selection handle a lollipop represents.
300#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash)]
301pub enum HandleKind {
302 /// The cursor handle shown for a collapsed selection: the caret stem with a
303 /// round grab dot hanging below the line (like the end handle).
304 Cursor,
305 /// The start (leftmost) selection handle: dot ON TOP of the line, stem
306 /// spanning the line box below it.
307 SelectionStart,
308 /// The end (rightmost) selection handle: stem spanning the line box, dot
309 /// hanging BELOW it.
310 SelectionEnd,
311}
312
313/// Radius of a selection/cursor handle dot in dp (the reference dot is
314/// 16.2 physical px at 3x ≈ a 16 dp circle).
315pub const HANDLE_RADIUS: f32 = 8.0;
316
317/// Width of the handle stem in dp (measured 6 px at 3x = 2 dp — the same
318/// weight as the caret).
319pub const HANDLE_STEM_WIDTH: f32 = 2.0;
320
321/// How far the dot dips INTO the line box (dp): the reference start dot's
322/// bottom sits ~5 px (1.7 dp) below the line-box top, the end dot's top ~6 px
323/// above the line-box bottom, so dot and stem read as one continuous shape.
324pub const HANDLE_DOT_LINE_OVERLAP: f32 = 2.0;
325
326/// SVG path data for a handle lollipop at a text edge.
327///
328/// `anchor_x` is the text edge (caret / selection endpoint) x; the line box
329/// spans `line_top .. line_bottom`. The stem (width
330/// [`HANDLE_STEM_WIDTH`]) always spans the line box, centered on `anchor_x`;
331/// the dot (radius `radius`) sits tangent just outside the line box — above it
332/// for [`SelectionStart`](HandleKind::SelectionStart), below it for
333/// [`SelectionEnd`](HandleKind::SelectionEnd) and
334/// [`Cursor`](HandleKind::Cursor) — overlapping the box edge by
335/// [`HANDLE_DOT_LINE_OVERLAP`] so the two read as one shape.
336pub fn handle_path_data(
337 kind: HandleKind,
338 anchor_x: f32,
339 line_top: f32,
340 line_bottom: f32,
341 radius: f32,
342) -> String {
343 let r = radius.max(0.0);
344 let half_stem = HANDLE_STEM_WIDTH * 0.5;
345 let (left, right) = (anchor_x - half_stem, anchor_x + half_stem);
346 let stem = |top: f32, bottom: f32| {
347 format!("M {left} {top} L {right} {top} L {right} {bottom} L {left} {bottom} Z")
348 };
349 let dot = |cy: f32| {
350 // Sweep flag 1 keeps the circle CLOCKWISE like the stem rectangle:
351 // with the NonZero fill rule, same-direction subpaths union; opposite
352 // windings cancel where dot and stem overlap, punching a notch at
353 // the joint.
354 format!(
355 "M {x0} {cy} A {r} {r} 0 1 1 {x1} {cy} A {r} {r} 0 1 1 {x0} {cy} Z",
356 x0 = anchor_x - r,
357 x1 = anchor_x + r,
358 )
359 };
360 match kind {
361 HandleKind::SelectionStart => {
362 // Dot on top: center a radius above the line top, minus the overlap.
363 let cy = line_top - r + HANDLE_DOT_LINE_OVERLAP;
364 format!("{} {}", stem(line_top, line_bottom), dot(cy))
365 }
366 HandleKind::SelectionEnd | HandleKind::Cursor => {
367 // Dot below: center a radius under the line bottom, minus overlap.
368 let cy = line_bottom + r - HANDLE_DOT_LINE_OVERLAP;
369 format!("{} {}", stem(line_top, line_bottom), dot(cy))
370 }
371 }
372}
373
374/// Finger-sized grab slop (px) added around a handle's drawn teardrop to enlarge
375/// its touch target, matching Android's generous handle hit area. A bare
376/// teardrop (~2·[`HANDLE_RADIUS`] across) is far smaller than a fingertip, so a
377/// touch-DOWN aimed at a handle routinely lands a few px off it; without this
378/// slop the press falls through to the field below and places a caret, which
379/// collapses the selection. The slop is applied to the sides and BELOW the tip
380/// (where the bulb and the grabbing finger sit) but never ABOVE the tip — see
381/// [`crate::widgets::selection_handle`], which keeps the box off the glyph line
382/// so a double-tap still reaches the field to escalate into a word selection.
383pub const HANDLE_GRAB_SLOP: f32 = 24.0;
384
385/// Computes the selection `(min, max)` that results from dragging one handle to
386/// a new text `offset`, keeping the opposite (fixed) edge anchored.
387///
388/// Dragging never lets the two edges cross: a dragged start clamps to just
389/// before the fixed end, and a dragged end clamps to just after the fixed
390/// start, so the selection keeps at least one selected unit.
391pub fn selection_after_handle_drag(
392 dragged: HandleKind,
393 fixed_edge: usize,
394 dragged_offset: usize,
395 text_len: usize,
396) -> (usize, usize) {
397 let fixed = fixed_edge.min(text_len);
398 let dragged_offset = dragged_offset.min(text_len);
399 match dragged {
400 HandleKind::SelectionStart => {
401 let start = dragged_offset.min(fixed.saturating_sub(1));
402 (start, fixed)
403 }
404 HandleKind::SelectionEnd => {
405 let end = dragged_offset.max(fixed + 1).min(text_len);
406 (fixed, end)
407 }
408 // The cursor handle just moves the collapsed caret.
409 HandleKind::Cursor => (dragged_offset, dragged_offset),
410 }
411}
412
413#[cfg(test)]
414mod tests {
415 use super::*;
416
417 #[test]
418 fn tap_classification_escalates_within_time_and_slop() {
419 assert_eq!(classify_tap_count(None, 0, 10.0, 10.0, 500, 24.0), 1);
420 assert_eq!(
421 classify_tap_count(Some((1, 10.0, 10.0)), 100, 11.0, 12.0, 500, 24.0),
422 2
423 );
424 assert_eq!(
425 classify_tap_count(Some((2, 10.0, 10.0)), 100, 11.0, 12.0, 500, 24.0),
426 3
427 );
428 // A fourth in-place tap keeps counting up (the granularity mapping is
429 // what cycles, not the raw count).
430 assert_eq!(
431 classify_tap_count(Some((3, 10.0, 10.0)), 100, 11.0, 12.0, 500, 24.0),
432 4
433 );
434 assert_eq!(
435 classify_tap_count(Some((4, 10.0, 10.0)), 100, 11.0, 12.0, 500, 24.0),
436 5
437 );
438 }
439
440 #[test]
441 fn tap_classification_resets_past_timeout_or_slop() {
442 // Too slow: restarts.
443 assert_eq!(
444 classify_tap_count(Some((1, 10.0, 10.0)), 600, 10.0, 10.0, 500, 24.0),
445 1
446 );
447 // Too far: restarts even though it is quick.
448 assert_eq!(
449 classify_tap_count(Some((1, 10.0, 10.0)), 50, 100.0, 10.0, 500, 24.0),
450 1
451 );
452 // A reset also applies from a higher count.
453 assert_eq!(
454 classify_tap_count(Some((3, 10.0, 10.0)), 600, 10.0, 10.0, 500, 24.0),
455 1
456 );
457 }
458
459 /// The tap-inside-selection ladder (bug c): a lone tap inside an existing
460 /// selection grabs the word, and every further tap AT THE SAME SPOT grows
461 /// the granularity word → line → paragraph, then cycles back to word — even
462 /// when the taps arrive too slowly to count as a rapid multi-tap (the growth
463 /// is keyed on location, not the double-tap timeout). Tapping a NEW spot
464 /// resets to word.
465 #[test]
466 fn tap_inside_selection_cycles_word_line_paragraph_by_location() {
467 use SelectionGranularity::*;
468
469 // Start: a lone (slow) tap inside a selection. raw_tap_count == 1
470 // (the timeout lapsed), but it still grabs the word.
471 let mut count = resolve_selection_tap_count(1, 0, true, false);
472 assert_eq!(count, 2);
473 assert_eq!(tap_selection_granularity(count), Word);
474
475 // Same spot again, still slow (raw == 1): grow to the line.
476 count = resolve_selection_tap_count(1, count, true, true);
477 assert_eq!(count, 3);
478 assert_eq!(tap_selection_granularity(count), Line);
479
480 // Same spot again: grow to the paragraph.
481 count = resolve_selection_tap_count(1, count, true, true);
482 assert_eq!(count, 4);
483 assert_eq!(tap_selection_granularity(count), Paragraph);
484
485 // Same spot again: cycle back to the word.
486 count = resolve_selection_tap_count(1, count, true, true);
487 assert_eq!(count, 5);
488 assert_eq!(tap_selection_granularity(count), Word);
489
490 // A tap at a NEW spot inside the selection resets to word.
491 let reset = resolve_selection_tap_count(1, count, true, false);
492 assert_eq!(reset, 2);
493 assert_eq!(tap_selection_granularity(reset), Word);
494 }
495
496 /// A genuine rapid multi-tap keeps using its own running count, so
497 /// [`resolve_selection_tap_count`] does not disturb the double→word,
498 /// triple→line ladder, and a lone tap outside a selection stays a caret.
499 #[test]
500 fn resolve_tap_count_preserves_rapid_multitap_and_caret() {
501 // Rapid multi-tap: pass the classify count straight through.
502 assert_eq!(resolve_selection_tap_count(2, 1, false, false), 2);
503 assert_eq!(resolve_selection_tap_count(3, 2, true, true), 3);
504 // Lone tap outside any selection: caret (count 1).
505 assert_eq!(resolve_selection_tap_count(1, 4, false, true), 1);
506 }
507
508 #[test]
509 fn tap_granularity_grows_then_cycles() {
510 use SelectionGranularity::*;
511 assert_eq!(tap_selection_granularity(0), Caret);
512 assert_eq!(tap_selection_granularity(1), Caret);
513 assert_eq!(tap_selection_granularity(2), Word);
514 assert_eq!(tap_selection_granularity(3), Line);
515 assert_eq!(tap_selection_granularity(4), Paragraph);
516 // Fifth tap cycles back to word, then line, then paragraph again.
517 assert_eq!(tap_selection_granularity(5), Word);
518 assert_eq!(tap_selection_granularity(6), Line);
519 assert_eq!(tap_selection_granularity(7), Paragraph);
520 assert_eq!(tap_selection_granularity(8), Word);
521 }
522
523 #[test]
524 fn paragraph_boundaries_span_blank_line_delimited_blocks() {
525 let text = "line one\nline two\n\nsecond para\nstill second\n\n\nthird";
526 // Inside the first paragraph (two lines).
527 let (s, e) = find_paragraph_boundaries(text, 3);
528 assert_eq!(&text[s..e], "line one\nline two");
529 // Inside the second paragraph.
530 let (s, e) = find_paragraph_boundaries(text, 20);
531 assert_eq!(&text[s..e], "second para\nstill second");
532 // Inside the third paragraph, after a run of THREE newlines.
533 let (s, e) = find_paragraph_boundaries(text, text.len());
534 assert_eq!(&text[s..e], "third");
535 }
536
537 #[test]
538 fn paragraph_boundaries_no_blank_line_is_whole_text() {
539 let text = "just\none\nblock";
540 assert_eq!(find_paragraph_boundaries(text, 5), (0, text.len()));
541 }
542
543 #[test]
544 fn paragraph_boundaries_are_unicode_aware() {
545 // Multi-byte characters must be spanned whole and offsets stay on char
546 // boundaries.
547 let text = "\u{4e2d}\u{6587}\u{6bb5}\u{843d}\n\n\u{6b21}";
548 let first = "\u{4e2d}\u{6587}\u{6bb5}\u{843d}";
549 let (s, e) = find_paragraph_boundaries(text, 3);
550 assert_eq!(&text[s..e], first);
551 assert!(text.is_char_boundary(s) && text.is_char_boundary(e));
552 }
553
554 #[test]
555 fn line_boundaries_span_between_newlines() {
556 let text = "first line\nsecond line\nthird";
557 // Inside the second line.
558 assert_eq!(find_line_boundaries(text, 15), (11, 22));
559 // Start of the first line.
560 assert_eq!(find_line_boundaries(text, 0), (0, 10));
561 // Inside the last (newline-terminated-absent) line.
562 assert_eq!(find_line_boundaries(text, 25), (23, text.len()));
563 }
564
565 #[test]
566 fn line_boundaries_handle_unicode_and_empty_lines() {
567 let text = "\u{00e9}\u{00e8}\n\n\u{4e2d}\u{6587}";
568 // Empty middle line: start == end at the byte after the first newline.
569 let (start, end) = find_line_boundaries(text, "\u{00e9}\u{00e8}\n".len());
570 assert_eq!(start, end);
571 // Last line spans the two CJK characters.
572 let last = find_line_boundaries(text, text.len());
573 assert_eq!(&text[last.0..last.1], "\u{4e2d}\u{6587}");
574 }
575
576 #[test]
577 fn handle_path_is_valid_and_spans_the_line_box() {
578 let (x, top, bottom) = (40.0_f32, 20.0_f32, 40.0_f32);
579 for kind in [
580 HandleKind::Cursor,
581 HandleKind::SelectionStart,
582 HandleKind::SelectionEnd,
583 ] {
584 let data = handle_path_data(kind, x, top, bottom, HANDLE_RADIUS);
585 let path = cranpose_ui_graphics::VectorPath::parse(&data)
586 .expect("handle path must be valid SVG");
587 assert!(!path.is_empty(), "{kind:?} handle must have geometry");
588 let bounds = path.bounds();
589 // The stem spans the line box, so the shape covers top..bottom.
590 assert!(bounds.y <= top + 0.5, "{kind:?} must reach the line top");
591 assert!(
592 bounds.y + bounds.height >= bottom - 0.5,
593 "{kind:?} must reach the line bottom"
594 );
595 // Horizontally centered on the anchor, a dot-radius each way.
596 assert!((bounds.x - (x - HANDLE_RADIUS)).abs() <= 0.5);
597 assert!((bounds.x + bounds.width - (x + HANDLE_RADIUS)).abs() <= 0.5);
598 }
599 }
600
601 /// The reference lollipop orientation: the start handle's dot rides ON TOP
602 /// of the line (center ~a radius above the line top), the end and cursor
603 /// dots hang BELOW it, and every dot dips [`HANDLE_DOT_LINE_OVERLAP`] into
604 /// the line box so dot + stem read as one continuous shape.
605 #[test]
606 fn selection_handle_dots_sit_on_the_correct_side_of_the_line() {
607 let (x, top, bottom, r) = (40.0_f32, 20.0_f32, 40.0_f32, HANDLE_RADIUS);
608 let eps = 0.5_f32;
609
610 let bounds = |kind: HandleKind| {
611 let data = handle_path_data(kind, x, top, bottom, r);
612 cranpose_ui_graphics::VectorPath::parse(&data)
613 .expect("valid handle path")
614 .bounds()
615 };
616
617 // Start: the shape extends a dot-diameter ABOVE the line top (minus the
618 // overlap), and not below the line bottom.
619 let start = bounds(HandleKind::SelectionStart);
620 assert!(
621 (start.y - (top - 2.0 * r + HANDLE_DOT_LINE_OVERLAP)).abs() <= eps,
622 "start dot must ride on top of the line (top at {}, expected {})",
623 start.y,
624 top - 2.0 * r + HANDLE_DOT_LINE_OVERLAP
625 );
626 assert!(
627 start.y + start.height <= bottom + eps,
628 "start handle must not extend below the line box"
629 );
630
631 // End and cursor: the shape extends a dot-diameter BELOW the line
632 // bottom (minus the overlap), and not above the line top.
633 for kind in [HandleKind::SelectionEnd, HandleKind::Cursor] {
634 let b = bounds(kind);
635 assert!(
636 (b.y + b.height - (bottom + 2.0 * r - HANDLE_DOT_LINE_OVERLAP)).abs() <= eps,
637 "{kind:?} dot must hang below the line (bottom at {}, expected {})",
638 b.y + b.height,
639 bottom + 2.0 * r - HANDLE_DOT_LINE_OVERLAP
640 );
641 assert!(
642 b.y >= top - eps,
643 "{kind:?} handle must not extend above the line box"
644 );
645 }
646 }
647
648 /// The wrap-aware caret line lookup (bug d): a caret on a wrapped line's
649 /// later visual line must resolve to that visual line (not the logical
650 /// line's first visual line), with the correct line-start byte so its x is
651 /// measured from the start of the visual line.
652 #[test]
653 fn caret_visual_line_resolves_wrapped_visual_lines() {
654 // "aaaa bbbb" wrapped into ["aaaa " (0..5), "bbbb" (5..9)], then a hard
655 // newline to a short line "cc" (10..12).
656 let ranges = vec![0..5usize, 5..9, 10..12];
657
658 // Start of the first visual line.
659 assert_eq!(
660 caret_visual_line(&ranges, 0, LineAffinity::Downstream),
661 (0, 0)
662 );
663 // Middle of the first visual line.
664 assert_eq!(
665 caret_visual_line(&ranges, 3, LineAffinity::Downstream),
666 (0, 0)
667 );
668 // Start of the second (wrapped) visual line.
669 assert_eq!(
670 caret_visual_line(&ranges, 5, LineAffinity::Downstream),
671 (1, 5)
672 );
673 // Middle of the second visual line — must NOT resolve to line 0.
674 assert_eq!(
675 caret_visual_line(&ranges, 7, LineAffinity::Downstream),
676 (1, 5)
677 );
678 // End of the wrapped logical line.
679 assert_eq!(
680 caret_visual_line(&ranges, 9, LineAffinity::Downstream),
681 (1, 5)
682 );
683 // The line after the hard newline.
684 assert_eq!(
685 caret_visual_line(&ranges, 11, LineAffinity::Downstream),
686 (2, 10)
687 );
688 // End of text.
689 assert_eq!(
690 caret_visual_line(&ranges, 12, LineAffinity::Downstream),
691 (2, 10)
692 );
693 }
694
695 #[test]
696 fn grab_offset_has_follow_drift_and_strict_phases() {
697 let mut grab = HandleGrabOffset::begin(108.0, 100.0);
698 assert_eq!(grab.bias(), 8.0);
699
700 let direct_bias = grab.track(108.0);
701 assert_eq!(direct_bias, 8.0, "initial travel follows exactly");
702 assert_eq!(108.0 + direct_bias, 116.0);
703
704 let drifting_bias = grab.track(132.0);
705 assert!(drifting_bias < 8.0 && drifting_bias > grab_bias_full_view());
706 assert!((0.0..1.0).contains(&grab.drift_progress()));
707
708 assert_eq!(grab.track(156.0), grab_bias_full_view());
709 assert_eq!(grab.drift_progress(), 1.0);
710 assert_eq!(grab.track(220.0), grab_bias_full_view());
711 }
712
713 #[test]
714 fn grab_offset_is_cadence_independent_and_never_unwinds() {
715 let mut single = HandleGrabOffset::begin(108.0, 100.0);
716 single.track(140.0);
717
718 let mut sampled = HandleGrabOffset::begin(108.0, 100.0);
719 for y in [104.0, 109.0, 116.0, 130.0, 140.0] {
720 sampled.track(y);
721 }
722 assert_eq!(sampled.bias(), single.bias());
723 assert_eq!(sampled.drift_progress(), single.drift_progress());
724
725 let migrated = sampled.bias();
726 sampled.track(90.0);
727 assert_eq!(
728 sampled.bias(),
729 migrated,
730 "upward travel cannot unwind drift"
731 );
732
733 let deep = grab_bias_full_view() - 10.0;
734 let mut already_visible = HandleGrabOffset::begin(deep, 0.0);
735 already_visible.track(100.0);
736 assert_eq!(already_visible.bias(), deep);
737 }
738
739 #[test]
740 fn caret_visual_line_handles_empty_ranges() {
741 assert_eq!(caret_visual_line(&[], 5, LineAffinity::Upstream), (0, 0));
742 assert_eq!(caret_visual_line(&[], 5, LineAffinity::Downstream), (0, 0));
743 }
744
745 /// A soft-wrap boundary byte is BOTH the end of the upper visual line and
746 /// the start of the lower one. A finger dragging a selection END (or the
747 /// caret/cursor handle, or the loupe) along the upper line's right edge
748 /// produces exactly that byte — upstream affinity must keep the anchor on
749 /// the upper line's end instead of snapping one line down to the left
750 /// edge (the reported wrapped-multiline handle Y-offset bug).
751 #[test]
752 fn caret_visual_line_upstream_anchors_shared_wrap_boundary_to_upper_line() {
753 let ranges = vec![0..5usize, 5..9, 10..12];
754
755 // The shared boundary resolves per affinity.
756 assert_eq!(
757 caret_visual_line(&ranges, 5, LineAffinity::Upstream),
758 (0, 0)
759 );
760 assert_eq!(
761 caret_visual_line(&ranges, 5, LineAffinity::Downstream),
762 (1, 5)
763 );
764
765 // Mid-line offsets are affinity-independent.
766 assert_eq!(
767 caret_visual_line(&ranges, 3, LineAffinity::Upstream),
768 (0, 0)
769 );
770 assert_eq!(
771 caret_visual_line(&ranges, 7, LineAffinity::Upstream),
772 (1, 5)
773 );
774
775 // A hard-newline boundary is NOT shared (the ranges gap over the
776 // separator): upstream must not pull the lower line's start up.
777 assert_eq!(
778 caret_visual_line(&ranges, 10, LineAffinity::Upstream),
779 (2, 10)
780 );
781
782 // End of text stays on the last line under either affinity.
783 assert_eq!(
784 caret_visual_line(&ranges, 12, LineAffinity::Upstream),
785 (2, 10)
786 );
787 }
788
789 #[test]
790 fn handle_drag_keeps_edges_from_crossing() {
791 // Dragging the end handle left past the start clamps to start+1.
792 assert_eq!(
793 selection_after_handle_drag(HandleKind::SelectionEnd, 5, 2, 20),
794 (5, 6)
795 );
796 // Dragging the end handle right extends normally.
797 assert_eq!(
798 selection_after_handle_drag(HandleKind::SelectionEnd, 5, 12, 20),
799 (5, 12)
800 );
801 // Dragging the start handle right past the end clamps to end-1.
802 assert_eq!(
803 selection_after_handle_drag(HandleKind::SelectionStart, 8, 10, 20),
804 (7, 8)
805 );
806 // Dragging the start handle left extends normally.
807 assert_eq!(
808 selection_after_handle_drag(HandleKind::SelectionStart, 8, 3, 20),
809 (3, 8)
810 );
811 // The cursor handle moves a collapsed caret.
812 assert_eq!(
813 selection_after_handle_drag(HandleKind::Cursor, 4, 9, 20),
814 (9, 9)
815 );
816 }
817}