Test commit from within Eclipse
[fanfix.git] / src / jexer / TWindow.java
CommitLineData
48e27807
KL
1/**
2 * Jexer - Java Text User Interface
3 *
4 * License: LGPLv3 or later
5 *
6 * This module is licensed under the GNU Lesser General Public License
7 * Version 3. Please see the file "COPYING" in this directory for more
8 * information about the GNU Lesser General Public License Version 3.
9 *
10 * Copyright (C) 2015 Kevin Lamonte
11 *
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU Lesser General Public License
14 * as published by the Free Software Foundation; either version 3 of
15 * the License, or (at your option) any later version.
16 *
17 * This program is distributed in the hope that it will be useful, but
18 * WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20 * General Public License for more details.
21 *
22 * You should have received a copy of the GNU Lesser General Public
23 * License along with this program; if not, see
24 * http://www.gnu.org/licenses/, or write to the Free Software
25 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
26 * 02110-1301 USA
27 *
28 * @author Kevin Lamonte [kevin.lamonte@gmail.com]
29 * @version 1
30 */
31package jexer;
32
33import jexer.bits.Cell;
34import jexer.bits.CellAttributes;
35import jexer.bits.GraphicsChars;
36import jexer.event.TCommandEvent;
37import jexer.event.TKeypressEvent;
38import jexer.event.TMenuEvent;
39import jexer.event.TMouseEvent;
40import jexer.event.TResizeEvent;
41import jexer.io.Screen;
928811d8 42import jexer.menu.TMenu;
48e27807
KL
43import static jexer.TCommand.*;
44import static jexer.TKeypress.*;
45
46/**
47 * TWindow is the top-level container and drawing surface for other widgets.
48 */
2b9c27db 49public class TWindow extends TWidget {
48e27807
KL
50
51 /**
52 * Window's parent TApplication.
53 */
fca67db0 54 private TApplication application;
48e27807
KL
55
56 /**
57 * Get this TWindow's parent TApplication.
58 *
59 * @return this TWindow's parent TApplication
60 */
928811d8 61 @Override
48e27807
KL
62 public final TApplication getApplication() {
63 return application;
64 }
65
66 /**
67 * Get the Screen.
68 *
69 * @return the Screen
70 */
928811d8 71 @Override
48e27807
KL
72 public final Screen getScreen() {
73 return application.getScreen();
74 }
75
76 /**
77 * Window title.
78 */
fca67db0
KL
79 private String title = "";
80
81 /**
82 * Get window title.
83 *
84 * @return window title
85 */
86 public final String getTitle() {
87 return title;
88 }
89
90 /**
91 * Set window title.
92 *
93 * @param title new window title
94 */
95 public final void setTitle(final String title) {
96 this.title = title;
97 }
48e27807
KL
98
99 /**
100 * Window is resizable (default yes).
101 */
102 public static final int RESIZABLE = 0x01;
103
104 /**
105 * Window is modal (default no).
106 */
107 public static final int MODAL = 0x02;
108
109 /**
110 * Window is centered (default no).
111 */
112 public static final int CENTERED = 0x04;
113
114 /**
115 * Window flags.
116 */
117 private int flags = RESIZABLE;
118
119 /**
120 * Z order. Lower number means more in-front.
121 */
122 private int z = 0;
123
a06459bd
KL
124 /**
125 * Get Z order. Lower number means more in-front.
126 *
127 * @return Z value. Lower number means more in-front.
128 */
129 public final int getZ() {
130 return z;
131 }
132
133 /**
134 * Set Z order. Lower number means more in-front.
135 *
136 * @param z the new Z value. Lower number means more in-front.
137 */
138 public final void setZ(final int z) {
139 this.z = z;
140 }
141
48e27807
KL
142 /**
143 * If true, then the user clicked on the title bar and is moving the
144 * window.
145 */
bd8d51fa 146 protected boolean inWindowMove = false;
48e27807
KL
147
148 /**
149 * If true, then the user clicked on the bottom right corner and is
150 * resizing the window.
151 */
bd8d51fa 152 protected boolean inWindowResize = false;
48e27807
KL
153
154 /**
155 * If true, then the user selected "Size/Move" (or hit Ctrl-F5) and is
156 * resizing/moving the window via the keyboard.
157 */
158 private boolean inKeyboardResize = false;
159
160 /**
161 * If true, this window is maximized.
162 */
163 private boolean maximized = false;
164
165 /**
166 * Remember mouse state.
167 */
928811d8 168 protected TMouseEvent mouse;
48e27807
KL
169
170 // For moving the window. resizing also uses moveWindowMouseX/Y
171 private int moveWindowMouseX;
172 private int moveWindowMouseY;
173 private int oldWindowX;
174 private int oldWindowY;
175
176 // Resizing
177 private int resizeWindowWidth;
178 private int resizeWindowHeight;
179 private int minimumWindowWidth = 10;
180 private int minimumWindowHeight = 2;
181 private int maximumWindowWidth = -1;
182 private int maximumWindowHeight = -1;
183
184 // For maximize/restore
185 private int restoreWindowWidth;
186 private int restoreWindowHeight;
187 private int restoreWindowX;
188 private int restoreWindowY;
189
34a42e78
KL
190 /**
191 * Set the maximum width for this window.
192 *
193 * @param maximumWindowWidth new maximum width
194 */
195 public final void setMaximumWindowWidth(final int maximumWindowWidth) {
196 this.maximumWindowWidth = maximumWindowWidth;
197 }
198
48e27807
KL
199 /**
200 * Public constructor. Window will be located at (0, 0).
201 *
202 * @param application TApplication that manages this window
203 * @param title window title, will be centered along the top border
204 * @param width width of window
205 * @param height height of window
206 */
207 public TWindow(final TApplication application, final String title,
208 final int width, final int height) {
209
210 this(application, title, 0, 0, width, height, RESIZABLE);
211 }
212
213 /**
214 * Public constructor. Window will be located at (0, 0).
215 *
216 * @param application TApplication that manages this window
217 * @param title window title, will be centered along the top border
218 * @param width width of window
219 * @param height height of window
220 * @param flags bitmask of RESIZABLE, CENTERED, or MODAL
221 */
222 public TWindow(final TApplication application, final String title,
223 final int width, final int height, final int flags) {
224
225 this(application, title, 0, 0, width, height, flags);
226 }
227
228 /**
229 * Public constructor.
230 *
231 * @param application TApplication that manages this window
232 * @param title window title, will be centered along the top border
233 * @param x column relative to parent
234 * @param y row relative to parent
235 * @param width width of window
236 * @param height height of window
237 */
238 public TWindow(final TApplication application, final String title,
239 final int x, final int y, final int width, final int height) {
240
241 this(application, title, x, y, width, height, RESIZABLE);
242 }
243
244 /**
245 * Public constructor.
246 *
247 * @param application TApplication that manages this window
248 * @param title window title, will be centered along the top border
249 * @param x column relative to parent
250 * @param y row relative to parent
251 * @param width width of window
252 * @param height height of window
253 * @param flags mask of RESIZABLE, CENTERED, or MODAL
254 */
255 public TWindow(final TApplication application, final String title,
256 final int x, final int y, final int width, final int height,
257 final int flags) {
258
fca67db0
KL
259 super();
260
48e27807 261 // I am my own window and parent
fca67db0
KL
262 setupForTWindow(this, x, y + application.getDesktopTop(),
263 width, height);
48e27807
KL
264
265 // Save fields
266 this.title = title;
267 this.application = application;
48e27807
KL
268 this.flags = flags;
269
270 // Minimum width/height are 10 and 2
271 assert (width >= 10);
fca67db0 272 assert (getHeight() >= 2);
48e27807
KL
273
274 // MODAL implies CENTERED
275 if (isModal()) {
276 this.flags |= CENTERED;
277 }
278
279 // Center window if specified
280 center();
281
282 // Add me to the application
283 application.addWindow(this);
284 }
285
286 /**
287 * Recenter the window on-screen.
288 */
289 public final void center() {
290 if ((flags & CENTERED) != 0) {
fca67db0
KL
291 if (getWidth() < getScreen().getWidth()) {
292 setX((getScreen().getWidth() - getWidth()) / 2);
48e27807 293 } else {
fca67db0 294 setX(0);
48e27807 295 }
fca67db0
KL
296 setY(((application.getDesktopBottom()
297 - application.getDesktopTop()) - getHeight()) / 2);
298 if (getY() < 0) {
299 setY(0);
48e27807 300 }
fca67db0 301 setY(getY() + application.getDesktopTop());
48e27807
KL
302 }
303 }
304
305 /**
306 * Returns true if this window is modal.
307 *
308 * @return true if this window is modal
309 */
310 public final boolean isModal() {
311 if ((flags & MODAL) == 0) {
312 return false;
313 }
314 return true;
315 }
316
48e27807
KL
317 /**
318 * Returns true if the mouse is currently on the close button.
319 *
320 * @return true if mouse is currently on the close button
321 */
322 private boolean mouseOnClose() {
323 if ((mouse != null)
fca67db0
KL
324 && (mouse.getAbsoluteY() == getY())
325 && (mouse.getAbsoluteX() == getX() + 3)
48e27807
KL
326 ) {
327 return true;
328 }
329 return false;
330 }
331
332 /**
333 * Returns true if the mouse is currently on the maximize/restore button.
334 *
335 * @return true if the mouse is currently on the maximize/restore button
336 */
337 private boolean mouseOnMaximize() {
338 if ((mouse != null)
339 && !isModal()
fca67db0
KL
340 && (mouse.getAbsoluteY() == getY())
341 && (mouse.getAbsoluteX() == getX() + getWidth() - 4)
48e27807
KL
342 ) {
343 return true;
344 }
345 return false;
346 }
347
348 /**
349 * Returns true if the mouse is currently on the resizable lower right
350 * corner.
351 *
352 * @return true if the mouse is currently on the resizable lower right
353 * corner
354 */
355 private boolean mouseOnResize() {
356 if (((flags & RESIZABLE) != 0)
357 && !isModal()
358 && (mouse != null)
fca67db0
KL
359 && (mouse.getAbsoluteY() == getY() + getHeight() - 1)
360 && ((mouse.getAbsoluteX() == getX() + getWidth() - 1)
361 || (mouse.getAbsoluteX() == getX() + getWidth() - 2))
48e27807
KL
362 ) {
363 return true;
364 }
365 return false;
366 }
367
368 /**
369 * Retrieve the background color.
370 *
371 * @return the background color
372 */
30d336cc 373 public final CellAttributes getBackground() {
48e27807
KL
374 if (!isModal()
375 && (inWindowMove || inWindowResize || inKeyboardResize)
376 ) {
fca67db0 377 assert (getActive());
928811d8 378 return getTheme().getColor("twindow.background.windowmove");
48e27807 379 } else if (isModal() && inWindowMove) {
fca67db0 380 assert (getActive());
928811d8 381 return getTheme().getColor("twindow.background.modal");
48e27807 382 } else if (isModal()) {
fca67db0 383 if (getActive()) {
928811d8 384 return getTheme().getColor("twindow.background.modal");
48e27807 385 }
928811d8 386 return getTheme().getColor("twindow.background.modal.inactive");
fca67db0 387 } else if (getActive()) {
48e27807 388 assert (!isModal());
928811d8 389 return getTheme().getColor("twindow.background");
48e27807
KL
390 } else {
391 assert (!isModal());
928811d8 392 return getTheme().getColor("twindow.background.inactive");
48e27807
KL
393 }
394 }
395
396 /**
397 * Retrieve the border color.
398 *
399 * @return the border color
400 */
928811d8 401 private CellAttributes getBorder() {
48e27807
KL
402 if (!isModal()
403 && (inWindowMove || inWindowResize || inKeyboardResize)
404 ) {
fca67db0 405 assert (getActive());
928811d8 406 return getTheme().getColor("twindow.border.windowmove");
48e27807 407 } else if (isModal() && inWindowMove) {
fca67db0 408 assert (getActive());
928811d8 409 return getTheme().getColor("twindow.border.modal.windowmove");
48e27807 410 } else if (isModal()) {
fca67db0 411 if (getActive()) {
928811d8 412 return getTheme().getColor("twindow.border.modal");
48e27807 413 } else {
928811d8 414 return getTheme().getColor("twindow.border.modal.inactive");
48e27807 415 }
fca67db0 416 } else if (getActive()) {
48e27807 417 assert (!isModal());
928811d8 418 return getTheme().getColor("twindow.border");
48e27807
KL
419 } else {
420 assert (!isModal());
928811d8 421 return getTheme().getColor("twindow.border.inactive");
48e27807
KL
422 }
423 }
424
425 /**
426 * Retrieve the border line type.
427 *
428 * @return the border line type
429 */
928811d8 430 private int getBorderType() {
48e27807
KL
431 if (!isModal()
432 && (inWindowMove || inWindowResize || inKeyboardResize)
433 ) {
fca67db0 434 assert (getActive());
48e27807
KL
435 return 1;
436 } else if (isModal() && inWindowMove) {
fca67db0 437 assert (getActive());
48e27807
KL
438 return 1;
439 } else if (isModal()) {
fca67db0 440 if (getActive()) {
48e27807
KL
441 return 2;
442 } else {
443 return 1;
444 }
fca67db0 445 } else if (getActive()) {
48e27807
KL
446 return 2;
447 } else {
448 return 1;
449 }
450 }
451
452 /**
453 * Subclasses should override this method to cleanup resources. This is
454 * called by application.closeWindow().
455 */
456 public void onClose() {
457 // Default: do nothing
458 }
459
460 /**
461 * Called by TApplication.drawChildren() to render on screen.
462 */
463 @Override
464 public void draw() {
465 // Draw the box and background first.
466 CellAttributes border = getBorder();
467 CellAttributes background = getBackground();
468 int borderType = getBorderType();
469
fca67db0 470 getScreen().drawBox(0, 0, getWidth(), getHeight(), border,
48e27807
KL
471 background, borderType, true);
472
473 // Draw the title
fca67db0 474 int titleLeft = (getWidth() - title.length() - 2) / 2;
48e27807
KL
475 putCharXY(titleLeft, 0, ' ', border);
476 putStrXY(titleLeft + 1, 0, title);
477 putCharXY(titleLeft + title.length() + 1, 0, ' ', border);
478
fca67db0 479 if (getActive()) {
48e27807
KL
480
481 // Draw the close button
482 putCharXY(2, 0, '[', border);
483 putCharXY(4, 0, ']', border);
484 if (mouseOnClose() && mouse.getMouse1()) {
485 putCharXY(3, 0, GraphicsChars.CP437[0x0F],
486 !isModal()
928811d8
KL
487 ? getTheme().getColor("twindow.border.windowmove")
488 : getTheme().getColor("twindow.border.modal.windowmove"));
48e27807
KL
489 } else {
490 putCharXY(3, 0, GraphicsChars.CP437[0xFE],
491 !isModal()
928811d8
KL
492 ? getTheme().getColor("twindow.border.windowmove")
493 : getTheme().getColor("twindow.border.modal.windowmove"));
48e27807
KL
494 }
495
496 // Draw the maximize button
497 if (!isModal()) {
498
fca67db0
KL
499 putCharXY(getWidth() - 5, 0, '[', border);
500 putCharXY(getWidth() - 3, 0, ']', border);
48e27807 501 if (mouseOnMaximize() && mouse.getMouse1()) {
fca67db0 502 putCharXY(getWidth() - 4, 0, GraphicsChars.CP437[0x0F],
928811d8 503 getTheme().getColor("twindow.border.windowmove"));
48e27807
KL
504 } else {
505 if (maximized) {
fca67db0 506 putCharXY(getWidth() - 4, 0, GraphicsChars.CP437[0x12],
928811d8 507 getTheme().getColor("twindow.border.windowmove"));
48e27807 508 } else {
fca67db0 509 putCharXY(getWidth() - 4, 0, GraphicsChars.UPARROW,
928811d8 510 getTheme().getColor("twindow.border.windowmove"));
48e27807
KL
511 }
512 }
513
514 // Draw the resize corner
515 if ((flags & RESIZABLE) != 0) {
928811d8
KL
516 putCharXY(getWidth() - 2, getHeight() - 1,
517 GraphicsChars.SINGLE_BAR,
518 getTheme().getColor("twindow.border.windowmove"));
519 putCharXY(getWidth() - 1, getHeight() - 1,
520 GraphicsChars.LRCORNER,
521 getTheme().getColor("twindow.border.windowmove"));
48e27807
KL
522 }
523 }
524 }
525 }
526
527 /**
528 * Handle mouse button presses.
529 *
530 * @param mouse mouse button event
531 */
532 @Override
533 public void onMouseDown(final TMouseEvent mouse) {
534 this.mouse = mouse;
48e27807
KL
535
536 inKeyboardResize = false;
537
fca67db0 538 if ((mouse.getAbsoluteY() == getY())
48e27807 539 && mouse.getMouse1()
fca67db0
KL
540 && (getX() <= mouse.getAbsoluteX())
541 && (mouse.getAbsoluteX() < getX() + getWidth())
48e27807
KL
542 && !mouseOnClose()
543 && !mouseOnMaximize()
544 ) {
545 // Begin moving window
546 inWindowMove = true;
547 moveWindowMouseX = mouse.getAbsoluteX();
548 moveWindowMouseY = mouse.getAbsoluteY();
fca67db0
KL
549 oldWindowX = getX();
550 oldWindowY = getY();
48e27807
KL
551 if (maximized) {
552 maximized = false;
553 }
554 return;
555 }
556 if (mouseOnResize()) {
557 // Begin window resize
558 inWindowResize = true;
559 moveWindowMouseX = mouse.getAbsoluteX();
560 moveWindowMouseY = mouse.getAbsoluteY();
fca67db0
KL
561 resizeWindowWidth = getWidth();
562 resizeWindowHeight = getHeight();
48e27807
KL
563 if (maximized) {
564 maximized = false;
565 }
566 return;
567 }
568
569 // I didn't take it, pass it on to my children
570 super.onMouseDown(mouse);
571 }
572
573 /**
574 * Maximize window.
575 */
576 private void maximize() {
fca67db0
KL
577 restoreWindowWidth = getWidth();
578 restoreWindowHeight = getHeight();
579 restoreWindowX = getX();
580 restoreWindowY = getY();
581 setWidth(getScreen().getWidth());
582 setHeight(application.getDesktopBottom() - 1);
583 setX(0);
584 setY(1);
48e27807
KL
585 maximized = true;
586 }
587
588 /**
589 * Restote (unmaximize) window.
590 */
591 private void restore() {
fca67db0
KL
592 setWidth(restoreWindowWidth);
593 setHeight(restoreWindowHeight);
594 setX(restoreWindowX);
595 setY(restoreWindowY);
48e27807
KL
596 maximized = false;
597 }
598
599 /**
600 * Handle mouse button releases.
601 *
602 * @param mouse mouse button release event
603 */
604 @Override
605 public void onMouseUp(final TMouseEvent mouse) {
606 this.mouse = mouse;
48e27807
KL
607
608 if ((inWindowMove) && (mouse.getMouse1())) {
609 // Stop moving window
610 inWindowMove = false;
611 return;
612 }
613
614 if ((inWindowResize) && (mouse.getMouse1())) {
615 // Stop resizing window
616 inWindowResize = false;
617 return;
618 }
619
620 if (mouse.getMouse1() && mouseOnClose()) {
621 // Close window
622 application.closeWindow(this);
623 return;
624 }
625
fca67db0
KL
626 if ((mouse.getAbsoluteY() == getY())
627 && mouse.getMouse1()
48e27807
KL
628 && mouseOnMaximize()) {
629 if (maximized) {
630 // Restore
631 restore();
632 } else {
633 // Maximize
634 maximize();
635 }
636 // Pass a resize event to my children
fca67db0
KL
637 onResize(new TResizeEvent(TResizeEvent.Type.WIDGET,
638 getWidth(), getHeight()));
48e27807
KL
639 return;
640 }
641
642 // I didn't take it, pass it on to my children
643 super.onMouseUp(mouse);
644 }
645
646 /**
647 * Handle mouse movements.
648 *
649 * @param mouse mouse motion event
650 */
651 @Override
652 public void onMouseMotion(final TMouseEvent mouse) {
653 this.mouse = mouse;
48e27807
KL
654
655 if (inWindowMove) {
656 // Move window over
fca67db0
KL
657 setX(oldWindowX + (mouse.getAbsoluteX() - moveWindowMouseX));
658 setY(oldWindowY + (mouse.getAbsoluteY() - moveWindowMouseY));
48e27807 659 // Don't cover up the menu bar
fca67db0
KL
660 if (getY() < application.getDesktopTop()) {
661 setY(application.getDesktopTop());
48e27807
KL
662 }
663 return;
664 }
665
666 if (inWindowResize) {
667 // Move window over
fca67db0
KL
668 setWidth(resizeWindowWidth + (mouse.getAbsoluteX()
669 - moveWindowMouseX));
670 setHeight(resizeWindowHeight + (mouse.getAbsoluteY()
671 - moveWindowMouseY));
672 if (getX() + getWidth() > getScreen().getWidth()) {
673 setWidth(getScreen().getWidth() - getX());
48e27807 674 }
fca67db0
KL
675 if (getY() + getHeight() > application.getDesktopBottom()) {
676 setY(application.getDesktopBottom() - getHeight() + 1);
48e27807
KL
677 }
678 // Don't cover up the menu bar
fca67db0
KL
679 if (getY() < application.getDesktopTop()) {
680 setY(application.getDesktopTop());
48e27807
KL
681 }
682
683 // Keep within min/max bounds
fca67db0
KL
684 if (getWidth() < minimumWindowWidth) {
685 setWidth(minimumWindowWidth);
48e27807
KL
686 inWindowResize = false;
687 }
fca67db0
KL
688 if (getHeight() < minimumWindowHeight) {
689 setHeight(minimumWindowHeight);
48e27807
KL
690 inWindowResize = false;
691 }
fca67db0
KL
692 if ((maximumWindowWidth > 0)
693 && (getWidth() > maximumWindowWidth)
694 ) {
695 setWidth(maximumWindowWidth);
48e27807
KL
696 inWindowResize = false;
697 }
fca67db0
KL
698 if ((maximumWindowHeight > 0)
699 && (getHeight() > maximumWindowHeight)
700 ) {
701 setHeight(maximumWindowHeight);
48e27807
KL
702 inWindowResize = false;
703 }
704
705 // Pass a resize event to my children
fca67db0
KL
706 onResize(new TResizeEvent(TResizeEvent.Type.WIDGET,
707 getWidth(), getHeight()));
48e27807
KL
708 return;
709 }
710
711 // I didn't take it, pass it on to my children
712 super.onMouseMotion(mouse);
713 }
714
715 /**
716 * Handle keystrokes.
717 *
718 * @param keypress keystroke event
719 */
720 @Override
721 public void onKeypress(final TKeypressEvent keypress) {
722
723 if (inKeyboardResize) {
724
725 // ESC - Exit size/move
726 if (keypress.equals(kbEsc)) {
727 inKeyboardResize = false;
728 }
729
730 if (keypress.equals(kbLeft)) {
fca67db0
KL
731 if (getX() > 0) {
732 setX(getX() - 1);
48e27807
KL
733 }
734 }
735 if (keypress.equals(kbRight)) {
fca67db0
KL
736 if (getX() < getScreen().getWidth() - 1) {
737 setX(getX() + 1);
48e27807
KL
738 }
739 }
740 if (keypress.equals(kbDown)) {
fca67db0
KL
741 if (getY() < application.getDesktopBottom() - 1) {
742 setY(getY() + 1);
48e27807
KL
743 }
744 }
745 if (keypress.equals(kbUp)) {
fca67db0
KL
746 if (getY() > 1) {
747 setY(getY() - 1);
48e27807
KL
748 }
749 }
750 if (keypress.equals(kbShiftLeft)) {
a83fea2b
KL
751 if ((getWidth() > minimumWindowWidth)
752 || (minimumWindowWidth <= 0)
753 ) {
fca67db0 754 setWidth(getWidth() - 1);
48e27807
KL
755 }
756 }
757 if (keypress.equals(kbShiftRight)) {
a83fea2b
KL
758 if ((getWidth() < maximumWindowWidth)
759 || (maximumWindowWidth <= 0)
760 ) {
fca67db0 761 setWidth(getWidth() + 1);
48e27807
KL
762 }
763 }
764 if (keypress.equals(kbShiftUp)) {
a83fea2b
KL
765 if ((getHeight() > minimumWindowHeight)
766 || (minimumWindowHeight <= 0)
767 ) {
fca67db0 768 setHeight(getHeight() - 1);
48e27807
KL
769 }
770 }
771 if (keypress.equals(kbShiftDown)) {
a83fea2b
KL
772 if ((getHeight() < maximumWindowHeight)
773 || (maximumWindowHeight <= 0)
774 ) {
fca67db0 775 setHeight(getHeight() + 1);
48e27807
KL
776 }
777 }
778
779 return;
780 }
781
782 // These keystrokes will typically not be seen unless a subclass
783 // overrides onMenu() due to how TApplication dispatches
784 // accelerators.
785
786 // Ctrl-W - close window
787 if (keypress.equals(kbCtrlW)) {
788 application.closeWindow(this);
789 return;
790 }
791
792 // F6 - behave like Alt-TAB
793 if (keypress.equals(kbF6)) {
794 application.switchWindow(true);
795 return;
796 }
797
798 // Shift-F6 - behave like Shift-Alt-TAB
799 if (keypress.equals(kbShiftF6)) {
800 application.switchWindow(false);
801 return;
802 }
803
804 // F5 - zoom
805 if (keypress.equals(kbF5)) {
806 if (maximized) {
807 restore();
808 } else {
809 maximize();
810 }
811 }
812
813 // Ctrl-F5 - size/move
814 if (keypress.equals(kbCtrlF5)) {
815 inKeyboardResize = !inKeyboardResize;
816 }
817
818 // I didn't take it, pass it on to my children
819 super.onKeypress(keypress);
820 }
821
822 /**
823 * Handle posted command events.
824 *
825 * @param command command event
826 */
827 @Override
828 public void onCommand(final TCommandEvent command) {
829
830 // These commands will typically not be seen unless a subclass
831 // overrides onMenu() due to how TApplication dispatches
832 // accelerators.
833
834 if (command.equals(cmWindowClose)) {
835 application.closeWindow(this);
836 return;
837 }
838
839 if (command.equals(cmWindowNext)) {
840 application.switchWindow(true);
841 return;
842 }
843
844 if (command.equals(cmWindowPrevious)) {
845 application.switchWindow(false);
846 return;
847 }
848
849 if (command.equals(cmWindowMove)) {
850 inKeyboardResize = true;
851 return;
852 }
853
854 if (command.equals(cmWindowZoom)) {
855 if (maximized) {
856 restore();
857 } else {
858 maximize();
859 }
860 }
861
862 // I didn't take it, pass it on to my children
863 super.onCommand(command);
864 }
865
866 /**
867 * Handle posted menu events.
868 *
869 * @param menu menu event
870 */
871 @Override
872 public void onMenu(final TMenuEvent menu) {
873 if (menu.getId() == TMenu.MID_WINDOW_CLOSE) {
874 application.closeWindow(this);
875 return;
876 }
877
878 if (menu.getId() == TMenu.MID_WINDOW_NEXT) {
879 application.switchWindow(true);
880 return;
881 }
882
883 if (menu.getId() == TMenu.MID_WINDOW_PREVIOUS) {
884 application.switchWindow(false);
885 return;
886 }
887
888 if (menu.getId() == TMenu.MID_WINDOW_MOVE) {
889 inKeyboardResize = true;
890 return;
891 }
892
893 if (menu.getId() == TMenu.MID_WINDOW_ZOOM) {
894 if (maximized) {
895 restore();
896 } else {
897 maximize();
898 }
899 return;
900 }
901
902 // I didn't take it, pass it on to my children
903 super.onMenu(menu);
904 }
905
906 // ------------------------------------------------------------------------
907 // Passthru for Screen functions ------------------------------------------
908 // ------------------------------------------------------------------------
909
910 /**
911 * Get the attributes at one location.
912 *
913 * @param x column coordinate. 0 is the left-most column.
914 * @param y row coordinate. 0 is the top-most row.
915 * @return attributes at (x, y)
916 */
917 public final CellAttributes getAttrXY(final int x, final int y) {
918 return getScreen().getAttrXY(x, y);
919 }
920
921 /**
922 * Set the attributes at one location.
923 *
924 * @param x column coordinate. 0 is the left-most column.
925 * @param y row coordinate. 0 is the top-most row.
926 * @param attr attributes to use (bold, foreColor, backColor)
927 */
928 public final void putAttrXY(final int x, final int y,
929 final CellAttributes attr) {
930
931 getScreen().putAttrXY(x, y, attr);
932 }
933
934 /**
935 * Set the attributes at one location.
936 *
937 * @param x column coordinate. 0 is the left-most column.
938 * @param y row coordinate. 0 is the top-most row.
939 * @param attr attributes to use (bold, foreColor, backColor)
940 * @param clip if true, honor clipping/offset
941 */
942 public final void putAttrXY(final int x, final int y,
943 final CellAttributes attr, final boolean clip) {
944
945 getScreen().putAttrXY(x, y, attr, clip);
946 }
947
948 /**
949 * Fill the entire screen with one character with attributes.
950 *
951 * @param ch character to draw
952 * @param attr attributes to use (bold, foreColor, backColor)
953 */
954 public final void putAll(final char ch, final CellAttributes attr) {
955 getScreen().putAll(ch, attr);
956 }
957
958 /**
959 * Render one character with attributes.
960 *
961 * @param x column coordinate. 0 is the left-most column.
962 * @param y row coordinate. 0 is the top-most row.
963 * @param ch character + attributes to draw
964 */
965 public final void putCharXY(final int x, final int y, final Cell ch) {
966 getScreen().putCharXY(x, y, ch);
967 }
968
969 /**
970 * Render one character with attributes.
971 *
972 * @param x column coordinate. 0 is the left-most column.
973 * @param y row coordinate. 0 is the top-most row.
974 * @param ch character to draw
975 * @param attr attributes to use (bold, foreColor, backColor)
976 */
977 public final void putCharXY(final int x, final int y, final char ch,
978 final CellAttributes attr) {
979
980 getScreen().putCharXY(x, y, ch, attr);
981 }
982
983 /**
984 * Render one character without changing the underlying attributes.
985 *
986 * @param x column coordinate. 0 is the left-most column.
987 * @param y row coordinate. 0 is the top-most row.
988 * @param ch character to draw
989 */
990 public final void putCharXY(final int x, final int y, final char ch) {
991 getScreen().putCharXY(x, y, ch);
992 }
993
994 /**
995 * Render a string. Does not wrap if the string exceeds the line.
996 *
997 * @param x column coordinate. 0 is the left-most column.
998 * @param y row coordinate. 0 is the top-most row.
999 * @param str string to draw
1000 * @param attr attributes to use (bold, foreColor, backColor)
1001 */
1002 public final void putStrXY(final int x, final int y, final String str,
1003 final CellAttributes attr) {
1004
1005 getScreen().putStrXY(x, y, str, attr);
1006 }
1007
1008 /**
1009 * Render a string without changing the underlying attribute. Does not
1010 * wrap if the string exceeds the line.
1011 *
1012 * @param x column coordinate. 0 is the left-most column.
1013 * @param y row coordinate. 0 is the top-most row.
1014 * @param str string to draw
1015 */
1016 public final void putStrXY(final int x, final int y, final String str) {
1017 getScreen().putStrXY(x, y, str);
1018 }
1019
1020 /**
1021 * Draw a vertical line from (x, y) to (x, y + n).
1022 *
1023 * @param x column coordinate. 0 is the left-most column.
1024 * @param y row coordinate. 0 is the top-most row.
1025 * @param n number of characters to draw
1026 * @param ch character to draw
1027 * @param attr attributes to use (bold, foreColor, backColor)
1028 */
1029 public final void vLineXY(final int x, final int y, final int n,
1030 final char ch, final CellAttributes attr) {
1031
1032 getScreen().vLineXY(x, y, n, ch, attr);
1033 }
1034
1035 /**
1036 * Draw a horizontal line from (x, y) to (x + n, y).
1037 *
1038 * @param x column coordinate. 0 is the left-most column.
1039 * @param y row coordinate. 0 is the top-most row.
1040 * @param n number of characters to draw
1041 * @param ch character to draw
1042 * @param attr attributes to use (bold, foreColor, backColor)
1043 */
1044 public final void hLineXY(final int x, final int y, final int n,
1045 final char ch, final CellAttributes attr) {
1046
1047 getScreen().hLineXY(x, y, n, ch, attr);
1048 }
1049
1050
1051}