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 jexer
.bits
.CellAttributes
;
32 import jexer
.bits
.GraphicsChars
;
33 import jexer
.event
.TKeypressEvent
;
34 import jexer
.event
.TMenuEvent
;
35 import jexer
.event
.TMouseEvent
;
38 * TDesktop is a special-class window that is drawn underneath everything
39 * else. Like a TWindow, it can contain widgets and perform "background"
40 * processing via onIdle(). But unlike a TWindow, it cannot be hidden,
44 * Events are passed to TDesktop as follows:
46 * <li>Mouse events are seen if they do not cover any other windows.</li>
47 * <li>Keypress events are seen if no other windows are open.</li>
48 * <li>Menu events are seen if no other windows are open.</li>
49 * <li>Command events are seen if no other windows are open.</li>
52 public class TDesktop
extends TWindow
{
54 // ------------------------------------------------------------------------
55 // Constructors -----------------------------------------------------------
56 // ------------------------------------------------------------------------
61 * @param parent parent application
63 public TDesktop(final TApplication parent
) {
65 super(parent
, "", 0, 0, parent
.getScreen().getWidth(),
66 parent
.getScreen().getHeight() - 1);
71 // ------------------------------------------------------------------------
72 // TWindow ----------------------------------------------------------------
73 // ------------------------------------------------------------------------
76 * The default TDesktop draws a hatch character across everything.
80 CellAttributes background
= getTheme().getColor("tdesktop.background");
81 putAll(GraphicsChars
.HATCH
, background
);
85 * Hide window. This is a NOP for TDesktop.
88 public final void hide() {}
91 * Show window. This is a NOP for TDesktop.
94 public final void show() {}
97 * Called by hide(). This is a NOP for TDesktop.
100 public final void onHide() {}
103 * Called by show(). This is a NOP for TDesktop.
106 public final void onShow() {}
109 * Returns true if the mouse is currently on the close button.
111 * @return true if mouse is currently on the close button
114 protected final boolean mouseOnClose() {
119 * Returns true if the mouse is currently on the maximize/restore button.
121 * @return true if the mouse is currently on the maximize/restore button
124 protected final boolean mouseOnMaximize() {
129 * Returns true if the mouse is currently on the resizable lower right
132 * @return true if the mouse is currently on the resizable lower right
136 protected final boolean mouseOnResize() {
141 * Handle mouse button presses.
143 * @param mouse mouse button event
146 public void onMouseDown(final TMouseEvent mouse
) {
150 for (TWidget widget
: getChildren()) {
151 if (widget
.mouseWouldHit(mouse
)) {
152 // Dispatch to this child, also activate it
155 // Set x and y relative to the child's coordinates
156 mouse
.setX(mouse
.getAbsoluteX() - widget
.getAbsoluteX());
157 mouse
.setY(mouse
.getAbsoluteY() - widget
.getAbsoluteY());
158 widget
.handleEvent(mouse
);
165 * Handle mouse button releases.
167 * @param mouse mouse button release event
170 public void onMouseUp(final TMouseEvent mouse
) {
174 for (TWidget widget
: getChildren()) {
175 if (widget
.mouseWouldHit(mouse
)) {
176 // Dispatch to this child, also activate it
179 // Set x and y relative to the child's coordinates
180 mouse
.setX(mouse
.getAbsoluteX() - widget
.getAbsoluteX());
181 mouse
.setY(mouse
.getAbsoluteY() - widget
.getAbsoluteY());
182 widget
.handleEvent(mouse
);
189 * Handle mouse movements.
191 * @param mouse mouse motion event
194 public void onMouseMotion(final TMouseEvent mouse
) {
197 // Default: do nothing, pass to children instead
198 super.onMouseMotion(mouse
);
204 * @param keypress keystroke event
207 public void onKeypress(final TKeypressEvent keypress
) {
208 // Default: do nothing, pass to children instead
209 super.onKeypress(keypress
);
213 * Handle posted menu events.
215 * @param menu menu event
218 public void onMenu(final TMenuEvent menu
) {
219 // Default: do nothing, pass to children instead