#50 additional mouse pointer options
[fanfix.git] / src / jexer / TEditorWidget.java
CommitLineData
12b55d76
KL
1/*
2 * Jexer - Java Text User Interface
3 *
4 * The MIT License (MIT)
5 *
a69ed767 6 * Copyright (C) 2019 Kevin Lamonte
12b55d76
KL
7 *
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:
14 *
15 * The above copyright notice and this permission notice shall be included in
16 * all copies or substantial portions of the Software.
17 *
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.
25 *
26 * @author Kevin Lamonte [kevin.lamonte@gmail.com]
27 * @version 1
28 */
29package jexer;
30
71a389c9
KL
31import java.io.IOException;
32
12b55d76
KL
33import jexer.bits.CellAttributes;
34import jexer.event.TKeypressEvent;
35import jexer.event.TMouseEvent;
e8a11f98 36import jexer.event.TResizeEvent;
12b55d76
KL
37import jexer.teditor.Document;
38import jexer.teditor.Line;
39import jexer.teditor.Word;
40import static jexer.TKeypress.*;
41
42/**
43 * TEditorWidget displays an editable text document. It is unaware of
44 * scrolling behavior, but can respond to mouse and keyboard events.
45 */
051e2913 46public class TEditorWidget extends TWidget {
12b55d76 47
615a0d99
KL
48 // ------------------------------------------------------------------------
49 // Constants --------------------------------------------------------------
50 // ------------------------------------------------------------------------
51
b1a8acec
KL
52 /**
53 * The number of lines to scroll on mouse wheel up/down.
54 */
55 private static final int wheelScrollSize = 3;
56
615a0d99
KL
57 // ------------------------------------------------------------------------
58 // Variables --------------------------------------------------------------
59 // ------------------------------------------------------------------------
60
12b55d76
KL
61 /**
62 * The document being edited.
63 */
64 private Document document;
65
e8a11f98
KL
66 /**
67 * The default color for the TEditor class.
68 */
69 private CellAttributes defaultColor = null;
70
71 /**
72 * The topmost line number in the visible area. 0-based.
73 */
74 private int topLine = 0;
75
76 /**
77 * The leftmost column number in the visible area. 0-based.
78 */
79 private int leftColumn = 0;
80
615a0d99
KL
81 // ------------------------------------------------------------------------
82 // Constructors -----------------------------------------------------------
83 // ------------------------------------------------------------------------
84
12b55d76
KL
85 /**
86 * Public constructor.
87 *
88 * @param parent parent widget
89 * @param text text on the screen
90 * @param x column relative to parent
91 * @param y row relative to parent
92 * @param width width of text area
93 * @param height height of text area
94 */
95 public TEditorWidget(final TWidget parent, final String text, final int x,
96 final int y, final int width, final int height) {
97
98 // Set parent and window
99 super(parent, x, y, width, height);
100
101 setCursorVisible(true);
e8a11f98
KL
102
103 defaultColor = getTheme().getColor("teditor");
104 document = new Document(text, defaultColor);
12b55d76
KL
105 }
106
615a0d99
KL
107 // ------------------------------------------------------------------------
108 // TWidget ----------------------------------------------------------------
109 // ------------------------------------------------------------------------
110
12b55d76
KL
111 /**
112 * Draw the text box.
113 */
114 @Override
115 public void draw() {
12b55d76
KL
116 for (int i = 0; i < getHeight(); i++) {
117 // Background line
e8a11f98 118 getScreen().hLineXY(0, i, getWidth(), ' ', defaultColor);
12b55d76
KL
119
120 // Now draw document's line
e8a11f98
KL
121 if (topLine + i < document.getLineCount()) {
122 Line line = document.getLine(topLine + i);
12b55d76
KL
123 int x = 0;
124 for (Word word: line.getWords()) {
e8a11f98
KL
125 // For now, we are cheating: draw outside the left region
126 // if needed and let screen do the clipping.
127 getScreen().putStringXY(x - leftColumn, i, word.getText(),
12b55d76
KL
128 word.getColor());
129 x += word.getDisplayLength();
e8a11f98 130 if (x - leftColumn > getWidth()) {
12b55d76
KL
131 break;
132 }
133 }
134 }
135 }
12b55d76
KL
136 }
137
138 /**
139 * Handle mouse press events.
140 *
141 * @param mouse mouse button press event
142 */
143 @Override
144 public void onMouseDown(final TMouseEvent mouse) {
145 if (mouse.isMouseWheelUp()) {
b1a8acec
KL
146 for (int i = 0; i < wheelScrollSize; i++) {
147 if (topLine > 0) {
148 topLine--;
149 alignDocument(false);
150 }
e8a11f98 151 }
12b55d76
KL
152 return;
153 }
154 if (mouse.isMouseWheelDown()) {
b1a8acec
KL
155 for (int i = 0; i < wheelScrollSize; i++) {
156 if (topLine < document.getLineCount() - 1) {
157 topLine++;
158 alignDocument(true);
159 }
e8a11f98 160 }
12b55d76
KL
161 return;
162 }
163
e8a11f98
KL
164 if (mouse.isMouse1()) {
165 // Set the row and column
166 int newLine = topLine + mouse.getY();
167 int newX = leftColumn + mouse.getX();
df602ccf 168 if (newLine > document.getLineCount() - 1) {
e8a11f98
KL
169 // Go to the end
170 document.setLineNumber(document.getLineCount() - 1);
171 document.end();
df602ccf
KL
172 if (newLine > document.getLineCount() - 1) {
173 setCursorY(document.getLineCount() - 1 - topLine);
e8a11f98 174 } else {
df602ccf 175 setCursorY(mouse.getY());
e8a11f98
KL
176 }
177 alignCursor();
178 return;
179 }
180
181 document.setLineNumber(newLine);
182 setCursorY(mouse.getY());
4297b49b 183 if (newX >= document.getCurrentLine().getDisplayLength()) {
e8a11f98
KL
184 document.end();
185 alignCursor();
186 } else {
df602ccf 187 document.setCursor(newX);
e8a11f98
KL
188 setCursorX(mouse.getX());
189 }
190 return;
191 }
12b55d76
KL
192
193 // Pass to children
194 super.onMouseDown(mouse);
195 }
196
197 /**
198 * Handle keystrokes.
199 *
200 * @param keypress keystroke event
201 */
202 @Override
203 public void onKeypress(final TKeypressEvent keypress) {
204 if (keypress.equals(kbLeft)) {
df602ccf
KL
205 document.left();
206 alignTopLine(false);
12b55d76 207 } else if (keypress.equals(kbRight)) {
df602ccf
KL
208 document.right();
209 alignTopLine(true);
12b55d76 210 } else if (keypress.equals(kbUp)) {
71a389c9
KL
211 document.up();
212 alignTopLine(false);
12b55d76 213 } else if (keypress.equals(kbDown)) {
71a389c9
KL
214 document.down();
215 alignTopLine(true);
12b55d76 216 } else if (keypress.equals(kbPgUp)) {
71a389c9
KL
217 document.up(getHeight() - 1);
218 alignTopLine(false);
12b55d76 219 } else if (keypress.equals(kbPgDn)) {
71a389c9
KL
220 document.down(getHeight() - 1);
221 alignTopLine(true);
12b55d76 222 } else if (keypress.equals(kbHome)) {
e8a11f98
KL
223 if (document.home()) {
224 leftColumn = 0;
225 if (leftColumn < 0) {
226 leftColumn = 0;
227 }
228 setCursorX(0);
229 }
12b55d76 230 } else if (keypress.equals(kbEnd)) {
e8a11f98
KL
231 if (document.end()) {
232 alignCursor();
233 }
12b55d76
KL
234 } else if (keypress.equals(kbCtrlHome)) {
235 document.setLineNumber(0);
236 document.home();
e8a11f98
KL
237 topLine = 0;
238 leftColumn = 0;
239 setCursorX(0);
240 setCursorY(0);
12b55d76
KL
241 } else if (keypress.equals(kbCtrlEnd)) {
242 document.setLineNumber(document.getLineCount() - 1);
243 document.end();
71a389c9 244 alignTopLine(false);
12b55d76
KL
245 } else if (keypress.equals(kbIns)) {
246 document.setOverwrite(!document.getOverwrite());
247 } else if (keypress.equals(kbDel)) {
248 document.del();
71a389c9 249 alignCursor();
39e86397
KL
250 } else if (keypress.equals(kbBackspace)
251 || keypress.equals(kbBackspaceDel)
252 ) {
12b55d76 253 document.backspace();
df602ccf
KL
254 alignTopLine(false);
255 } else if (keypress.equals(kbTab)) {
256 // TODO: tab character. For now just add spaces until we hit
257 // modulo 8.
258 for (int i = document.getCursor(); (i + 1) % 8 != 0; i++) {
259 document.addChar(' ');
260 }
e8a11f98 261 alignCursor();
71a389c9 262 } else if (keypress.equals(kbEnter)) {
df602ccf
KL
263 document.enter();
264 alignTopLine(true);
12b55d76
KL
265 } else if (!keypress.getKey().isFnKey()
266 && !keypress.getKey().isAlt()
267 && !keypress.getKey().isCtrl()
268 ) {
269 // Plain old keystroke, process it
afdec5e9 270 // TODO: fix document to use ints, not chars
2d3f60d8 271 document.addChar(keypress.getKey().getChar());
71a389c9 272 alignCursor();
12b55d76
KL
273 } else {
274 // Pass other keys (tab etc.) on to TWidget
275 super.onKeypress(keypress);
276 }
277 }
278
e8a11f98
KL
279 /**
280 * Method that subclasses can override to handle window/screen resize
281 * events.
282 *
283 * @param resize resize event
284 */
285 @Override
286 public void onResize(final TResizeEvent resize) {
287 // Change my width/height, and pull the cursor in as needed.
288 if (resize.getType() == TResizeEvent.Type.WIDGET) {
289 setWidth(resize.getWidth());
290 setHeight(resize.getHeight());
291 // See if the cursor is now outside the window, and if so move
292 // things.
293 if (getCursorX() >= getWidth()) {
294 leftColumn += getCursorX() - (getWidth() - 1);
295 setCursorX(getWidth() - 1);
296 }
297 if (getCursorY() >= getHeight()) {
298 topLine += getCursorY() - (getHeight() - 1);
299 setCursorY(getHeight() - 1);
300 }
301 } else {
302 // Let superclass handle it
303 super.onResize(resize);
304 }
305 }
306
615a0d99
KL
307 // ------------------------------------------------------------------------
308 // TEditorWidget ----------------------------------------------------------
309 // ------------------------------------------------------------------------
310
311 /**
312 * Align visible area with document current line.
313 *
314 * @param topLineIsTop if true, make the top visible line the document
315 * current line if it was off-screen. If false, make the bottom visible
316 * line the document current line.
317 */
318 private void alignTopLine(final boolean topLineIsTop) {
319 int line = document.getLineNumber();
320
321 if ((line < topLine) || (line > topLine + getHeight() - 1)) {
322 // Need to move topLine to bring document back into view.
323 if (topLineIsTop) {
324 topLine = line - (getHeight() - 1);
325 if (topLine < 0) {
326 topLine = 0;
327 }
328 assert (topLine >= 0);
329 } else {
330 topLine = line;
331 assert (topLine >= 0);
332 }
333 }
334
335 /*
336 System.err.println("line " + line + " topLine " + topLine);
337 */
338
339 // Document is in view, let's set cursorY
340 assert (line >= topLine);
341 setCursorY(line - topLine);
342 alignCursor();
343 }
344
345 /**
346 * Align document current line with visible area.
347 *
348 * @param topLineIsTop if true, make the top visible line the document
349 * current line if it was off-screen. If false, make the bottom visible
350 * line the document current line.
351 */
352 private void alignDocument(final boolean topLineIsTop) {
353 int line = document.getLineNumber();
354 int cursor = document.getCursor();
355
356 if ((line < topLine) || (line > topLine + getHeight() - 1)) {
357 // Need to move document to ensure it fits view.
358 if (topLineIsTop) {
359 document.setLineNumber(topLine);
360 } else {
361 document.setLineNumber(topLine + (getHeight() - 1));
362 }
363 if (cursor < document.getCurrentLine().getDisplayLength()) {
364 document.setCursor(cursor);
365 }
366 }
367
368 /*
369 System.err.println("getLineNumber() " + document.getLineNumber() +
370 " topLine " + topLine);
371 */
372
373 // Document is in view, let's set cursorY
374 setCursorY(document.getLineNumber() - topLine);
375 alignCursor();
376 }
377
378 /**
379 * Align visible cursor with document cursor.
380 */
381 private void alignCursor() {
382 int width = getWidth();
383
384 int desiredX = document.getCursor() - leftColumn;
385 if (desiredX < 0) {
386 // We need to push the screen to the left.
387 leftColumn = document.getCursor();
388 } else if (desiredX > width - 1) {
389 // We need to push the screen to the right.
390 leftColumn = document.getCursor() - (width - 1);
391 }
392
393 /*
394 System.err.println("document cursor " + document.getCursor() +
395 " leftColumn " + leftColumn);
396 */
397
398
399 setCursorX(document.getCursor() - leftColumn);
400 }
401
71a389c9
KL
402 /**
403 * Get the number of lines in the underlying Document.
404 *
405 * @return the number of lines
406 */
407 public int getLineCount() {
408 return document.getLineCount();
409 }
410
b6faeac0
KL
411 /**
412 * Get the current visible top row number. 1-based.
413 *
414 * @return the visible top row number. Row 1 is the first row.
415 */
416 public int getVisibleRowNumber() {
417 return topLine + 1;
418 }
419
420 /**
421 * Set the current visible row number. 1-based.
422 *
423 * @param row the new visible row number. Row 1 is the first row.
424 */
425 public void setVisibleRowNumber(final int row) {
426 assert (row > 0);
427 if ((row > 0) && (row < document.getLineCount())) {
428 topLine = row - 1;
429 alignDocument(true);
430 }
431 }
432
71a389c9
KL
433 /**
434 * Get the current editing row number. 1-based.
435 *
436 * @return the editing row number. Row 1 is the first row.
437 */
438 public int getEditingRowNumber() {
439 return document.getLineNumber() + 1;
440 }
441
442 /**
443 * Set the current editing row number. 1-based.
444 *
445 * @param row the new editing row number. Row 1 is the first row.
446 */
447 public void setEditingRowNumber(final int row) {
fe0770f9
KL
448 assert (row > 0);
449 if ((row > 0) && (row < document.getLineCount())) {
450 document.setLineNumber(row - 1);
451 alignTopLine(true);
452 }
71a389c9
KL
453 }
454
455 /**
456 * Get the current editing column number. 1-based.
457 *
458 * @return the editing column number. Column 1 is the first column.
459 */
460 public int getEditingColumnNumber() {
461 return document.getCursor() + 1;
462 }
463
464 /**
465 * Set the current editing column number. 1-based.
466 *
467 * @param column the new editing column number. Column 1 is the first
468 * column.
469 */
470 public void setEditingColumnNumber(final int column) {
fe0770f9
KL
471 if ((column > 0) && (column < document.getLineLength())) {
472 document.setCursor(column - 1);
473 alignCursor();
474 }
71a389c9
KL
475 }
476
477 /**
478 * Get the maximum possible row number. 1-based.
479 *
480 * @return the maximum row number. Row 1 is the first row.
481 */
482 public int getMaximumRowNumber() {
483 return document.getLineCount() + 1;
484 }
485
486 /**
487 * Get the maximum possible column number. 1-based.
488 *
489 * @return the maximum column number. Column 1 is the first column.
490 */
491 public int getMaximumColumnNumber() {
492 return document.getLineLengthMax() + 1;
493 }
494
495 /**
496 * Get the dirty value.
497 *
498 * @return true if the buffer is dirty
499 */
500 public boolean isDirty() {
501 return document.isDirty();
502 }
503
504 /**
505 * Save contents to file.
506 *
507 * @param filename file to save to
508 * @throws IOException if a java.io operation throws
509 */
510 public void saveToFilename(final String filename) throws IOException {
511 document.saveToFilename(filename);
512 }
513
12b55d76 514}