Commit | Line | Data |
---|---|---|
3649b921 KL |
1 | /* |
2 | * Jexer - Java Text User Interface | |
3 | * | |
e16dda65 | 4 | * The MIT License (MIT) |
3649b921 | 5 | * |
a69ed767 | 6 | * Copyright (C) 2019 Kevin Lamonte |
3649b921 | 7 | * |
e16dda65 KL |
8 | * Permission is hereby granted, free of charge, to any person obtaining a |
9 | * copy of this software and associated documentation files (the "Software"), | |
10 | * to deal in the Software without restriction, including without limitation | |
11 | * the rights to use, copy, modify, merge, publish, distribute, sublicense, | |
12 | * and/or sell copies of the Software, and to permit persons to whom the | |
13 | * Software is furnished to do so, subject to the following conditions: | |
3649b921 | 14 | * |
e16dda65 KL |
15 | * The above copyright notice and this permission notice shall be included in |
16 | * all copies or substantial portions of the Software. | |
3649b921 | 17 | * |
e16dda65 KL |
18 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
19 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | |
20 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL | |
21 | * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | |
22 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING | |
23 | * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | |
24 | * DEALINGS IN THE SOFTWARE. | |
3649b921 KL |
25 | * |
26 | * @author Kevin Lamonte [kevin.lamonte@gmail.com] | |
27 | * @version 1 | |
28 | */ | |
29 | package jexer; | |
30 | ||
31 | import java.util.ArrayList; | |
32 | import java.util.List; | |
33 | ||
34 | import jexer.bits.CellAttributes; | |
9f613a0c | 35 | import jexer.bits.StringUtils; |
3649b921 KL |
36 | import jexer.event.TKeypressEvent; |
37 | import jexer.event.TMouseEvent; | |
38 | import static jexer.TKeypress.*; | |
39 | ||
40 | /** | |
41 | * TList shows a list of strings, and lets the user select one. | |
42 | */ | |
56661844 | 43 | public class TList extends TScrollableWidget { |
3649b921 | 44 | |
d36057df KL |
45 | // ------------------------------------------------------------------------ |
46 | // Variables -------------------------------------------------------------- | |
47 | // ------------------------------------------------------------------------ | |
48 | ||
3649b921 KL |
49 | /** |
50 | * The list of strings to display. | |
51 | */ | |
52 | private List<String> strings; | |
53 | ||
54 | /** | |
55 | * Selected string. | |
56 | */ | |
57 | private int selectedString = -1; | |
58 | ||
3649b921 KL |
59 | /** |
60 | * Maximum width of a single line. | |
61 | */ | |
62 | private int maxLineWidth; | |
63 | ||
64 | /** | |
a69ed767 KL |
65 | * The action to perform when the user selects an item (double-clicks or |
66 | * enter). | |
3649b921 | 67 | */ |
a69ed767 KL |
68 | protected TAction enterAction = null; |
69 | ||
70 | /** | |
71 | * The action to perform when the user selects an item (single-click). | |
72 | */ | |
73 | protected TAction singleClickAction = null; | |
3649b921 KL |
74 | |
75 | /** | |
76 | * The action to perform when the user navigates with keyboard. | |
77 | */ | |
a69ed767 | 78 | protected TAction moveAction = null; |
3649b921 | 79 | |
d36057df KL |
80 | // ------------------------------------------------------------------------ |
81 | // Constructors ----------------------------------------------------------- | |
82 | // ------------------------------------------------------------------------ | |
3649b921 KL |
83 | |
84 | /** | |
85 | * Public constructor. | |
86 | * | |
87 | * @param parent parent widget | |
88 | * @param strings list of strings to show | |
89 | * @param x column relative to parent | |
90 | * @param y row relative to parent | |
91 | * @param width width of text area | |
92 | * @param height height of text area | |
93 | */ | |
94 | public TList(final TWidget parent, final List<String> strings, final int x, | |
95 | final int y, final int width, final int height) { | |
96 | ||
9577a9d0 | 97 | this(parent, strings, x, y, width, height, null, null, null); |
3649b921 KL |
98 | } |
99 | ||
100 | /** | |
101 | * Public constructor. | |
102 | * | |
103 | * @param parent parent widget | |
104 | * @param strings list of strings to show. This is allowed to be null | |
105 | * and set later with setList() or by subclasses. | |
106 | * @param x column relative to parent | |
107 | * @param y row relative to parent | |
108 | * @param width width of text area | |
109 | * @param height height of text area | |
110 | * @param enterAction action to perform when an item is selected | |
111 | */ | |
112 | public TList(final TWidget parent, final List<String> strings, final int x, | |
113 | final int y, final int width, final int height, | |
114 | final TAction enterAction) { | |
115 | ||
9577a9d0 | 116 | this(parent, strings, x, y, width, height, enterAction, null, null); |
3649b921 KL |
117 | } |
118 | ||
119 | /** | |
120 | * Public constructor. | |
121 | * | |
122 | * @param parent parent widget | |
123 | * @param strings list of strings to show. This is allowed to be null | |
124 | * and set later with setList() or by subclasses. | |
125 | * @param x column relative to parent | |
126 | * @param y row relative to parent | |
127 | * @param width width of text area | |
128 | * @param height height of text area | |
129 | * @param enterAction action to perform when an item is selected | |
130 | * @param moveAction action to perform when the user navigates to a new | |
131 | * item with arrow/page keys | |
132 | */ | |
133 | public TList(final TWidget parent, final List<String> strings, final int x, | |
134 | final int y, final int width, final int height, | |
135 | final TAction enterAction, final TAction moveAction) { | |
136 | ||
9577a9d0 KL |
137 | this(parent, strings, x, y, width, height, enterAction, moveAction, |
138 | null); | |
139 | } | |
140 | ||
141 | /** | |
142 | * Public constructor. | |
143 | * | |
144 | * @param parent parent widget | |
145 | * @param strings list of strings to show. This is allowed to be null | |
146 | * and set later with setList() or by subclasses. | |
147 | * @param x column relative to parent | |
148 | * @param y row relative to parent | |
149 | * @param width width of text area | |
150 | * @param height height of text area | |
151 | * @param enterAction action to perform when an item is selected | |
152 | * @param moveAction action to perform when the user navigates to a new | |
153 | * item with arrow/page keys | |
154 | * @param singleClickAction action to perform when the user clicks on an | |
155 | * item | |
156 | */ | |
157 | public TList(final TWidget parent, final List<String> strings, final int x, | |
158 | final int y, final int width, final int height, | |
159 | final TAction enterAction, final TAction moveAction, | |
160 | final TAction singleClickAction) { | |
161 | ||
3649b921 KL |
162 | super(parent, x, y, width, height); |
163 | this.enterAction = enterAction; | |
164 | this.moveAction = moveAction; | |
9577a9d0 | 165 | this.singleClickAction = singleClickAction; |
3649b921 KL |
166 | this.strings = new ArrayList<String>(); |
167 | if (strings != null) { | |
168 | this.strings.addAll(strings); | |
169 | } | |
56661844 KL |
170 | |
171 | hScroller = new THScroller(this, 0, getHeight() - 1, getWidth() - 1); | |
172 | vScroller = new TVScroller(this, getWidth() - 1, 0, getHeight() - 1); | |
173 | reflowData(); | |
3649b921 KL |
174 | } |
175 | ||
d36057df KL |
176 | // ------------------------------------------------------------------------ |
177 | // Event handlers --------------------------------------------------------- | |
178 | // ------------------------------------------------------------------------ | |
3649b921 KL |
179 | |
180 | /** | |
181 | * Handle mouse press events. | |
182 | * | |
183 | * @param mouse mouse button press event | |
184 | */ | |
185 | @Override | |
186 | public void onMouseDown(final TMouseEvent mouse) { | |
187 | if (mouse.isMouseWheelUp()) { | |
56661844 | 188 | verticalDecrement(); |
3649b921 KL |
189 | return; |
190 | } | |
191 | if (mouse.isMouseWheelDown()) { | |
56661844 | 192 | verticalIncrement(); |
3649b921 KL |
193 | return; |
194 | } | |
195 | ||
196 | if ((mouse.getX() < getWidth() - 1) | |
a69ed767 KL |
197 | && (mouse.getY() < getHeight() - 1) |
198 | ) { | |
56661844 KL |
199 | if (getVerticalValue() + mouse.getY() < strings.size()) { |
200 | selectedString = getVerticalValue() + mouse.getY(); | |
a69ed767 | 201 | dispatchSingleClick(); |
3649b921 | 202 | } |
3649b921 KL |
203 | return; |
204 | } | |
205 | ||
206 | // Pass to children | |
207 | super.onMouseDown(mouse); | |
208 | } | |
209 | ||
b6faeac0 KL |
210 | /** |
211 | * Handle mouse double click. | |
212 | * | |
213 | * @param mouse mouse double click event | |
214 | */ | |
215 | @Override | |
216 | public void onMouseDoubleClick(final TMouseEvent mouse) { | |
217 | if ((mouse.getX() < getWidth() - 1) | |
a69ed767 KL |
218 | && (mouse.getY() < getHeight() - 1) |
219 | ) { | |
b6faeac0 KL |
220 | if (getVerticalValue() + mouse.getY() < strings.size()) { |
221 | selectedString = getVerticalValue() + mouse.getY(); | |
222 | dispatchEnter(); | |
223 | } | |
224 | return; | |
225 | } | |
226 | ||
227 | // Pass to children | |
228 | super.onMouseDoubleClick(mouse); | |
229 | } | |
230 | ||
3649b921 KL |
231 | /** |
232 | * Handle keystrokes. | |
233 | * | |
234 | * @param keypress keystroke event | |
235 | */ | |
236 | @Override | |
237 | public void onKeypress(final TKeypressEvent keypress) { | |
238 | if (keypress.equals(kbLeft)) { | |
56661844 | 239 | horizontalDecrement(); |
3649b921 | 240 | } else if (keypress.equals(kbRight)) { |
56661844 | 241 | horizontalIncrement(); |
3649b921 KL |
242 | } else if (keypress.equals(kbUp)) { |
243 | if (strings.size() > 0) { | |
244 | if (selectedString >= 0) { | |
245 | if (selectedString > 0) { | |
56661844 KL |
246 | if (selectedString - getVerticalValue() == 0) { |
247 | verticalDecrement(); | |
3649b921 KL |
248 | } |
249 | selectedString--; | |
250 | } | |
251 | } else { | |
252 | selectedString = strings.size() - 1; | |
253 | } | |
254 | } | |
255 | if (selectedString >= 0) { | |
256 | dispatchMove(); | |
257 | } | |
258 | } else if (keypress.equals(kbDown)) { | |
259 | if (strings.size() > 0) { | |
260 | if (selectedString >= 0) { | |
261 | if (selectedString < strings.size() - 1) { | |
262 | selectedString++; | |
56661844 KL |
263 | if (selectedString - getVerticalValue() == getHeight() - 1) { |
264 | verticalIncrement(); | |
3649b921 KL |
265 | } |
266 | } | |
267 | } else { | |
268 | selectedString = 0; | |
269 | } | |
270 | } | |
271 | if (selectedString >= 0) { | |
272 | dispatchMove(); | |
273 | } | |
274 | } else if (keypress.equals(kbPgUp)) { | |
56661844 | 275 | bigVerticalDecrement(); |
3649b921 KL |
276 | if (selectedString >= 0) { |
277 | selectedString -= getHeight() - 1; | |
278 | if (selectedString < 0) { | |
279 | selectedString = 0; | |
280 | } | |
281 | } | |
282 | if (selectedString >= 0) { | |
283 | dispatchMove(); | |
284 | } | |
285 | } else if (keypress.equals(kbPgDn)) { | |
56661844 | 286 | bigVerticalIncrement(); |
3649b921 KL |
287 | if (selectedString >= 0) { |
288 | selectedString += getHeight() - 1; | |
289 | if (selectedString > strings.size() - 1) { | |
290 | selectedString = strings.size() - 1; | |
291 | } | |
292 | } | |
293 | if (selectedString >= 0) { | |
294 | dispatchMove(); | |
295 | } | |
296 | } else if (keypress.equals(kbHome)) { | |
56661844 | 297 | toTop(); |
3649b921 KL |
298 | if (strings.size() > 0) { |
299 | selectedString = 0; | |
300 | } | |
301 | if (selectedString >= 0) { | |
302 | dispatchMove(); | |
303 | } | |
304 | } else if (keypress.equals(kbEnd)) { | |
56661844 | 305 | toBottom(); |
3649b921 KL |
306 | if (strings.size() > 0) { |
307 | selectedString = strings.size() - 1; | |
308 | } | |
309 | if (selectedString >= 0) { | |
310 | dispatchMove(); | |
311 | } | |
312 | } else if (keypress.equals(kbTab)) { | |
313 | getParent().switchWidget(true); | |
314 | } else if (keypress.equals(kbShiftTab) || keypress.equals(kbBackTab)) { | |
315 | getParent().switchWidget(false); | |
316 | } else if (keypress.equals(kbEnter)) { | |
317 | if (selectedString >= 0) { | |
318 | dispatchEnter(); | |
319 | } | |
320 | } else { | |
321 | // Pass other keys (tab etc.) on | |
322 | super.onKeypress(keypress); | |
323 | } | |
324 | } | |
325 | ||
d36057df KL |
326 | // ------------------------------------------------------------------------ |
327 | // TScrollableWidget ------------------------------------------------------ | |
328 | // ------------------------------------------------------------------------ | |
329 | ||
8f62f06e KL |
330 | /** |
331 | * Override TWidget's width: we need to set child widget widths. | |
332 | * | |
333 | * @param width new widget width | |
334 | */ | |
335 | @Override | |
336 | public void setWidth(final int width) { | |
337 | super.setWidth(width); | |
338 | hScroller.setWidth(getWidth() - 1); | |
339 | vScroller.setX(getWidth() - 1); | |
340 | } | |
341 | ||
342 | /** | |
343 | * Override TWidget's height: we need to set child widget heights. | |
344 | * time. | |
345 | * | |
346 | * @param height new widget height | |
347 | */ | |
348 | @Override | |
349 | public void setHeight(final int height) { | |
350 | super.setHeight(height); | |
351 | hScroller.setY(getHeight() - 1); | |
352 | vScroller.setHeight(getHeight() - 1); | |
353 | } | |
354 | ||
d36057df KL |
355 | /** |
356 | * Resize for a new width/height. | |
357 | */ | |
358 | @Override | |
359 | public void reflowData() { | |
360 | ||
361 | // Reset the lines | |
362 | selectedString = -1; | |
363 | maxLineWidth = 0; | |
364 | ||
365 | for (int i = 0; i < strings.size(); i++) { | |
366 | String line = strings.get(i); | |
9f613a0c KL |
367 | int lineLength = StringUtils.width(line); |
368 | if (lineLength > maxLineWidth) { | |
369 | maxLineWidth = lineLength; | |
d36057df KL |
370 | } |
371 | } | |
372 | ||
373 | setBottomValue(strings.size() - getHeight() + 1); | |
374 | if (getBottomValue() < 0) { | |
375 | setBottomValue(0); | |
376 | } | |
377 | ||
378 | setRightValue(maxLineWidth - getWidth() + 1); | |
379 | if (getRightValue() < 0) { | |
380 | setRightValue(0); | |
381 | } | |
382 | } | |
383 | ||
384 | /** | |
a69ed767 | 385 | * Draw the list. |
d36057df KL |
386 | */ |
387 | @Override | |
388 | public void draw() { | |
389 | CellAttributes color = null; | |
390 | int begin = getVerticalValue(); | |
391 | int topY = 0; | |
392 | for (int i = begin; i < strings.size(); i++) { | |
393 | String line = strings.get(i); | |
394 | if (getHorizontalValue() < line.length()) { | |
395 | line = line.substring(getHorizontalValue()); | |
396 | } else { | |
397 | line = ""; | |
398 | } | |
399 | if (i == selectedString) { | |
400 | if (isAbsoluteActive()) { | |
401 | color = getTheme().getColor("tlist.selected"); | |
402 | } else { | |
403 | color = getTheme().getColor("tlist.selected.inactive"); | |
404 | } | |
405 | } else if (isAbsoluteActive()) { | |
406 | color = getTheme().getColor("tlist"); | |
407 | } else { | |
408 | color = getTheme().getColor("tlist.inactive"); | |
409 | } | |
410 | String formatString = "%-" + Integer.toString(getWidth() - 1) + "s"; | |
a69ed767 | 411 | putStringXY(0, topY, String.format(formatString, line), color); |
d36057df KL |
412 | topY++; |
413 | if (topY >= getHeight() - 1) { | |
414 | break; | |
415 | } | |
416 | } | |
417 | ||
418 | if (isAbsoluteActive()) { | |
419 | color = getTheme().getColor("tlist"); | |
420 | } else { | |
421 | color = getTheme().getColor("tlist.inactive"); | |
422 | } | |
423 | ||
424 | // Pad the rest with blank lines | |
425 | for (int i = topY; i < getHeight() - 1; i++) { | |
a69ed767 | 426 | hLineXY(0, i, getWidth() - 1, ' ', color); |
d36057df KL |
427 | } |
428 | } | |
429 | ||
430 | // ------------------------------------------------------------------------ | |
431 | // TList ------------------------------------------------------------------ | |
432 | // ------------------------------------------------------------------------ | |
433 | ||
434 | /** | |
435 | * Get the selection index. | |
436 | * | |
437 | * @return -1 if nothing is selected, otherwise the index into the list | |
438 | */ | |
439 | public final int getSelectedIndex() { | |
440 | return selectedString; | |
441 | } | |
442 | ||
443 | /** | |
444 | * Set the selected string index. | |
445 | * | |
446 | * @param index -1 to unselect, otherwise the index into the list | |
447 | */ | |
448 | public final void setSelectedIndex(final int index) { | |
449 | selectedString = index; | |
450 | } | |
451 | ||
af56159c KL |
452 | /** |
453 | * Get a selectable string by index. | |
454 | * | |
455 | * @param idx index into list | |
456 | * @return the string at idx in the list | |
457 | */ | |
458 | public final String getListItem(final int idx) { | |
459 | return strings.get(idx); | |
460 | } | |
461 | ||
d36057df KL |
462 | /** |
463 | * Get the selected string. | |
464 | * | |
465 | * @return the selected string, or null of nothing is selected yet | |
466 | */ | |
467 | public final String getSelected() { | |
468 | if ((selectedString >= 0) && (selectedString <= strings.size() - 1)) { | |
469 | return strings.get(selectedString); | |
470 | } | |
471 | return null; | |
472 | } | |
473 | ||
474 | /** | |
475 | * Get the maximum selection index value. | |
476 | * | |
477 | * @return -1 if the list is empty | |
478 | */ | |
479 | public final int getMaxSelectedIndex() { | |
480 | return strings.size() - 1; | |
481 | } | |
482 | ||
a69ed767 KL |
483 | /** |
484 | * Get a copy of the list of strings to display. | |
485 | * | |
486 | * @return the list of strings | |
487 | */ | |
488 | public final List<String> getList() { | |
489 | return new ArrayList<String>(strings); | |
490 | } | |
491 | ||
d36057df KL |
492 | /** |
493 | * Set the new list of strings to display. | |
494 | * | |
495 | * @param list new list of strings | |
496 | */ | |
497 | public final void setList(final List<String> list) { | |
498 | strings.clear(); | |
499 | strings.addAll(list); | |
500 | reflowData(); | |
501 | } | |
502 | ||
503 | /** | |
504 | * Perform user selection action. | |
505 | */ | |
506 | public void dispatchEnter() { | |
507 | assert (selectedString >= 0); | |
508 | assert (selectedString < strings.size()); | |
509 | if (enterAction != null) { | |
510 | enterAction.DO(); | |
511 | } | |
512 | } | |
513 | ||
514 | /** | |
515 | * Perform list movement action. | |
516 | */ | |
517 | public void dispatchMove() { | |
518 | assert (selectedString >= 0); | |
519 | assert (selectedString < strings.size()); | |
520 | if (moveAction != null) { | |
521 | moveAction.DO(); | |
522 | } | |
523 | } | |
524 | ||
a69ed767 KL |
525 | /** |
526 | * Perform single-click action. | |
527 | */ | |
528 | public void dispatchSingleClick() { | |
529 | assert (selectedString >= 0); | |
530 | assert (selectedString < strings.size()); | |
531 | if (singleClickAction != null) { | |
532 | singleClickAction.DO(); | |
533 | } | |
534 | } | |
535 | ||
3649b921 | 536 | } |