a2ab68b0ae34bb6c6cb5d9da01da93405584d952
2 * Jexer - Java Text User Interface
4 * The MIT License (MIT)
6 * Copyright (C) 2016 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]
36 * This window demonstates the TText, THScroller, and TVScroller widgets.
38 public class DemoTextWindow
extends TWindow
{
41 * Hang onto my TText so I can resize it with the window.
43 private TText textField
;
46 * Public constructor makes a text window out of any string.
48 * @param parent the main application
49 * @param title the text string
50 * @param text the text string
52 public DemoTextWindow(final TApplication parent
, final String title
,
55 super(parent
, title
, 0, 0, 44, 20, RESIZABLE
);
56 textField
= addText(text
, 1, 1, 40, 16);
62 * @param parent the main application
64 public DemoTextWindow(final TApplication parent
) {
65 this(parent
, "Text Area",
66 "This is an example of a reflowable text field. Some example text follows.\n" +
68 "Notice that some menu items should be disabled when this window has focus.\n" +
70 "This library implements a text-based windowing system loosely\n" +
71 "reminiscient of Borland's [Turbo\n" +
72 "Vision](http://en.wikipedia.org/wiki/Turbo_Vision) library. For those\n" +
73 "wishing to use the actual C++ Turbo Vision library, see [Sergio\n" +
74 "Sigala's updated version](http://tvision.sourceforge.net/) that runs\n" +
75 "on many more platforms.\n" +
77 "This library is licensed MIT. See the file LICENSE for the full license\n" +
78 "for the details.\n");
83 * Handle window/screen resize events.
85 * @param event resize event
88 public void onResize(final TResizeEvent event
) {
89 if (event
.getType() == TResizeEvent
.Type
.WIDGET
) {
90 // Resize the text field
91 textField
.setWidth(event
.getWidth() - 4);
92 textField
.setHeight(event
.getHeight() - 4);
97 // Pass to children instead
98 for (TWidget widget
: getChildren()) {
99 widget
.onResize(event
);
104 * Play with menu items.
106 public void onFocus() {
107 getApplication().enableMenuItem(2001);
108 getApplication().disableMenuItem(TMenu
.MID_SHELL
);
109 getApplication().disableMenuItem(TMenu
.MID_EXIT
);
113 * Called by application.switchWindow() when another window gets the
116 public void onUnfocus() {
117 getApplication().disableMenuItem(2001);
118 getApplication().enableMenuItem(TMenu
.MID_SHELL
);
119 getApplication().enableMenuItem(TMenu
.MID_EXIT
);