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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
//! The pointer on the rows of a [`Table`](super::Table) or the cards of a
//! [`CardGrid`](super::CardGrid): selecting one row, several or a range, opening with one click or
//! two, drawing a box over the free space, and dragging the selection onto another row.
//!
//! Each of these is an option the widget is asked for, and a widget asked for none of them does
//! what it always did: a press selects the row under it and opens it. The two widgets lay their
//! rows out differently, one under another or in columns, so each says where its rows are through
//! [`PickedRows`] and this module does the rest the same way for both.
use crate::event::{KeyEvent, KeyKind, MouseButton, MouseEvent, MouseKind};
use crate::geometry::Rect;
use crate::keymap::{Key, KeyChord, Modifiers};
use crate::widget::{EventCx, PaintCx};
use super::click::{Click, LastPress};
use super::select_box::SelectBox;
/// A drop of dragged rows onto another row that a droppable [`Table`](super::Table) or
/// [`CardGrid`](super::CardGrid) asks for, such as files onto a folder. The widget never moves the
/// application's rows; the application does.
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct RowDrop {
/// The rows that move, by index, in their order: the pressed row alone, or the whole
/// selection when the drag started on one of its rows.
pub rows: Vec<usize>,
/// The row they were dropped on.
pub into: usize,
}
/// Builds a message from a whole new selection.
type ChooseMessage<Msg> = Box<dyn Fn(Vec<usize>) -> Msg>;
/// Builds a message from a drop.
type DropMessage<Msg> = Box<dyn Fn(RowDrop) -> Msg>;
/// Tells whether the row of an index takes drops.
type DropFilter = Box<dyn Fn(usize) -> bool>;
/// Where a point is on a widget's rows.
pub(crate) enum Spot {
/// On the row of this index.
Row(usize),
/// Among the rows but on none of them: below the last one, or between two cards.
Free,
/// Not among the rows at all: a header, a scrollbar.
Outside,
}
/// What a widget whose rows the pointer picks tells the picking: where its rows are, and what
/// moving the cursor to one and opening one mean for it.
pub(crate) trait PickedRows<Msg> {
/// Where `(x, y)` is on the rows as they were painted last.
fn spot(&self, cx: &mut EventCx<'_, Msg>, x: i32, y: i32) -> Spot;
/// The rows `rect` covers, in their order.
fn covered(&self, cx: &mut EventCx<'_, Msg>, rect: Rect) -> Vec<usize>;
/// The row the cursor is on.
fn cursor(&self) -> Option<usize>;
/// Moves the cursor to row `index`.
fn select(&self, cx: &mut EventCx<'_, Msg>, index: usize);
/// Opens row `index`, pressed at `at`.
fn open(&self, cx: &mut EventCx<'_, Msg>, index: usize, at: (i32, i32));
}
/// How a widget's rows answer the pointer, as its options set it. Without any option a press
/// selects the row and opens it.
pub(crate) struct Picking<Msg> {
/// How many clicks open a row.
pub(crate) activate_on: Click,
/// The rows selected together, when several can be.
pub(crate) chosen: Vec<usize>,
/// Asks for a whole new selection; set when several rows can be selected.
pub(crate) on_choose: Option<ChooseMessage<Msg>>,
/// Whether a drag over the free space draws a box that selects.
pub(crate) box_select: bool,
/// Asks to move dragged rows, and tells which rows take them.
pub(crate) dropping: Option<(DropMessage<Msg>, DropFilter)>,
/// Asks to copy dragged rows, for a drop released with Ctrl held.
pub(crate) copy_drop: Option<DropMessage<Msg>>,
}
impl<Msg> Default for Picking<Msg> {
fn default() -> Self {
Self {
activate_on: Click::Single,
chosen: Vec::new(),
on_choose: None,
box_select: false,
dropping: None,
copy_drop: None,
}
}
}
/// A press on a row that may become a drag.
#[derive(Debug, Clone)]
struct RowPress {
index: usize,
start: (i32, i32),
pointer: (i32, i32),
dragging: bool,
/// The rows a drag from this press carries.
carried: Vec<usize>,
/// Whether the press kept several selected rows, which a click without a drag reduces to
/// this one.
reduce: bool,
}
/// What the held button is doing.
#[derive(Debug, Clone)]
enum Held {
Row(RowPress),
Box(SelectBox<usize>),
}
/// The pointer's state on a widget's rows, kept in its memory.
#[derive(Debug, Default)]
struct PointerRows {
presses: LastPress<usize>,
held: Option<Held>,
/// Where a Shift+click range starts: the row last clicked without Shift.
anchor: Option<usize>,
}
impl<Msg: 'static> Picking<Msg> {
/// Whether several rows can be selected.
pub(crate) fn is_multi(&self) -> bool {
self.on_choose.is_some()
}
/// Whether row `index` is one of the rows selected together.
pub(crate) fn is_chosen(&self, index: usize) -> bool {
self.is_multi() && self.chosen.contains(&index)
}
/// Reports `rows` as the new selection, when it differs from the current one.
fn choose(&self, cx: &mut EventCx<'_, Msg>, rows: Vec<usize>) {
if let Some(message) = &self.on_choose
&& rows != self.chosen
{
cx.emit(message(rows));
}
}
/// Moves the cursor to row `index` and makes it the whole selection: a plain click.
pub(crate) fn select_one(&self, cx: &mut EventCx<'_, Msg>, rows: &impl PickedRows<Msg>, index: usize) {
rows.select(cx, index);
if self.is_multi() {
cx.memory::<PointerRows>().anchor = Some(index);
self.choose(cx, vec![index]);
}
}
/// Adds row `index` to the selection or takes it out, and moves the cursor there: Ctrl+click
/// and Space. False when several rows cannot be selected.
pub(crate) fn toggle(&self, cx: &mut EventCx<'_, Msg>, rows: &impl PickedRows<Msg>, index: usize) -> bool {
if !self.is_multi() {
return false;
}
let mut chosen = self.chosen.clone();
match chosen.iter().position(|row| *row == index) {
Some(at) => {
chosen.remove(at);
}
None => chosen.push(index),
}
rows.select(cx, index);
cx.memory::<PointerRows>().anchor = Some(index);
self.choose(cx, chosen);
true
}
/// Selects the rows from the last plain or Ctrl click to row `index`: Shift+click. The start
/// stays, so a second Shift+click reshapes the same range.
fn select_range(&self, cx: &mut EventCx<'_, Msg>, rows: &impl PickedRows<Msg>, index: usize) {
let start = cx.memory::<PointerRows>().anchor.or_else(|| rows.cursor()).unwrap_or(index);
cx.memory::<PointerRows>().anchor = Some(start);
rows.select(cx, index);
self.choose(cx, (start.min(index)..=start.max(index)).collect());
}
/// The selection keys of a widget that selects several rows, among `count` rows: Shift with a
/// step extends the range from where it started, Ctrl+A selects every row and Esc reduces
/// several selected rows to the cursor's. True when the key was used.
///
/// `step` answers where the unshifted key moves the cursor: `None` when it is not a key that
/// moves, and `Some(None)` when it moves nowhere, at an edge. Esc with one row or none selected
/// is left alone, so a dialog holding the rows still closes on it.
pub(crate) fn selection_key(
&self,
cx: &mut EventCx<'_, Msg>,
key: &KeyEvent,
rows: &impl PickedRows<Msg>,
count: usize,
step: impl FnOnce(&mut EventCx<'_, Msg>, &KeyEvent) -> Option<Option<usize>>,
) -> bool {
if !self.is_multi() || key.kind == KeyKind::Release {
return false;
}
if key.chord == select_all() {
self.choose(cx, (0..count).collect());
return true;
}
if key.is_plain(Key::Esc) && self.chosen.len() > 1 {
let Some(index) = rows.cursor() else { return false };
self.select_one(cx, rows, index);
return true;
}
let shifted = Modifiers { shift: true, ..Modifiers::default() };
if key.chord.mods != shifted {
return false;
}
let plain = KeyEvent { chord: KeyChord { mods: Modifiers::default(), ..key.chord }, ..*key };
let Some(target) = step(cx, &plain) else { return false };
if let Some(index) = target {
self.select_range(cx, rows, index);
}
true
}
/// Whether dragged `carried` rows can be dropped on row `into`.
pub(crate) fn takes_drop(&self, carried: &[usize], into: usize) -> bool {
self.dropping.as_ref().is_some_and(|(_, accepts)| accepts(into)) && !carried.contains(&into)
}
/// Offers a pointer event to the picking. `None` when it is not the picking's to take, such as
/// a press outside the rows, so the widget handles it itself.
pub(crate) fn mouse(
&self,
cx: &mut EventCx<'_, Msg>,
mouse: &MouseEvent,
rows: &impl PickedRows<Msg>,
) -> Option<bool> {
match mouse.kind {
MouseKind::Down(MouseButton::Left) => self.press(cx, mouse, rows),
MouseKind::Drag(MouseButton::Left) => self.drag(cx, (mouse.x, mouse.y), rows),
MouseKind::Up(MouseButton::Left) => self.release(cx, mouse, rows),
_ => None,
}
}
fn press(&self, cx: &mut EventCx<'_, Msg>, mouse: &MouseEvent, rows: &impl PickedRows<Msg>) -> Option<bool> {
let at = (mouse.x, mouse.y);
let mods = mouse.mods;
let index = match rows.spot(cx, mouse.x, mouse.y) {
Spot::Outside => return None,
Spot::Free if self.box_select && self.is_multi() => {
let drawn = SelectBox::new(at, mods.ctrl && !mods.alt, &self.chosen);
let covered = rows.covered(cx, drawn.rect());
self.choose(cx, drawn.selection(covered));
let memory = cx.memory::<PointerRows>();
memory.presses.forget();
memory.held = Some(Held::Box(drawn));
cx.capture_pointer();
return Some(true);
}
Spot::Free => return None,
Spot::Row(index) => index,
};
if self.is_multi() && !mods.alt && mods.ctrl != mods.shift {
cx.memory::<PointerRows>().presses.forget();
if mods.ctrl {
self.toggle(cx, rows, index);
} else {
self.select_range(cx, rows, index);
}
return Some(true);
}
let now = cx.now();
if self.activate_on == Click::Double && cx.memory::<PointerRows>().presses.press(index, now) {
rows.select(cx, index);
rows.open(cx, index, at);
return Some(true);
}
// A press on one of several selected rows keeps them all, so they can be dragged together;
// a click without a drag reduces them to this row on release.
let reduce = self.dropping.is_some() && self.chosen.len() > 1 && self.is_chosen(index);
if reduce {
rows.select(cx, index);
} else {
self.select_one(cx, rows, index);
}
if self.dropping.is_none() {
if self.activate_on == Click::Single {
rows.open(cx, index, at);
}
return Some(true);
}
let carried = if reduce { sorted(&self.chosen) } else { vec![index] };
let press = RowPress { index, start: at, pointer: at, dragging: false, carried, reduce };
cx.memory::<PointerRows>().held = Some(Held::Row(press));
cx.capture_pointer();
Some(true)
}
fn drag(&self, cx: &mut EventCx<'_, Msg>, at: (i32, i32), rows: &impl PickedRows<Msg>) -> Option<bool> {
let PointerRows { presses, held, .. } = cx.memory::<PointerRows>();
match held.as_mut()? {
Held::Box(drawn) => {
drawn.stretch(at);
let drawn = drawn.clone();
let covered = rows.covered(cx, drawn.rect());
self.choose(cx, drawn.selection(covered));
}
Held::Row(press) => {
press.pointer = at;
if !press.dragging && at != press.start {
press.dragging = true;
// A press that became a drag is not the first half of a double click.
presses.forget();
}
}
}
Some(true)
}
fn release(&self, cx: &mut EventCx<'_, Msg>, mouse: &MouseEvent, rows: &impl PickedRows<Msg>) -> Option<bool> {
let at = (mouse.x, mouse.y);
match cx.memory::<PointerRows>().held.take()? {
Held::Box(mut drawn) => {
drawn.stretch(at);
let covered = rows.covered(cx, drawn.rect());
self.choose(cx, drawn.selection(covered));
}
Held::Row(press) if press.dragging => {
let Spot::Row(into) = rows.spot(cx, mouse.x, mouse.y) else { return Some(true) };
if !self.takes_drop(&press.carried, into) {
return Some(true);
}
let drop = RowDrop { rows: press.carried, into };
// A terminal that does not report Ctrl with the pointer simply moves.
let message = match (&self.copy_drop, &self.dropping) {
(Some(copy), _) if mouse.mods.ctrl => copy(drop),
(_, Some((moving, _))) => moving(drop),
(_, None) => return Some(true),
};
cx.emit(message);
}
Held::Row(press) => {
if press.reduce {
self.select_one(cx, rows, press.index);
}
if self.activate_on == Click::Single {
rows.open(cx, press.index, at);
}
}
}
Some(true)
}
}
/// Ctrl+A, the key that selects every row, as it selects all of a text.
pub(crate) fn select_all() -> KeyChord {
KeyChord { key: Key::Char('a'), mods: Modifiers { ctrl: true, ..Modifiers::default() } }
}
/// `rows` in their order.
fn sorted(rows: &[usize]) -> Vec<usize> {
let mut rows = rows.to_vec();
rows.sort_unstable();
rows
}
/// The rows being dragged and where the pointer is, while a drag lasts.
pub(crate) fn dragged(cx: &mut PaintCx<'_>) -> Option<((i32, i32), Vec<usize>)> {
match &cx.memory::<PointerRows>().held {
Some(Held::Row(press)) if press.dragging => Some((press.pointer, press.carried.clone())),
_ => None,
}
}
/// The selection box being drawn, while it is.
pub(crate) fn drawn_box(cx: &mut PaintCx<'_>) -> Option<Rect> {
match &cx.memory::<PointerRows>().held {
Some(Held::Box(drawn)) => Some(drawn.rect()),
_ => None,
}
}