2 * Jexer - Java Text User Interface
4 * The MIT License (MIT)
6 * Copyright (C) 2019 Kevin Lamonte
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:
15 * The above copyright notice and this permission notice shall be included in
16 * all copies or substantial portions of the Software.
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.
26 * @author Kevin Lamonte [kevin.lamonte@gmail.com]
32 import java
.io
.IOException
;
33 import java
.text
.MessageFormat
;
34 import java
.util
.ResourceBundle
;
35 import java
.util
.Scanner
;
37 import jexer
.TApplication
;
38 import jexer
.TEditorWidget
;
39 import jexer
.THScroller
;
40 import jexer
.TScrollableWindow
;
41 import jexer
.TVScroller
;
43 import jexer
.bits
.CellAttributes
;
44 import jexer
.bits
.GraphicsChars
;
45 import jexer
.event
.TCommandEvent
;
46 import jexer
.event
.TKeypressEvent
;
47 import jexer
.event
.TMouseEvent
;
48 import jexer
.event
.TResizeEvent
;
49 import static jexer
.TCommand
.*;
50 import static jexer
.TKeypress
.*;
53 * TEditorWindow is a basic text file editor.
55 public class TEditorWindow
extends TScrollableWindow
{
60 private static final ResourceBundle i18n
= ResourceBundle
.getBundle(TEditorWindow
.class.getName());
62 // ------------------------------------------------------------------------
63 // Variables --------------------------------------------------------------
64 // ------------------------------------------------------------------------
67 * Hang onto my TEditor so I can resize it with the window.
69 private TEditorWidget editField
;
72 * The fully-qualified name of the file being edited.
74 private String filename
= "";
76 // ------------------------------------------------------------------------
77 // Constructors -----------------------------------------------------------
78 // ------------------------------------------------------------------------
81 * Public constructor sets window title.
83 * @param parent the main application
84 * @param title the window title
86 public TEditorWindow(final TApplication parent
, final String title
) {
88 super(parent
, title
, 0, 0, parent
.getScreen().getWidth(),
89 parent
.getScreen().getHeight() - 2, RESIZABLE
);
91 editField
= addEditor("", 0, 0, getWidth() - 2, getHeight() - 2);
96 * Public constructor sets window title and contents.
98 * @param parent the main application
99 * @param title the window title, usually a filename
100 * @param contents the data for the editing window, usually the file data
102 public TEditorWindow(final TApplication parent
, final String title
,
103 final String contents
) {
105 super(parent
, title
, 0, 0, parent
.getScreen().getWidth(),
106 parent
.getScreen().getHeight() - 2, RESIZABLE
);
109 editField
= addEditor(contents
, 0, 0, getWidth() - 2, getHeight() - 2);
114 * Public constructor opens a file.
116 * @param parent the main application
117 * @param file the file to open
118 * @throws IOException if a java.io operation throws
120 public TEditorWindow(final TApplication parent
,
121 final File file
) throws IOException
{
123 super(parent
, file
.getName(), 0, 0, parent
.getScreen().getWidth(),
124 parent
.getScreen().getHeight() - 2, RESIZABLE
);
126 filename
= file
.getName();
127 String contents
= readFileData(file
);
128 editField
= addEditor(contents
, 0, 0, getWidth() - 2, getHeight() - 2);
133 * Public constructor.
135 * @param parent the main application
137 public TEditorWindow(final TApplication parent
) {
138 this(parent
, i18n
.getString("newTextDocument"));
141 // ------------------------------------------------------------------------
142 // TWindow ----------------------------------------------------------------
143 // ------------------------------------------------------------------------
153 // Add the row:col on the bottom row
154 CellAttributes borderColor
= getBorder();
155 String location
= String
.format(" %d:%d ",
156 editField
.getEditingRowNumber(),
157 editField
.getEditingColumnNumber());
158 int colon
= location
.indexOf(':');
159 putStringXY(10 - colon
, getHeight() - 1, location
, borderColor
);
161 if (editField
.isDirty()) {
162 putCharXY(2, getHeight() - 1, GraphicsChars
.OCTOSTAR
, borderColor
);
167 * Handle mouse press events.
169 * @param mouse mouse button press event
172 public void onMouseDown(final TMouseEvent mouse
) {
173 // Use TWidget's code to pass the event to the children.
174 super.onMouseDown(mouse
);
176 if (mouseOnEditor(mouse
)) {
177 // The editor might have changed, update the scollbars.
178 setBottomValue(editField
.getMaximumRowNumber());
179 setVerticalValue(editField
.getVisibleRowNumber());
180 setRightValue(editField
.getMaximumColumnNumber());
181 setHorizontalValue(editField
.getEditingColumnNumber());
183 if (mouse
.isMouseWheelUp() || mouse
.isMouseWheelDown()) {
184 // Vertical scrollbar actions
185 editField
.setVisibleRowNumber(getVerticalValue());
191 * Handle mouse release events.
193 * @param mouse mouse button release event
196 public void onMouseUp(final TMouseEvent mouse
) {
197 // Use TWidget's code to pass the event to the children.
198 super.onMouseUp(mouse
);
200 if (mouse
.isMouse1() && mouseOnVerticalScroller(mouse
)) {
201 // Clicked on vertical scrollbar
202 editField
.setVisibleRowNumber(getVerticalValue());
205 // TODO: horizontal scrolling
209 * Method that subclasses can override to handle mouse movements.
211 * @param mouse mouse motion event
214 public void onMouseMotion(final TMouseEvent mouse
) {
215 // Use TWidget's code to pass the event to the children.
216 super.onMouseMotion(mouse
);
218 if (mouseOnEditor(mouse
) && mouse
.isMouse1()) {
219 // The editor might have changed, update the scollbars.
220 setBottomValue(editField
.getMaximumRowNumber());
221 setVerticalValue(editField
.getVisibleRowNumber());
222 setRightValue(editField
.getMaximumColumnNumber());
223 setHorizontalValue(editField
.getEditingColumnNumber());
225 if (mouse
.isMouse1() && mouseOnVerticalScroller(mouse
)) {
226 // Clicked/dragged on vertical scrollbar
227 editField
.setVisibleRowNumber(getVerticalValue());
230 // TODO: horizontal scrolling
238 * @param keypress keystroke event
241 public void onKeypress(final TKeypressEvent keypress
) {
242 // Use TWidget's code to pass the event to the children.
243 super.onKeypress(keypress
);
245 // The editor might have changed, update the scollbars.
246 setBottomValue(editField
.getMaximumRowNumber());
247 setVerticalValue(editField
.getVisibleRowNumber());
248 setRightValue(editField
.getMaximumColumnNumber());
249 setHorizontalValue(editField
.getEditingColumnNumber());
253 * Handle window/screen resize events.
255 * @param event resize event
258 public void onResize(final TResizeEvent event
) {
259 if (event
.getType() == TResizeEvent
.Type
.WIDGET
) {
260 // Resize the text field
261 TResizeEvent editSize
= new TResizeEvent(TResizeEvent
.Type
.WIDGET
,
262 event
.getWidth() - 2, event
.getHeight() - 2);
263 editField
.onResize(editSize
);
265 // Have TScrollableWindow handle the scrollbars
266 super.onResize(event
);
270 // Pass to children instead
271 for (TWidget widget
: getChildren()) {
272 widget
.onResize(event
);
277 * Method that subclasses can override to handle posted command events.
279 * @param command command event
282 public void onCommand(final TCommandEvent command
) {
283 if (command
.equals(cmOpen
)) {
285 String filename
= fileOpenBox(".");
286 if (filename
!= null) {
288 String contents
= readFileData(filename
);
289 new TEditorWindow(getApplication(), filename
, contents
);
290 } catch (IOException e
) {
291 messageBox(i18n
.getString("errorDialogTitle"),
292 MessageFormat
.format(i18n
.
293 getString("errorReadingFile"), e
.getMessage()));
296 } catch (IOException e
) {
297 messageBox(i18n
.getString("errorDialogTitle"),
298 MessageFormat
.format(i18n
.
299 getString("errorOpeningFileDialog"), e
.getMessage()));
304 if (command
.equals(cmSave
)) {
305 if (filename
.length() > 0) {
307 editField
.saveToFilename(filename
);
308 } catch (IOException e
) {
309 messageBox(i18n
.getString("errorDialogTitle"),
310 MessageFormat
.format(i18n
.
311 getString("errorSavingFile"), e
.getMessage()));
317 // Didn't handle it, let children get it instead
318 super.onCommand(command
);
321 // ------------------------------------------------------------------------
322 // TEditorWindow ----------------------------------------------------------
323 // ------------------------------------------------------------------------
326 * Setup other fields after the editor is created.
328 private void setupAfterEditor() {
329 hScroller
= new THScroller(this, 17, getHeight() - 2, getWidth() - 20);
330 vScroller
= new TVScroller(this, getWidth() - 2, 0, getHeight() - 2);
331 setMinimumWindowWidth(25);
332 setMinimumWindowHeight(10);
334 setBottomValue(editField
.getMaximumRowNumber());
336 setRightValue(editField
.getMaximumColumnNumber());
338 statusBar
= newStatusBar(i18n
.getString("statusBar"));
339 statusBar
.addShortcutKeypress(kbF1
, cmHelp
,
340 i18n
.getString("statusBarHelp"));
341 statusBar
.addShortcutKeypress(kbF2
, cmSave
,
342 i18n
.getString("statusBarSave"));
343 statusBar
.addShortcutKeypress(kbF3
, cmOpen
,
344 i18n
.getString("statusBarOpen"));
345 statusBar
.addShortcutKeypress(kbF10
, cmMenu
,
346 i18n
.getString("statusBarMenu"));
350 * Read file data into a string.
352 * @param file the file to open
353 * @return the file contents
354 * @throws IOException if a java.io operation throws
356 private String
readFileData(final File file
) throws IOException
{
357 StringBuilder fileContents
= new StringBuilder();
358 Scanner scanner
= new Scanner(file
);
359 String EOL
= System
.getProperty("line.separator");
362 while (scanner
.hasNextLine()) {
363 fileContents
.append(scanner
.nextLine() + EOL
);
365 return fileContents
.toString();
372 * Read file data into a string.
374 * @param filename the file to open
375 * @return the file contents
376 * @throws IOException if a java.io operation throws
378 private String
readFileData(final String filename
) throws IOException
{
379 return readFileData(new File(filename
));
383 * Check if a mouse press/release/motion event coordinate is over the
386 * @param mouse a mouse-based event
387 * @return whether or not the mouse is on the editor
389 private final boolean mouseOnEditor(final TMouseEvent mouse
) {
390 if ((mouse
.getAbsoluteX() >= getAbsoluteX() + 1)
391 && (mouse
.getAbsoluteX() < getAbsoluteX() + getWidth() - 1)
392 && (mouse
.getAbsoluteY() >= getAbsoluteY() + 1)
393 && (mouse
.getAbsoluteY() < getAbsoluteY() + getHeight() - 1)