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]
31 import java
.util
.ResourceBundle
;
34 import jexer
.TApplication
;
38 import jexer
.event
.TResizeEvent
;
39 import jexer
.menu
.TMenu
;
40 import static jexer
.TCommand
.*;
41 import static jexer
.TKeypress
.*;
44 * This window demonstates the TText, THScroller, and TVScroller widgets.
46 public class DemoTextWindow
extends TWindow
{
51 private static final ResourceBundle i18n
= ResourceBundle
.getBundle(DemoTextWindow
.class.getName());
53 // ------------------------------------------------------------------------
54 // Variables --------------------------------------------------------------
55 // ------------------------------------------------------------------------
58 * Hang onto my TText so I can resize it with the window.
60 private TText textField
;
62 // ------------------------------------------------------------------------
63 // Constructors -----------------------------------------------------------
64 // ------------------------------------------------------------------------
67 * Public constructor makes a text window out of any string.
69 * @param parent the main application
70 * @param title the text string
71 * @param text the text string
73 public DemoTextWindow(final TApplication parent
, final String title
,
76 super(parent
, title
, 0, 0, 44, 22, RESIZABLE
);
77 textField
= addText(text
, 1, 3, 40, 16);
79 addButton(i18n
.getString("left"), 1, 1, new TAction() {
81 textField
.leftJustify();
85 addButton(i18n
.getString("center"), 10, 1, new TAction() {
87 textField
.centerJustify();
91 addButton(i18n
.getString("right"), 21, 1, new TAction() {
93 textField
.rightJustify();
97 addButton(i18n
.getString("full"), 31, 1, new TAction() {
99 textField
.fullJustify();
103 statusBar
= newStatusBar(i18n
.getString("statusBar"));
104 statusBar
.addShortcutKeypress(kbF1
, cmHelp
,
105 i18n
.getString("statusBarHelp"));
106 statusBar
.addShortcutKeypress(kbF2
, cmShell
,
107 i18n
.getString("statusBarShell"));
108 statusBar
.addShortcutKeypress(kbF3
, cmOpen
,
109 i18n
.getString("statusBarOpen"));
110 statusBar
.addShortcutKeypress(kbF10
, cmExit
,
111 i18n
.getString("statusBarExit"));
115 * Public constructor.
117 * @param parent the main application
119 public DemoTextWindow(final TApplication parent
) {
120 this(parent
, i18n
.getString("windowTitle"),
121 "This is an example of a reflowable text field. Some example text follows.\n" +
123 "Notice that some menu items should be disabled when this window has focus.\n" +
125 "This library implements a text-based windowing system loosely " +
126 "reminiscent of Borland's [Turbo " +
127 "Vision](http://en.wikipedia.org/wiki/Turbo_Vision) library. For those " +
128 "wishing to use the actual C++ Turbo Vision library, see [Sergio " +
129 "Sigala's updated version](http://tvision.sourceforge.net/) that runs " +
130 "on many more platforms.\n" +
132 "This library is licensed MIT. See the file LICENSE for the full license " +
133 "for the details.\n");
137 // ------------------------------------------------------------------------
138 // TWindow ----------------------------------------------------------------
139 // ------------------------------------------------------------------------
142 * Handle window/screen resize events.
144 * @param event resize event
147 public void onResize(final TResizeEvent event
) {
148 if (event
.getType() == TResizeEvent
.Type
.WIDGET
) {
149 // Resize the text field
150 TResizeEvent textSize
= new TResizeEvent(TResizeEvent
.Type
.WIDGET
,
151 event
.getWidth() - 4, event
.getHeight() - 6);
152 textField
.onResize(textSize
);
156 // Pass to children instead
157 for (TWidget widget
: getChildren()) {
158 widget
.onResize(event
);
163 * Play with menu items.
165 public void onFocus() {
166 getApplication().enableMenuItem(2001);
167 getApplication().disableMenuItem(TMenu
.MID_SHELL
);
168 getApplication().disableMenuItem(TMenu
.MID_EXIT
);
172 * Called by application.switchWindow() when another window gets the
175 public void onUnfocus() {
176 getApplication().disableMenuItem(2001);
177 getApplication().enableMenuItem(TMenu
.MID_SHELL
);
178 getApplication().enableMenuItem(TMenu
.MID_EXIT
);