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
.InputStream
;
33 import java
.io
.IOException
;
34 import java
.io
.OutputStream
;
35 import java
.io
.PrintWriter
;
36 import java
.io
.Reader
;
37 import java
.io
.UnsupportedEncodingException
;
38 import java
.text
.MessageFormat
;
39 import java
.util
.ArrayList
;
40 import java
.util
.Collections
;
41 import java
.util
.Date
;
42 import java
.util
.HashMap
;
43 import java
.util
.LinkedList
;
44 import java
.util
.List
;
46 import java
.util
.ResourceBundle
;
48 import jexer
.bits
.Cell
;
49 import jexer
.bits
.CellAttributes
;
50 import jexer
.bits
.ColorTheme
;
51 import jexer
.event
.TCommandEvent
;
52 import jexer
.event
.TInputEvent
;
53 import jexer
.event
.TKeypressEvent
;
54 import jexer
.event
.TMenuEvent
;
55 import jexer
.event
.TMouseEvent
;
56 import jexer
.event
.TResizeEvent
;
57 import jexer
.backend
.Backend
;
58 import jexer
.backend
.MultiBackend
;
59 import jexer
.backend
.Screen
;
60 import jexer
.backend
.SwingBackend
;
61 import jexer
.backend
.ECMA48Backend
;
62 import jexer
.backend
.TWindowBackend
;
63 import jexer
.menu
.TMenu
;
64 import jexer
.menu
.TMenuItem
;
65 import static jexer
.TCommand
.*;
66 import static jexer
.TKeypress
.*;
69 * TApplication is the main driver class for a full Text User Interface
70 * application. It manages windows, provides a menu bar and status bar, and
71 * processes events received from the user.
73 public class TApplication
implements Runnable
{
78 private static final ResourceBundle i18n
= ResourceBundle
.getBundle(TApplication
.class.getName());
80 // ------------------------------------------------------------------------
81 // Constants --------------------------------------------------------------
82 // ------------------------------------------------------------------------
85 * If true, emit thread stuff to System.err.
87 private static final boolean debugThreads
= false;
90 * If true, emit events being processed to System.err.
92 private static final boolean debugEvents
= false;
95 * If true, do "smart placement" on new windows that are not specified to
98 private static final boolean smartWindowPlacement
= true;
101 * Two backend types are available.
103 public static enum BackendType
{
110 * An ECMA48 / ANSI X3.64 / XTERM style terminal.
115 * Synonym for ECMA48.
120 // ------------------------------------------------------------------------
121 // Variables --------------------------------------------------------------
122 // ------------------------------------------------------------------------
125 * The primary event handler thread.
127 private volatile WidgetEventHandler primaryEventHandler
;
130 * The secondary event handler thread.
132 private volatile WidgetEventHandler secondaryEventHandler
;
135 * The widget receiving events from the secondary event handler thread.
137 private volatile TWidget secondaryEventReceiver
;
140 * Access to the physical screen, keyboard, and mouse.
142 private Backend backend
;
145 * Actual mouse coordinate X.
150 * Actual mouse coordinate Y.
155 * Old version of mouse coordinate X.
157 private int oldMouseX
;
160 * Old version mouse coordinate Y.
162 private int oldMouseY
;
165 * Old drawn version of mouse coordinate X.
167 private int oldDrawnMouseX
;
170 * Old drawn version mouse coordinate Y.
172 private int oldDrawnMouseY
;
175 * Old drawn version mouse cell.
177 private Cell oldDrawnMouseCell
= new Cell();
180 * The last mouse up click time, used to determine if this is a mouse
183 private long lastMouseUpTime
;
186 * The amount of millis between mouse up events to assume a double-click.
188 private long doubleClickTime
= 250;
191 * Event queue that is filled by run().
193 private List
<TInputEvent
> fillEventQueue
;
196 * Event queue that will be drained by either primary or secondary
199 private List
<TInputEvent
> drainEventQueue
;
202 * Top-level menus in this application.
204 private List
<TMenu
> menus
;
207 * Stack of activated sub-menus in this application.
209 private List
<TMenu
> subMenus
;
212 * The currently active menu.
214 private TMenu activeMenu
= null;
217 * Active keyboard accelerators.
219 private Map
<TKeypress
, TMenuItem
> accelerators
;
224 private List
<TMenuItem
> menuItems
;
227 * Windows and widgets pull colors from this ColorTheme.
229 private ColorTheme theme
;
232 * The top-level windows (but not menus).
234 private List
<TWindow
> windows
;
237 * The currently acive window.
239 private TWindow activeWindow
= null;
242 * Timers that are being ticked.
244 private List
<TTimer
> timers
;
247 * When true, the application has been started.
249 private volatile boolean started
= false;
252 * When true, exit the application.
254 private volatile boolean quit
= false;
257 * When true, repaint the entire screen.
259 private volatile boolean repaint
= true;
262 * Y coordinate of the top edge of the desktop. For now this is a
263 * constant. Someday it would be nice to have a multi-line menu or
266 private static final int desktopTop
= 1;
269 * Y coordinate of the bottom edge of the desktop.
271 private int desktopBottom
;
274 * An optional TDesktop background window that is drawn underneath
277 private TDesktop desktop
;
280 * If true, focus follows mouse: windows automatically raised if the
281 * mouse passes over them.
283 private boolean focusFollowsMouse
= false;
286 * The images that might be displayed. Note package private access.
288 private List
<TImage
> images
;
291 * The list of commands to run before the next I/O check.
293 private List
<Runnable
> invokeLaters
= new LinkedList
<Runnable
>();
296 * WidgetEventHandler is the main event consumer loop. There are at most
297 * two such threads in existence: the primary for normal case and a
298 * secondary that is used for TMessageBox, TInputBox, and similar.
300 private class WidgetEventHandler
implements Runnable
{
302 * The main application.
304 private TApplication application
;
307 * Whether or not this WidgetEventHandler is the primary or secondary
310 private boolean primary
= true;
313 * Public constructor.
315 * @param application the main application
316 * @param primary if true, this is the primary event handler thread
318 public WidgetEventHandler(final TApplication application
,
319 final boolean primary
) {
321 this.application
= application
;
322 this.primary
= primary
;
329 // Wrap everything in a try, so that if we go belly up we can let
330 // the user have their terminal back.
333 } catch (Throwable t
) {
334 this.application
.restoreConsole();
336 this.application
.exit();
343 private void runImpl() {
344 boolean first
= true;
347 while (!application
.quit
) {
349 // Wait until application notifies me
350 while (!application
.quit
) {
352 synchronized (application
.drainEventQueue
) {
353 if (application
.drainEventQueue
.size() > 0) {
362 timeout
= application
.getSleepTime(1000);
366 // A timer needs to fire, break out.
371 System
.err
.printf("%d %s %s %s sleep %d millis\n",
372 System
.currentTimeMillis(), this,
373 primary ?
"primary" : "secondary",
374 Thread
.currentThread(), timeout
);
377 synchronized (this) {
382 System
.err
.printf("%d %s %s %s AWAKE\n",
383 System
.currentTimeMillis(), this,
384 primary ?
"primary" : "secondary",
385 Thread
.currentThread());
389 && (application
.secondaryEventReceiver
== null)
391 // Secondary thread, emergency exit. If we got
392 // here then something went wrong with the
393 // handoff between yield() and closeWindow().
394 synchronized (application
.primaryEventHandler
) {
395 application
.primaryEventHandler
.notify();
397 application
.secondaryEventHandler
= null;
398 throw new RuntimeException("secondary exited " +
402 } catch (InterruptedException e
) {
405 } // while (!application.quit)
407 // Pull all events off the queue
409 TInputEvent event
= null;
410 synchronized (application
.drainEventQueue
) {
411 if (application
.drainEventQueue
.size() == 0) {
414 event
= application
.drainEventQueue
.remove(0);
417 // We will have an event to process, so repaint the
418 // screen at the end.
419 application
.repaint
= true;
422 primaryHandleEvent(event
);
424 secondaryHandleEvent(event
);
427 && (application
.secondaryEventReceiver
== null)
429 // Secondary thread, time to exit.
431 // Eliminate my reference so that wakeEventHandler()
432 // resumes working on the primary.
433 application
.secondaryEventHandler
= null;
435 // DO NOT UNLOCK. Primary thread just came back from
436 // primaryHandleEvent() and will unlock in the else
437 // block below. Just wake it up.
438 synchronized (application
.primaryEventHandler
) {
439 application
.primaryEventHandler
.notify();
448 // Fire timers, update screen.
450 application
.finishEventProcessing();
453 } // while (true) (main runnable loop)
457 // ------------------------------------------------------------------------
458 // Constructors -----------------------------------------------------------
459 // ------------------------------------------------------------------------
462 * Public constructor.
464 * @param backendType BackendType.XTERM, BackendType.ECMA48 or
466 * @param windowWidth the number of text columns to start with
467 * @param windowHeight the number of text rows to start with
468 * @param fontSize the size in points
469 * @throws UnsupportedEncodingException if an exception is thrown when
470 * creating the InputStreamReader
472 public TApplication(final BackendType backendType
, final int windowWidth
,
473 final int windowHeight
, final int fontSize
)
474 throws UnsupportedEncodingException
{
476 switch (backendType
) {
478 backend
= new SwingBackend(this, windowWidth
, windowHeight
,
484 backend
= new ECMA48Backend(this, null, null, windowWidth
,
485 windowHeight
, fontSize
);
488 throw new IllegalArgumentException("Invalid backend type: "
495 * Public constructor.
497 * @param backendType BackendType.XTERM, BackendType.ECMA48 or
499 * @throws UnsupportedEncodingException if an exception is thrown when
500 * creating the InputStreamReader
502 public TApplication(final BackendType backendType
)
503 throws UnsupportedEncodingException
{
505 switch (backendType
) {
507 // The default SwingBackend is 80x25, 20 pt font. If you want to
508 // change that, you can pass the extra arguments to the
509 // SwingBackend constructor here. For example, if you wanted
510 // 90x30, 16 pt font:
512 // backend = new SwingBackend(this, 90, 30, 16);
513 backend
= new SwingBackend(this);
518 backend
= new ECMA48Backend(this, null, null);
521 throw new IllegalArgumentException("Invalid backend type: "
528 * Public constructor. The backend type will be BackendType.ECMA48.
530 * @param input an InputStream connected to the remote user, or null for
531 * System.in. If System.in is used, then on non-Windows systems it will
532 * be put in raw mode; shutdown() will (blindly!) put System.in in cooked
533 * mode. input is always converted to a Reader with UTF-8 encoding.
534 * @param output an OutputStream connected to the remote user, or null
535 * for System.out. output is always converted to a Writer with UTF-8
537 * @throws UnsupportedEncodingException if an exception is thrown when
538 * creating the InputStreamReader
540 public TApplication(final InputStream input
,
541 final OutputStream output
) throws UnsupportedEncodingException
{
543 backend
= new ECMA48Backend(this, input
, output
);
548 * Public constructor. The backend type will be BackendType.ECMA48.
550 * @param input the InputStream underlying 'reader'. Its available()
551 * method is used to determine if reader.read() will block or not.
552 * @param reader a Reader connected to the remote user.
553 * @param writer a PrintWriter connected to the remote user.
554 * @param setRawMode if true, set System.in into raw mode with stty.
555 * This should in general not be used. It is here solely for Demo3,
556 * which uses System.in.
557 * @throws IllegalArgumentException if input, reader, or writer are null.
559 public TApplication(final InputStream input
, final Reader reader
,
560 final PrintWriter writer
, final boolean setRawMode
) {
562 backend
= new ECMA48Backend(this, input
, reader
, writer
, setRawMode
);
567 * Public constructor. The backend type will be BackendType.ECMA48.
569 * @param input the InputStream underlying 'reader'. Its available()
570 * method is used to determine if reader.read() will block or not.
571 * @param reader a Reader connected to the remote user.
572 * @param writer a PrintWriter connected to the remote user.
573 * @throws IllegalArgumentException if input, reader, or writer are null.
575 public TApplication(final InputStream input
, final Reader reader
,
576 final PrintWriter writer
) {
578 this(input
, reader
, writer
, false);
582 * Public constructor. This hook enables use with new non-Jexer
585 * @param backend a Backend that is already ready to go.
587 public TApplication(final Backend backend
) {
588 this.backend
= backend
;
589 backend
.setListener(this);
594 * Finish construction once the backend is set.
596 private void TApplicationImpl() {
597 theme
= new ColorTheme();
598 desktopBottom
= getScreen().getHeight() - 1;
599 fillEventQueue
= new LinkedList
<TInputEvent
>();
600 drainEventQueue
= new LinkedList
<TInputEvent
>();
601 windows
= new LinkedList
<TWindow
>();
602 menus
= new ArrayList
<TMenu
>();
603 subMenus
= new ArrayList
<TMenu
>();
604 timers
= new LinkedList
<TTimer
>();
605 accelerators
= new HashMap
<TKeypress
, TMenuItem
>();
606 menuItems
= new LinkedList
<TMenuItem
>();
607 desktop
= new TDesktop(this);
608 images
= new LinkedList
<TImage
>();
610 // Special case: the Swing backend needs to have a timer to drive its
612 if ((backend
instanceof SwingBackend
)
613 || (backend
instanceof MultiBackend
)
615 // Default to 500 millis, unless a SwingBackend has its own
618 if (backend
instanceof SwingBackend
) {
619 millis
= ((SwingBackend
) backend
).getBlinkMillis();
622 addTimer(millis
, true,
625 TApplication
.this.doRepaint();
633 // ------------------------------------------------------------------------
634 // Runnable ---------------------------------------------------------------
635 // ------------------------------------------------------------------------
638 * Run this application until it exits.
641 // Start the main consumer thread
642 primaryEventHandler
= new WidgetEventHandler(this, true);
643 (new Thread(primaryEventHandler
)).start();
648 synchronized (this) {
649 boolean doWait
= false;
651 if (!backend
.hasEvents()) {
652 synchronized (fillEventQueue
) {
653 if (fillEventQueue
.size() == 0) {
660 // No I/O to dispatch, so wait until the backend
664 System
.err
.println(System
.currentTimeMillis() +
665 " " + Thread
.currentThread() + " MAIN sleep");
671 System
.err
.println(System
.currentTimeMillis() +
672 " " + Thread
.currentThread() + " MAIN AWAKE");
674 } catch (InterruptedException e
) {
675 // I'm awake and don't care why, let's see what's
676 // going on out there.
680 } // synchronized (this)
682 synchronized (fillEventQueue
) {
683 // Pull any pending I/O events
684 backend
.getEvents(fillEventQueue
);
686 // Dispatch each event to the appropriate handler, one at a
689 TInputEvent event
= null;
690 if (fillEventQueue
.size() == 0) {
693 event
= fillEventQueue
.remove(0);
694 metaHandleEvent(event
);
698 // Wake a consumer thread if we have any pending events.
699 if (drainEventQueue
.size() > 0) {
705 // Shutdown the event consumer threads
706 if (secondaryEventHandler
!= null) {
707 synchronized (secondaryEventHandler
) {
708 secondaryEventHandler
.notify();
711 if (primaryEventHandler
!= null) {
712 synchronized (primaryEventHandler
) {
713 primaryEventHandler
.notify();
717 // Shutdown the user I/O thread(s)
720 // Close all the windows. This gives them an opportunity to release
726 // ------------------------------------------------------------------------
727 // Event handlers ---------------------------------------------------------
728 // ------------------------------------------------------------------------
731 * Method that TApplication subclasses can override to handle menu or
732 * posted command events.
734 * @param command command event
735 * @return if true, this event was consumed
737 protected boolean onCommand(final TCommandEvent command
) {
738 // Default: handle cmExit
739 if (command
.equals(cmExit
)) {
740 if (messageBox(i18n
.getString("exitDialogTitle"),
741 i18n
.getString("exitDialogText"),
742 TMessageBox
.Type
.YESNO
).isYes()) {
749 if (command
.equals(cmShell
)) {
750 openTerminal(0, 0, TWindow
.RESIZABLE
);
754 if (command
.equals(cmTile
)) {
758 if (command
.equals(cmCascade
)) {
762 if (command
.equals(cmCloseAll
)) {
767 if (command
.equals(cmMenu
)) {
768 if (!modalWindowActive() && (activeMenu
== null)) {
769 if (menus
.size() > 0) {
770 menus
.get(0).setActive(true);
771 activeMenu
= menus
.get(0);
781 * Method that TApplication subclasses can override to handle menu
784 * @param menu menu event
785 * @return if true, this event was consumed
787 protected boolean onMenu(final TMenuEvent menu
) {
789 // Default: handle MID_EXIT
790 if (menu
.getId() == TMenu
.MID_EXIT
) {
791 if (messageBox(i18n
.getString("exitDialogTitle"),
792 i18n
.getString("exitDialogText"),
793 TMessageBox
.Type
.YESNO
).isYes()) {
800 if (menu
.getId() == TMenu
.MID_SHELL
) {
801 openTerminal(0, 0, TWindow
.RESIZABLE
);
805 if (menu
.getId() == TMenu
.MID_TILE
) {
809 if (menu
.getId() == TMenu
.MID_CASCADE
) {
813 if (menu
.getId() == TMenu
.MID_CLOSE_ALL
) {
817 if (menu
.getId() == TMenu
.MID_ABOUT
) {
821 if (menu
.getId() == TMenu
.MID_REPAINT
) {
822 getScreen().clearPhysical();
826 if (menu
.getId() == TMenu
.MID_VIEW_IMAGE
) {
830 if (menu
.getId() == TMenu
.MID_CHANGE_FONT
) {
831 new TFontChooserWindow(this);
838 * Method that TApplication subclasses can override to handle keystrokes.
840 * @param keypress keystroke event
841 * @return if true, this event was consumed
843 protected boolean onKeypress(final TKeypressEvent keypress
) {
844 // Default: only menu shortcuts
846 // Process Alt-F, Alt-E, etc. menu shortcut keys
847 if (!keypress
.getKey().isFnKey()
848 && keypress
.getKey().isAlt()
849 && !keypress
.getKey().isCtrl()
850 && (activeMenu
== null)
851 && !modalWindowActive()
854 assert (subMenus
.size() == 0);
856 for (TMenu menu
: menus
) {
857 if (Character
.toLowerCase(menu
.getMnemonic().getShortcut())
858 == Character
.toLowerCase(keypress
.getKey().getChar())
861 menu
.setActive(true);
871 * Process background events, and update the screen.
873 private void finishEventProcessing() {
875 System
.err
.printf(System
.currentTimeMillis() + " " +
876 Thread
.currentThread() + " finishEventProcessing()\n");
879 // Process timers and call doIdle()'s
883 synchronized (getScreen()) {
888 System
.err
.printf(System
.currentTimeMillis() + " " +
889 Thread
.currentThread() + " finishEventProcessing() END\n");
894 * Peek at certain application-level events, add to eventQueue, and wake
895 * up the consuming Thread.
897 * @param event the input event to consume
899 private void metaHandleEvent(final TInputEvent event
) {
902 System
.err
.printf(String
.format("metaHandleEvents event: %s\n",
903 event
)); System
.err
.flush();
907 // Do no more processing if the application is already trying
912 // Special application-wide events -------------------------------
915 if (event
instanceof TCommandEvent
) {
916 TCommandEvent command
= (TCommandEvent
) event
;
917 if (command
.getCmd().equals(cmAbort
)) {
923 synchronized (drainEventQueue
) {
925 if (event
instanceof TResizeEvent
) {
926 TResizeEvent resize
= (TResizeEvent
) event
;
927 synchronized (getScreen()) {
928 getScreen().setDimensions(resize
.getWidth(),
930 desktopBottom
= getScreen().getHeight() - 1;
936 if (desktop
!= null) {
937 desktop
.setDimensions(0, 0, resize
.getWidth(),
938 resize
.getHeight() - 1);
941 // Change menu edges if needed.
944 // We are dirty, redraw the screen.
948 System.err.println("New screen: " + resize.getWidth() +
949 " x " + resize.getHeight());
954 // Put into the main queue
955 drainEventQueue
.add(event
);
960 * Dispatch one event to the appropriate widget or application-level
961 * event handler. This is the primary event handler, it has the normal
962 * application-wide event handling.
964 * @param event the input event to consume
965 * @see #secondaryHandleEvent(TInputEvent event)
967 private void primaryHandleEvent(final TInputEvent event
) {
970 System
.err
.printf("%s primaryHandleEvent: %s\n",
971 Thread
.currentThread(), event
);
973 TMouseEvent doubleClick
= null;
975 // Special application-wide events -----------------------------------
977 // Peek at the mouse position
978 if (event
instanceof TMouseEvent
) {
979 TMouseEvent mouse
= (TMouseEvent
) event
;
980 if ((mouseX
!= mouse
.getX()) || (mouseY
!= mouse
.getY())) {
983 mouseX
= mouse
.getX();
984 mouseY
= mouse
.getY();
986 if ((mouse
.getType() == TMouseEvent
.Type
.MOUSE_DOWN
)
987 && (!mouse
.isMouseWheelUp())
988 && (!mouse
.isMouseWheelDown())
990 if ((mouse
.getTime().getTime() - lastMouseUpTime
) <
993 // This is a double-click.
994 doubleClick
= new TMouseEvent(TMouseEvent
.Type
.
996 mouse
.getX(), mouse
.getY(),
997 mouse
.getAbsoluteX(), mouse
.getAbsoluteY(),
998 mouse
.isMouse1(), mouse
.isMouse2(),
1000 mouse
.isMouseWheelUp(), mouse
.isMouseWheelDown());
1003 // The first click of a potential double-click.
1004 lastMouseUpTime
= mouse
.getTime().getTime();
1009 // See if we need to switch focus to another window or the menu
1010 checkSwitchFocus((TMouseEvent
) event
);
1013 // Handle menu events
1014 if ((activeMenu
!= null) && !(event
instanceof TCommandEvent
)) {
1015 TMenu menu
= activeMenu
;
1017 if (event
instanceof TMouseEvent
) {
1018 TMouseEvent mouse
= (TMouseEvent
) event
;
1020 while (subMenus
.size() > 0) {
1021 TMenu subMenu
= subMenus
.get(subMenus
.size() - 1);
1022 if (subMenu
.mouseWouldHit(mouse
)) {
1025 if ((mouse
.getType() == TMouseEvent
.Type
.MOUSE_MOTION
)
1026 && (!mouse
.isMouse1())
1027 && (!mouse
.isMouse2())
1028 && (!mouse
.isMouse3())
1029 && (!mouse
.isMouseWheelUp())
1030 && (!mouse
.isMouseWheelDown())
1034 // We navigated away from a sub-menu, so close it
1038 // Convert the mouse relative x/y to menu coordinates
1039 assert (mouse
.getX() == mouse
.getAbsoluteX());
1040 assert (mouse
.getY() == mouse
.getAbsoluteY());
1041 if (subMenus
.size() > 0) {
1042 menu
= subMenus
.get(subMenus
.size() - 1);
1044 mouse
.setX(mouse
.getX() - menu
.getX());
1045 mouse
.setY(mouse
.getY() - menu
.getY());
1047 menu
.handleEvent(event
);
1051 if (event
instanceof TKeypressEvent
) {
1052 TKeypressEvent keypress
= (TKeypressEvent
) event
;
1054 // See if this key matches an accelerator, and is not being
1055 // shortcutted by the active window, and if so dispatch the menu
1057 boolean windowWillShortcut
= false;
1058 if (activeWindow
!= null) {
1059 assert (activeWindow
.isShown());
1060 if (activeWindow
.isShortcutKeypress(keypress
.getKey())) {
1061 // We do not process this key, it will be passed to the
1063 windowWillShortcut
= true;
1067 if (!windowWillShortcut
&& !modalWindowActive()) {
1068 TKeypress keypressLowercase
= keypress
.getKey().toLowerCase();
1069 TMenuItem item
= null;
1070 synchronized (accelerators
) {
1071 item
= accelerators
.get(keypressLowercase
);
1074 if (item
.isEnabled()) {
1075 // Let the menu item dispatch
1081 // Handle the keypress
1082 if (onKeypress(keypress
)) {
1088 if (event
instanceof TCommandEvent
) {
1089 if (onCommand((TCommandEvent
) event
)) {
1094 if (event
instanceof TMenuEvent
) {
1095 if (onMenu((TMenuEvent
) event
)) {
1100 // Dispatch events to the active window -------------------------------
1101 boolean dispatchToDesktop
= true;
1102 TWindow window
= activeWindow
;
1103 if (window
!= null) {
1104 assert (window
.isActive());
1105 assert (window
.isShown());
1106 if (event
instanceof TMouseEvent
) {
1107 TMouseEvent mouse
= (TMouseEvent
) event
;
1108 // Convert the mouse relative x/y to window coordinates
1109 assert (mouse
.getX() == mouse
.getAbsoluteX());
1110 assert (mouse
.getY() == mouse
.getAbsoluteY());
1111 mouse
.setX(mouse
.getX() - window
.getX());
1112 mouse
.setY(mouse
.getY() - window
.getY());
1114 if (doubleClick
!= null) {
1115 doubleClick
.setX(doubleClick
.getX() - window
.getX());
1116 doubleClick
.setY(doubleClick
.getY() - window
.getY());
1119 if (window
.mouseWouldHit(mouse
)) {
1120 dispatchToDesktop
= false;
1122 } else if (event
instanceof TKeypressEvent
) {
1123 dispatchToDesktop
= false;
1127 System
.err
.printf("TApplication dispatch event: %s\n",
1130 window
.handleEvent(event
);
1131 if (doubleClick
!= null) {
1132 window
.handleEvent(doubleClick
);
1135 if (dispatchToDesktop
) {
1136 // This event is fair game for the desktop to process.
1137 if (desktop
!= null) {
1138 desktop
.handleEvent(event
);
1139 if (doubleClick
!= null) {
1140 desktop
.handleEvent(doubleClick
);
1147 * Dispatch one event to the appropriate widget or application-level
1148 * event handler. This is the secondary event handler used by certain
1149 * special dialogs (currently TMessageBox and TFileOpenBox).
1151 * @param event the input event to consume
1152 * @see #primaryHandleEvent(TInputEvent event)
1154 private void secondaryHandleEvent(final TInputEvent event
) {
1155 TMouseEvent doubleClick
= null;
1158 System
.err
.printf("%s secondaryHandleEvent: %s\n",
1159 Thread
.currentThread(), event
);
1162 // Peek at the mouse position
1163 if (event
instanceof TMouseEvent
) {
1164 TMouseEvent mouse
= (TMouseEvent
) event
;
1165 if ((mouseX
!= mouse
.getX()) || (mouseY
!= mouse
.getY())) {
1168 mouseX
= mouse
.getX();
1169 mouseY
= mouse
.getY();
1171 if ((mouse
.getType() == TMouseEvent
.Type
.MOUSE_DOWN
)
1172 && (!mouse
.isMouseWheelUp())
1173 && (!mouse
.isMouseWheelDown())
1175 if ((mouse
.getTime().getTime() - lastMouseUpTime
) <
1178 // This is a double-click.
1179 doubleClick
= new TMouseEvent(TMouseEvent
.Type
.
1181 mouse
.getX(), mouse
.getY(),
1182 mouse
.getAbsoluteX(), mouse
.getAbsoluteY(),
1183 mouse
.isMouse1(), mouse
.isMouse2(),
1185 mouse
.isMouseWheelUp(), mouse
.isMouseWheelDown());
1188 // The first click of a potential double-click.
1189 lastMouseUpTime
= mouse
.getTime().getTime();
1195 secondaryEventReceiver
.handleEvent(event
);
1196 // Note that it is possible for secondaryEventReceiver to be null
1197 // now, because its handleEvent() might have finished out on the
1198 // secondary thread. So put any extra processing inside a null
1200 if (secondaryEventReceiver
!= null) {
1201 if (doubleClick
!= null) {
1202 secondaryEventReceiver
.handleEvent(doubleClick
);
1208 * Enable a widget to override the primary event thread.
1210 * @param widget widget that will receive events
1212 public final void enableSecondaryEventReceiver(final TWidget widget
) {
1214 System
.err
.println(System
.currentTimeMillis() +
1215 " enableSecondaryEventReceiver()");
1218 assert (secondaryEventReceiver
== null);
1219 assert (secondaryEventHandler
== null);
1220 assert ((widget
instanceof TMessageBox
)
1221 || (widget
instanceof TFileOpenBox
));
1222 secondaryEventReceiver
= widget
;
1223 secondaryEventHandler
= new WidgetEventHandler(this, false);
1225 (new Thread(secondaryEventHandler
)).start();
1229 * Yield to the secondary thread.
1231 public final void yield() {
1233 System
.err
.printf(System
.currentTimeMillis() + " " +
1234 Thread
.currentThread() + " yield()\n");
1237 assert (secondaryEventReceiver
!= null);
1239 while (secondaryEventReceiver
!= null) {
1240 synchronized (primaryEventHandler
) {
1242 primaryEventHandler
.wait();
1243 } catch (InterruptedException e
) {
1251 * Do stuff when there is no user input.
1253 private void doIdle() {
1255 System
.err
.printf(System
.currentTimeMillis() + " " +
1256 Thread
.currentThread() + " doIdle()\n");
1259 synchronized (timers
) {
1262 System
.err
.printf(System
.currentTimeMillis() + " " +
1263 Thread
.currentThread() + " doIdle() 2\n");
1266 // Run any timers that have timed out
1267 Date now
= new Date();
1268 List
<TTimer
> keepTimers
= new LinkedList
<TTimer
>();
1269 for (TTimer timer
: timers
) {
1270 if (timer
.getNextTick().getTime() <= now
.getTime()) {
1271 // Something might change, so repaint the screen.
1274 if (timer
.recurring
) {
1275 keepTimers
.add(timer
);
1278 keepTimers
.add(timer
);
1282 timers
.addAll(keepTimers
);
1286 for (TWindow window
: windows
) {
1289 if (desktop
!= null) {
1293 // Run any invokeLaters
1294 synchronized (invokeLaters
) {
1295 for (Runnable invoke
: invokeLaters
) {
1298 invokeLaters
.clear();
1304 * Wake the sleeping active event handler.
1306 private void wakeEventHandler() {
1311 if (secondaryEventHandler
!= null) {
1312 synchronized (secondaryEventHandler
) {
1313 secondaryEventHandler
.notify();
1316 assert (primaryEventHandler
!= null);
1317 synchronized (primaryEventHandler
) {
1318 primaryEventHandler
.notify();
1323 // ------------------------------------------------------------------------
1324 // TApplication -----------------------------------------------------------
1325 // ------------------------------------------------------------------------
1328 * Place a command on the run queue, and run it before the next round of
1331 * @param command the command to run later
1333 public void invokeLater(final Runnable command
) {
1334 synchronized (invokeLaters
) {
1335 invokeLaters
.add(command
);
1341 * Restore the console to sane defaults. This is meant to be used for
1342 * improper exits (e.g. a caught exception in main()), and should not be
1343 * necessary for normal program termination.
1345 public void restoreConsole() {
1346 if (backend
!= null) {
1347 if (backend
instanceof ECMA48Backend
) {
1356 * @return the Backend
1358 public final Backend
getBackend() {
1365 * @return the Screen
1367 public final Screen
getScreen() {
1368 if (backend
instanceof TWindowBackend
) {
1369 // We are being rendered to a TWindow. We can't use its
1370 // getScreen() method because that is how it is rendering to a
1371 // hardware backend somewhere. Instead use its getOtherScreen()
1373 return ((TWindowBackend
) backend
).getOtherScreen();
1375 return backend
.getScreen();
1380 * Get the color theme.
1384 public final ColorTheme
getTheme() {
1389 * Repaint the screen on the next update.
1391 public void doRepaint() {
1397 * Get Y coordinate of the top edge of the desktop.
1399 * @return Y coordinate of the top edge of the desktop
1401 public final int getDesktopTop() {
1406 * Get Y coordinate of the bottom edge of the desktop.
1408 * @return Y coordinate of the bottom edge of the desktop
1410 public final int getDesktopBottom() {
1411 return desktopBottom
;
1415 * Set the TDesktop instance.
1417 * @param desktop a TDesktop instance, or null to remove the one that is
1420 public final void setDesktop(final TDesktop desktop
) {
1421 if (this.desktop
!= null) {
1422 this.desktop
.onClose();
1424 this.desktop
= desktop
;
1428 * Get the TDesktop instance.
1430 * @return the desktop, or null if it is not set
1432 public final TDesktop
getDesktop() {
1437 * Get the current active window.
1439 * @return the active window, or null if it is not set
1441 public final TWindow
getActiveWindow() {
1442 return activeWindow
;
1446 * Get a (shallow) copy of the window list.
1448 * @return a copy of the list of windows for this application
1450 public final List
<TWindow
> getAllWindows() {
1451 List
<TWindow
> result
= new ArrayList
<TWindow
>();
1452 result
.addAll(windows
);
1457 * Get focusFollowsMouse flag.
1459 * @return true if focus follows mouse: windows automatically raised if
1460 * the mouse passes over them
1462 public boolean getFocusFollowsMouse() {
1463 return focusFollowsMouse
;
1467 * Set focusFollowsMouse flag.
1469 * @param focusFollowsMouse if true, focus follows mouse: windows
1470 * automatically raised if the mouse passes over them
1472 public void setFocusFollowsMouse(final boolean focusFollowsMouse
) {
1473 this.focusFollowsMouse
= focusFollowsMouse
;
1477 * Display the about dialog.
1479 protected void showAboutDialog() {
1480 String version
= getClass().getPackage().getImplementationVersion();
1481 if (version
== null) {
1482 // This is Java 9+, use a hardcoded string here.
1485 messageBox(i18n
.getString("aboutDialogTitle"),
1486 MessageFormat
.format(i18n
.getString("aboutDialogText"), version
),
1487 TMessageBox
.Type
.OK
);
1491 * Handle the Tool | Open image menu item.
1493 private void openImage() {
1495 List
<String
> filters
= new ArrayList
<String
>();
1496 filters
.add("^.*\\.[Jj][Pp][Gg]$");
1497 filters
.add("^.*\\.[Jj][Pp][Ee][Gg]$");
1498 filters
.add("^.*\\.[Pp][Nn][Gg]$");
1499 filters
.add("^.*\\.[Gg][Ii][Ff]$");
1500 filters
.add("^.*\\.[Bb][Mm][Pp]$");
1501 String filename
= fileOpenBox(".", TFileOpenBox
.Type
.OPEN
, filters
);
1502 if (filename
!= null) {
1503 new TImageWindow(this, new File(filename
));
1505 } catch (IOException e
) {
1506 // Show this exception to the user.
1507 new TExceptionDialog(this, e
);
1512 * Check if application is still running.
1514 * @return true if the application is running
1516 public final boolean isRunning() {
1523 // ------------------------------------------------------------------------
1524 // Screen refresh loop ----------------------------------------------------
1525 // ------------------------------------------------------------------------
1528 * Invert the cell color at a position. This is used to track the mouse.
1530 * @param x column position
1531 * @param y row position
1533 private void invertCell(final int x
, final int y
) {
1535 System
.err
.printf("%d %s invertCell() %d %d\n",
1536 System
.currentTimeMillis(), Thread
.currentThread(), x
, y
);
1538 if (activeWindow
!= null) {
1539 System
.err
.println("activeWindow.hasHiddenMouse() " +
1540 activeWindow
.hasHiddenMouse());
1544 // If this cell is on top of a visible window that has requested a
1545 // hidden mouse, bail out.
1546 if ((activeWindow
!= null) && (activeMenu
== null)) {
1547 if ((activeWindow
.hasHiddenMouse() == true)
1548 && (x
> activeWindow
.getX())
1549 && (x
< activeWindow
.getX() + activeWindow
.getWidth() - 1)
1550 && (y
> activeWindow
.getY())
1551 && (y
< activeWindow
.getY() + activeWindow
.getHeight() - 1)
1557 Cell cell
= getScreen().getCharXY(x
, y
);
1558 if (cell
.isImage()) {
1561 if (cell
.getForeColorRGB() < 0) {
1562 cell
.setForeColor(cell
.getForeColor().invert());
1564 cell
.setForeColorRGB(cell
.getForeColorRGB() ^
0x00ffffff);
1566 if (cell
.getBackColorRGB() < 0) {
1567 cell
.setBackColor(cell
.getBackColor().invert());
1569 cell
.setBackColorRGB(cell
.getBackColorRGB() ^
0x00ffffff);
1572 getScreen().putCharXY(x
, y
, cell
);
1578 private void drawAll() {
1579 boolean menuIsActive
= false;
1582 System
.err
.printf("%d %s drawAll() enter\n",
1583 System
.currentTimeMillis(), Thread
.currentThread());
1586 // I don't think this does anything useful anymore...
1589 System
.err
.printf("%d %s drawAll() !repaint\n",
1590 System
.currentTimeMillis(), Thread
.currentThread());
1592 if ((oldDrawnMouseX
!= mouseX
) || (oldDrawnMouseY
!= mouseY
)) {
1594 System
.err
.printf("%d %s drawAll() !repaint MOUSE\n",
1595 System
.currentTimeMillis(), Thread
.currentThread());
1598 // The only thing that has happened is the mouse moved.
1600 // Redraw the old cell at that position, and save the cell at
1601 // the new mouse position.
1603 System
.err
.printf("%d %s restoreImage() %d %d\n",
1604 System
.currentTimeMillis(), Thread
.currentThread(),
1605 oldDrawnMouseX
, oldDrawnMouseY
);
1607 oldDrawnMouseCell
.restoreImage();
1608 getScreen().putCharXY(oldDrawnMouseX
, oldDrawnMouseY
,
1610 oldDrawnMouseCell
= getScreen().getCharXY(mouseX
, mouseY
);
1611 if ((images
.size() > 0) && (backend
instanceof ECMA48Backend
)) {
1612 // Special case: the entire row containing the mouse has
1613 // to be re-drawn if it has any image data, AND any rows
1615 if (oldDrawnMouseY
!= mouseY
) {
1616 for (int i
= oldDrawnMouseY
; ;) {
1617 getScreen().unsetImageRow(i
);
1621 if (oldDrawnMouseY
< mouseY
) {
1628 getScreen().unsetImageRow(mouseY
);
1632 // Draw mouse at the new position.
1633 invertCell(mouseX
, mouseY
);
1635 oldDrawnMouseX
= mouseX
;
1636 oldDrawnMouseY
= mouseY
;
1638 if ((images
.size() > 0) || getScreen().isDirty()) {
1639 backend
.flushScreen();
1645 System
.err
.printf("%d %s drawAll() REDRAW\n",
1646 System
.currentTimeMillis(), Thread
.currentThread());
1649 // If true, the cursor is not visible
1650 boolean cursor
= false;
1652 // Start with a clean screen
1653 getScreen().clear();
1656 if (desktop
!= null) {
1657 desktop
.drawChildren();
1660 // Draw each window in reverse Z order
1661 List
<TWindow
> sorted
= new ArrayList
<TWindow
>(windows
);
1662 Collections
.sort(sorted
);
1663 TWindow topLevel
= null;
1664 if (sorted
.size() > 0) {
1665 topLevel
= sorted
.get(0);
1667 Collections
.reverse(sorted
);
1668 for (TWindow window
: sorted
) {
1669 if (window
.isShown()) {
1670 window
.drawChildren();
1674 // Draw the blank menubar line - reset the screen clipping first so
1675 // it won't trim it out.
1676 getScreen().resetClipping();
1677 getScreen().hLineXY(0, 0, getScreen().getWidth(), ' ',
1678 theme
.getColor("tmenu"));
1679 // Now draw the menus.
1681 for (TMenu menu
: menus
) {
1682 CellAttributes menuColor
;
1683 CellAttributes menuMnemonicColor
;
1684 if (menu
.isActive()) {
1685 menuIsActive
= true;
1686 menuColor
= theme
.getColor("tmenu.highlighted");
1687 menuMnemonicColor
= theme
.getColor("tmenu.mnemonic.highlighted");
1690 menuColor
= theme
.getColor("tmenu");
1691 menuMnemonicColor
= theme
.getColor("tmenu.mnemonic");
1693 // Draw the menu title
1694 getScreen().hLineXY(x
, 0, menu
.getTitle().length() + 2, ' ',
1696 getScreen().putStringXY(x
+ 1, 0, menu
.getTitle(), menuColor
);
1697 // Draw the highlight character
1698 getScreen().putCharXY(x
+ 1 + menu
.getMnemonic().getShortcutIdx(),
1699 0, menu
.getMnemonic().getShortcut(), menuMnemonicColor
);
1701 if (menu
.isActive()) {
1702 ((TWindow
) menu
).drawChildren();
1703 // Reset the screen clipping so we can draw the next title.
1704 getScreen().resetClipping();
1706 x
+= menu
.getTitle().length() + 2;
1709 for (TMenu menu
: subMenus
) {
1710 // Reset the screen clipping so we can draw the next sub-menu.
1711 getScreen().resetClipping();
1712 ((TWindow
) menu
).drawChildren();
1714 getScreen().resetClipping();
1716 // Draw the status bar of the top-level window
1717 TStatusBar statusBar
= null;
1718 if (topLevel
!= null) {
1719 statusBar
= topLevel
.getStatusBar();
1721 if (statusBar
!= null) {
1722 getScreen().resetClipping();
1723 statusBar
.setWidth(getScreen().getWidth());
1724 statusBar
.setY(getScreen().getHeight() - topLevel
.getY());
1727 CellAttributes barColor
= new CellAttributes();
1728 barColor
.setTo(getTheme().getColor("tstatusbar.text"));
1729 getScreen().hLineXY(0, desktopBottom
, getScreen().getWidth(), ' ',
1733 // Draw the mouse pointer
1735 System
.err
.printf("%d %s restoreImage() %d %d\n",
1736 System
.currentTimeMillis(), Thread
.currentThread(),
1737 oldDrawnMouseX
, oldDrawnMouseY
);
1739 oldDrawnMouseCell
= getScreen().getCharXY(mouseX
, mouseY
);
1740 if ((images
.size() > 0) && (backend
instanceof ECMA48Backend
)) {
1741 // Special case: the entire row containing the mouse has to be
1742 // re-drawn if it has any image data, AND any rows in between.
1743 if (oldDrawnMouseY
!= mouseY
) {
1744 for (int i
= oldDrawnMouseY
; ;) {
1745 getScreen().unsetImageRow(i
);
1749 if (oldDrawnMouseY
< mouseY
) {
1756 getScreen().unsetImageRow(mouseY
);
1759 invertCell(mouseX
, mouseY
);
1760 oldDrawnMouseX
= mouseX
;
1761 oldDrawnMouseY
= mouseY
;
1763 // Place the cursor if it is visible
1764 if (!menuIsActive
) {
1765 TWidget activeWidget
= null;
1766 if (sorted
.size() > 0) {
1767 activeWidget
= sorted
.get(sorted
.size() - 1).getActiveChild();
1768 if (activeWidget
.isCursorVisible()) {
1769 if ((activeWidget
.getCursorAbsoluteY() < desktopBottom
)
1770 && (activeWidget
.getCursorAbsoluteY() > desktopTop
)
1772 getScreen().putCursor(true,
1773 activeWidget
.getCursorAbsoluteX(),
1774 activeWidget
.getCursorAbsoluteY());
1777 // Turn off the cursor. Also place it at 0,0.
1778 getScreen().putCursor(false, 0, 0);
1787 getScreen().hideCursor();
1790 // Flush the screen contents
1791 if ((images
.size() > 0) || getScreen().isDirty()) {
1793 System
.err
.printf("%d %s backend.flushScreen()\n",
1794 System
.currentTimeMillis(), Thread
.currentThread());
1796 backend
.flushScreen();
1803 * Force this application to exit.
1805 public void exit() {
1807 synchronized (this) {
1812 // ------------------------------------------------------------------------
1813 // TWindow management -----------------------------------------------------
1814 // ------------------------------------------------------------------------
1817 * Return the total number of windows.
1819 * @return the total number of windows
1821 public final int windowCount() {
1822 return windows
.size();
1826 * Return the number of windows that are showing.
1828 * @return the number of windows that are showing on screen
1830 public final int shownWindowCount() {
1832 for (TWindow w
: windows
) {
1841 * Return the number of windows that are hidden.
1843 * @return the number of windows that are hidden
1845 public final int hiddenWindowCount() {
1847 for (TWindow w
: windows
) {
1856 * Check if a window instance is in this application's window list.
1858 * @param window window to look for
1859 * @return true if this window is in the list
1861 public final boolean hasWindow(final TWindow window
) {
1862 if (windows
.size() == 0) {
1865 for (TWindow w
: windows
) {
1867 assert (window
.getApplication() == this);
1875 * Activate a window: bring it to the top and have it receive events.
1877 * @param window the window to become the new active window
1879 public void activateWindow(final TWindow window
) {
1880 if (hasWindow(window
) == false) {
1882 * Someone has a handle to a window I don't have. Ignore this
1888 // Whatever window might be moving/dragging, stop it now.
1889 for (TWindow w
: windows
) {
1890 if (w
.inMovements()) {
1895 assert (windows
.size() > 0);
1897 if (window
.isHidden()) {
1898 // Unhiding will also activate.
1902 assert (window
.isShown());
1904 if (windows
.size() == 1) {
1905 assert (window
== windows
.get(0));
1906 if (activeWindow
== null) {
1907 activeWindow
= window
;
1909 activeWindow
.setActive(true);
1910 activeWindow
.onFocus();
1913 assert (window
.isActive());
1914 assert (activeWindow
== window
);
1918 if (activeWindow
== window
) {
1919 assert (window
.isActive());
1921 // Window is already active, do nothing.
1925 assert (!window
.isActive());
1926 if (activeWindow
!= null) {
1927 // TODO: see if this assertion is really necessary.
1928 // assert (activeWindow.getZ() == 0);
1930 activeWindow
.setActive(false);
1932 // Increment every window Z that is on top of window
1933 for (TWindow w
: windows
) {
1937 if (w
.getZ() < window
.getZ()) {
1938 w
.setZ(w
.getZ() + 1);
1942 // Unset activeWindow now before unfocus, so that a window
1943 // lifecycle change inside onUnfocus() doesn't call
1944 // switchWindow() and lead to a stack overflow.
1945 TWindow oldActiveWindow
= activeWindow
;
1946 activeWindow
= null;
1947 oldActiveWindow
.onUnfocus();
1949 activeWindow
= window
;
1950 activeWindow
.setZ(0);
1951 activeWindow
.setActive(true);
1952 activeWindow
.onFocus();
1959 * @param window the window to hide
1961 public void hideWindow(final TWindow window
) {
1962 if (hasWindow(window
) == false) {
1964 * Someone has a handle to a window I don't have. Ignore this
1970 // Whatever window might be moving/dragging, stop it now.
1971 for (TWindow w
: windows
) {
1972 if (w
.inMovements()) {
1977 assert (windows
.size() > 0);
1979 if (!window
.hidden
) {
1980 if (window
== activeWindow
) {
1981 if (shownWindowCount() > 1) {
1984 activeWindow
= null;
1985 window
.setActive(false);
1989 window
.hidden
= true;
1997 * @param window the window to show
1999 public void showWindow(final TWindow window
) {
2000 if (hasWindow(window
) == false) {
2002 * Someone has a handle to a window I don't have. Ignore this
2008 // Whatever window might be moving/dragging, stop it now.
2009 for (TWindow w
: windows
) {
2010 if (w
.inMovements()) {
2015 assert (windows
.size() > 0);
2017 if (window
.hidden
) {
2018 window
.hidden
= false;
2020 activateWindow(window
);
2025 * Close window. Note that the window's destructor is NOT called by this
2026 * method, instead the GC is assumed to do the cleanup.
2028 * @param window the window to remove
2030 public final void closeWindow(final TWindow window
) {
2031 if (hasWindow(window
) == false) {
2033 * Someone has a handle to a window I don't have. Ignore this
2039 // Let window know that it is about to be closed, while it is still
2040 // visible on screen.
2041 window
.onPreClose();
2043 synchronized (windows
) {
2044 // Whatever window might be moving/dragging, stop it now.
2045 for (TWindow w
: windows
) {
2046 if (w
.inMovements()) {
2051 int z
= window
.getZ();
2054 windows
.remove(window
);
2055 Collections
.sort(windows
);
2056 activeWindow
= null;
2058 boolean foundNextWindow
= false;
2060 for (TWindow w
: windows
) {
2064 // Do not activate a hidden window.
2069 if (foundNextWindow
== false) {
2070 foundNextWindow
= true;
2073 assert (activeWindow
== null);
2085 // Perform window cleanup
2088 // Check if we are closing a TMessageBox or similar
2089 if (secondaryEventReceiver
!= null) {
2090 assert (secondaryEventHandler
!= null);
2092 // Do not send events to the secondaryEventReceiver anymore, the
2093 // window is closed.
2094 secondaryEventReceiver
= null;
2096 // Wake the secondary thread, it will wake the primary as it
2098 synchronized (secondaryEventHandler
) {
2099 secondaryEventHandler
.notify();
2103 // Permit desktop to be active if it is the only thing left.
2104 if (desktop
!= null) {
2105 if (windows
.size() == 0) {
2106 desktop
.setActive(true);
2112 * Switch to the next window.
2114 * @param forward if true, then switch to the next window in the list,
2115 * otherwise switch to the previous window in the list
2117 public final void switchWindow(final boolean forward
) {
2118 // Only switch if there are multiple visible windows
2119 if (shownWindowCount() < 2) {
2122 assert (activeWindow
!= null);
2124 synchronized (windows
) {
2125 // Whatever window might be moving/dragging, stop it now.
2126 for (TWindow w
: windows
) {
2127 if (w
.inMovements()) {
2132 // Swap z/active between active window and the next in the list
2133 int activeWindowI
= -1;
2134 for (int i
= 0; i
< windows
.size(); i
++) {
2135 if (windows
.get(i
) == activeWindow
) {
2136 assert (activeWindow
.isActive());
2140 assert (!windows
.get(0).isActive());
2143 assert (activeWindowI
>= 0);
2145 // Do not switch if a window is modal
2146 if (activeWindow
.isModal()) {
2150 int nextWindowI
= activeWindowI
;
2154 nextWindowI
%= windows
.size();
2157 if (nextWindowI
< 0) {
2158 nextWindowI
= windows
.size() - 1;
2162 if (windows
.get(nextWindowI
).isShown()) {
2163 activateWindow(windows
.get(nextWindowI
));
2167 } // synchronized (windows)
2172 * Add a window to my window list and make it active. Note package
2175 * @param window new window to add
2177 final void addWindowToApplication(final TWindow window
) {
2179 // Do not add menu windows to the window list.
2180 if (window
instanceof TMenu
) {
2184 // Do not add the desktop to the window list.
2185 if (window
instanceof TDesktop
) {
2189 synchronized (windows
) {
2190 if (windows
.contains(window
)) {
2191 throw new IllegalArgumentException("Window " + window
+
2192 " is already in window list");
2195 // Whatever window might be moving/dragging, stop it now.
2196 for (TWindow w
: windows
) {
2197 if (w
.inMovements()) {
2202 // Do not allow a modal window to spawn a non-modal window. If a
2203 // modal window is active, then this window will become modal
2205 if (modalWindowActive()) {
2206 window
.flags
|= TWindow
.MODAL
;
2207 window
.flags
|= TWindow
.CENTERED
;
2208 window
.hidden
= false;
2210 if (window
.isShown()) {
2211 for (TWindow w
: windows
) {
2216 w
.setZ(w
.getZ() + 1);
2219 windows
.add(window
);
2220 if (window
.isShown()) {
2221 activeWindow
= window
;
2222 activeWindow
.setZ(0);
2223 activeWindow
.setActive(true);
2224 activeWindow
.onFocus();
2227 if (((window
.flags
& TWindow
.CENTERED
) == 0)
2228 && ((window
.flags
& TWindow
.ABSOLUTEXY
) == 0)
2229 && (smartWindowPlacement
== true)
2232 doSmartPlacement(window
);
2236 // Desktop cannot be active over any other window.
2237 if (desktop
!= null) {
2238 desktop
.setActive(false);
2243 * Check if there is a system-modal window on top.
2245 * @return true if the active window is modal
2247 private boolean modalWindowActive() {
2248 if (windows
.size() == 0) {
2252 for (TWindow w
: windows
) {
2262 * Check if there is a window with overridden menu flag on top.
2264 * @return true if the active window is overriding the menu
2266 private boolean overrideMenuWindowActive() {
2267 if (activeWindow
!= null) {
2268 if (activeWindow
.hasOverriddenMenu()) {
2277 * Close all open windows.
2279 private void closeAllWindows() {
2280 // Don't do anything if we are in the menu
2281 if (activeMenu
!= null) {
2284 while (windows
.size() > 0) {
2285 closeWindow(windows
.get(0));
2290 * Re-layout the open windows as non-overlapping tiles. This produces
2291 * almost the same results as Turbo Pascal 7.0's IDE.
2293 private void tileWindows() {
2294 synchronized (windows
) {
2295 // Don't do anything if we are in the menu
2296 if (activeMenu
!= null) {
2299 int z
= windows
.size();
2305 a
= (int)(Math
.sqrt(z
));
2309 if (((a
* b
) + c
) == z
) {
2317 int newWidth
= (getScreen().getWidth() / a
);
2318 int newHeight1
= ((getScreen().getHeight() - 1) / b
);
2319 int newHeight2
= ((getScreen().getHeight() - 1) / (b
+ c
));
2321 List
<TWindow
> sorted
= new ArrayList
<TWindow
>(windows
);
2322 Collections
.sort(sorted
);
2323 Collections
.reverse(sorted
);
2324 for (int i
= 0; i
< sorted
.size(); i
++) {
2325 int logicalX
= i
/ b
;
2326 int logicalY
= i
% b
;
2327 if (i
>= ((a
- 1) * b
)) {
2329 logicalY
= i
- ((a
- 1) * b
);
2332 TWindow w
= sorted
.get(i
);
2333 int oldWidth
= w
.getWidth();
2334 int oldHeight
= w
.getHeight();
2336 w
.setX(logicalX
* newWidth
);
2337 w
.setWidth(newWidth
);
2338 if (i
>= ((a
- 1) * b
)) {
2339 w
.setY((logicalY
* newHeight2
) + 1);
2340 w
.setHeight(newHeight2
);
2342 w
.setY((logicalY
* newHeight1
) + 1);
2343 w
.setHeight(newHeight1
);
2345 if ((w
.getWidth() != oldWidth
)
2346 || (w
.getHeight() != oldHeight
)
2348 w
.onResize(new TResizeEvent(TResizeEvent
.Type
.WIDGET
,
2349 w
.getWidth(), w
.getHeight()));
2356 * Re-layout the open windows as overlapping cascaded windows.
2358 private void cascadeWindows() {
2359 synchronized (windows
) {
2360 // Don't do anything if we are in the menu
2361 if (activeMenu
!= null) {
2366 List
<TWindow
> sorted
= new ArrayList
<TWindow
>(windows
);
2367 Collections
.sort(sorted
);
2368 Collections
.reverse(sorted
);
2369 for (TWindow window
: sorted
) {
2374 if (x
> getScreen().getWidth()) {
2377 if (y
>= getScreen().getHeight()) {
2385 * Place a window to minimize its overlap with other windows.
2387 * @param window the window to place
2389 public final void doSmartPlacement(final TWindow window
) {
2390 // This is a pretty dumb algorithm, but seems to work. The hardest
2391 // part is computing these "overlap" values seeking a minimum average
2394 int yMin
= desktopTop
;
2395 int xMax
= getScreen().getWidth() - window
.getWidth() + 1;
2396 int yMax
= desktopBottom
- window
.getHeight() + 1;
2404 if ((xMin
== xMax
) && (yMin
== yMax
)) {
2405 // No work to do, bail out.
2409 // Compute the overlap matrix without the new window.
2410 int width
= getScreen().getWidth();
2411 int height
= getScreen().getHeight();
2412 int overlapMatrix
[][] = new int[width
][height
];
2413 for (TWindow w
: windows
) {
2417 for (int x
= w
.getX(); x
< w
.getX() + w
.getWidth(); x
++) {
2424 for (int y
= w
.getY(); y
< w
.getY() + w
.getHeight(); y
++) {
2431 overlapMatrix
[x
][y
]++;
2436 long oldOverlapTotal
= 0;
2437 long oldOverlapN
= 0;
2438 for (int x
= 0; x
< width
; x
++) {
2439 for (int y
= 0; y
< height
; y
++) {
2440 oldOverlapTotal
+= overlapMatrix
[x
][y
];
2441 if (overlapMatrix
[x
][y
] > 0) {
2448 double oldOverlapAvg
= (double) oldOverlapTotal
/ (double) oldOverlapN
;
2449 boolean first
= true;
2450 int windowX
= window
.getX();
2451 int windowY
= window
.getY();
2453 // For each possible (x, y) position for the new window, compute a
2454 // new overlap matrix.
2455 for (int x
= xMin
; x
< xMax
; x
++) {
2456 for (int y
= yMin
; y
< yMax
; y
++) {
2458 // Start with the matrix minus this window.
2459 int newMatrix
[][] = new int[width
][height
];
2460 for (int mx
= 0; mx
< width
; mx
++) {
2461 for (int my
= 0; my
< height
; my
++) {
2462 newMatrix
[mx
][my
] = overlapMatrix
[mx
][my
];
2466 // Add this window's values to the new overlap matrix.
2467 long newOverlapTotal
= 0;
2468 long newOverlapN
= 0;
2469 // Start by adding each new cell.
2470 for (int wx
= x
; wx
< x
+ window
.getWidth(); wx
++) {
2474 for (int wy
= y
; wy
< y
+ window
.getHeight(); wy
++) {
2478 newMatrix
[wx
][wy
]++;
2481 // Now figure out the new value for total coverage.
2482 for (int mx
= 0; mx
< width
; mx
++) {
2483 for (int my
= 0; my
< height
; my
++) {
2484 newOverlapTotal
+= newMatrix
[x
][y
];
2485 if (newMatrix
[mx
][my
] > 0) {
2490 double newOverlapAvg
= (double) newOverlapTotal
/ (double) newOverlapN
;
2493 // First time: just record what we got.
2494 oldOverlapAvg
= newOverlapAvg
;
2497 // All other times: pick a new best (x, y) and save the
2499 if (newOverlapAvg
< oldOverlapAvg
) {
2502 oldOverlapAvg
= newOverlapAvg
;
2506 } // for (int x = xMin; x < xMax; x++)
2508 } // for (int y = yMin; y < yMax; y++)
2510 // Finally, set the window's new coordinates.
2511 window
.setX(windowX
);
2512 window
.setY(windowY
);
2515 // ------------------------------------------------------------------------
2516 // TImage management ------------------------------------------------------
2517 // ------------------------------------------------------------------------
2520 * Add an image to the list. Note package private access.
2522 * @param image the image to add
2523 * @throws IllegalArgumentException if the image is already used in
2524 * another TApplication
2526 final void addImage(final TImage image
) {
2527 if ((image
.getApplication() != null)
2528 && (image
.getApplication() != this)
2530 throw new IllegalArgumentException("Image " + image
+
2531 " is already " + "part of application " +
2532 image
.getApplication());
2538 * Remove an image from the list. Note package private access.
2540 * @param image the image to remove
2541 * @throws IllegalArgumentException if the image is already used in
2542 * another TApplication
2544 final void removeImage(final TImage image
) {
2545 if ((image
.getApplication() != null)
2546 && (image
.getApplication() != this)
2548 throw new IllegalArgumentException("Image " + image
+
2549 " is already " + "part of application " +
2550 image
.getApplication());
2552 images
.remove(image
);
2555 // ------------------------------------------------------------------------
2556 // TMenu management -------------------------------------------------------
2557 // ------------------------------------------------------------------------
2560 * Check if a mouse event would hit either the active menu or any open
2563 * @param mouse mouse event
2564 * @return true if the mouse would hit the active menu or an open
2567 private boolean mouseOnMenu(final TMouseEvent mouse
) {
2568 assert (activeMenu
!= null);
2569 List
<TMenu
> menus
= new ArrayList
<TMenu
>(subMenus
);
2570 Collections
.reverse(menus
);
2571 for (TMenu menu
: menus
) {
2572 if (menu
.mouseWouldHit(mouse
)) {
2576 return activeMenu
.mouseWouldHit(mouse
);
2580 * See if we need to switch window or activate the menu based on
2583 * @param mouse mouse event
2585 private void checkSwitchFocus(final TMouseEvent mouse
) {
2587 if ((mouse
.getType() == TMouseEvent
.Type
.MOUSE_DOWN
)
2588 && (activeMenu
!= null)
2589 && (mouse
.getAbsoluteY() != 0)
2590 && (!mouseOnMenu(mouse
))
2592 // They clicked outside the active menu, turn it off
2593 activeMenu
.setActive(false);
2595 for (TMenu menu
: subMenus
) {
2596 menu
.setActive(false);
2602 // See if they hit the menu bar
2603 if ((mouse
.getType() == TMouseEvent
.Type
.MOUSE_DOWN
)
2604 && (mouse
.isMouse1())
2605 && (!modalWindowActive())
2606 && (!overrideMenuWindowActive())
2607 && (mouse
.getAbsoluteY() == 0)
2610 for (TMenu menu
: subMenus
) {
2611 menu
.setActive(false);
2615 // They selected the menu, go activate it
2616 for (TMenu menu
: menus
) {
2617 if ((mouse
.getAbsoluteX() >= menu
.getTitleX())
2618 && (mouse
.getAbsoluteX() < menu
.getTitleX()
2619 + menu
.getTitle().length() + 2)
2621 menu
.setActive(true);
2624 menu
.setActive(false);
2630 // See if they hit the menu bar
2631 if ((mouse
.getType() == TMouseEvent
.Type
.MOUSE_MOTION
)
2632 && (mouse
.isMouse1())
2633 && (activeMenu
!= null)
2634 && (mouse
.getAbsoluteY() == 0)
2637 TMenu oldMenu
= activeMenu
;
2638 for (TMenu menu
: subMenus
) {
2639 menu
.setActive(false);
2643 // See if we should switch menus
2644 for (TMenu menu
: menus
) {
2645 if ((mouse
.getAbsoluteX() >= menu
.getTitleX())
2646 && (mouse
.getAbsoluteX() < menu
.getTitleX()
2647 + menu
.getTitle().length() + 2)
2649 menu
.setActive(true);
2653 if (oldMenu
!= activeMenu
) {
2654 // They switched menus
2655 oldMenu
.setActive(false);
2660 // If a menu is still active, don't switch windows
2661 if (activeMenu
!= null) {
2665 // Only switch if there are multiple windows
2666 if (windows
.size() < 2) {
2670 if (((focusFollowsMouse
== true)
2671 && (mouse
.getType() == TMouseEvent
.Type
.MOUSE_MOTION
))
2672 || (mouse
.getType() == TMouseEvent
.Type
.MOUSE_DOWN
)
2674 synchronized (windows
) {
2675 Collections
.sort(windows
);
2676 if (windows
.get(0).isModal()) {
2677 // Modal windows don't switch
2681 for (TWindow window
: windows
) {
2682 assert (!window
.isModal());
2684 if (window
.isHidden()) {
2685 assert (!window
.isActive());
2689 if (window
.mouseWouldHit(mouse
)) {
2690 if (window
== windows
.get(0)) {
2691 // Clicked on the same window, nothing to do
2692 assert (window
.isActive());
2696 // We will be switching to another window
2697 assert (windows
.get(0).isActive());
2698 assert (windows
.get(0) == activeWindow
);
2699 assert (!window
.isActive());
2700 if (activeWindow
!= null) {
2701 activeWindow
.onUnfocus();
2702 activeWindow
.setActive(false);
2703 activeWindow
.setZ(window
.getZ());
2705 activeWindow
= window
;
2707 window
.setActive(true);
2714 // Clicked on the background, nothing to do
2718 // Nothing to do: this isn't a mouse up, or focus isn't following
2724 * Turn off the menu.
2726 public final void closeMenu() {
2727 if (activeMenu
!= null) {
2728 activeMenu
.setActive(false);
2730 for (TMenu menu
: subMenus
) {
2731 menu
.setActive(false);
2738 * Get a (shallow) copy of the menu list.
2740 * @return a copy of the menu list
2742 public final List
<TMenu
> getAllMenus() {
2743 return new ArrayList
<TMenu
>(menus
);
2747 * Add a top-level menu to the list.
2749 * @param menu the menu to add
2750 * @throws IllegalArgumentException if the menu is already used in
2751 * another TApplication
2753 public final void addMenu(final TMenu menu
) {
2754 if ((menu
.getApplication() != null)
2755 && (menu
.getApplication() != this)
2757 throw new IllegalArgumentException("Menu " + menu
+ " is already " +
2758 "part of application " + menu
.getApplication());
2766 * Remove a top-level menu from the list.
2768 * @param menu the menu to remove
2769 * @throws IllegalArgumentException if the menu is already used in
2770 * another TApplication
2772 public final void removeMenu(final TMenu menu
) {
2773 if ((menu
.getApplication() != null)
2774 && (menu
.getApplication() != this)
2776 throw new IllegalArgumentException("Menu " + menu
+ " is already " +
2777 "part of application " + menu
.getApplication());
2785 * Turn off a sub-menu.
2787 public final void closeSubMenu() {
2788 assert (activeMenu
!= null);
2789 TMenu item
= subMenus
.get(subMenus
.size() - 1);
2790 assert (item
!= null);
2791 item
.setActive(false);
2792 subMenus
.remove(subMenus
.size() - 1);
2796 * Switch to the next menu.
2798 * @param forward if true, then switch to the next menu in the list,
2799 * otherwise switch to the previous menu in the list
2801 public final void switchMenu(final boolean forward
) {
2802 assert (activeMenu
!= null);
2804 for (TMenu menu
: subMenus
) {
2805 menu
.setActive(false);
2809 for (int i
= 0; i
< menus
.size(); i
++) {
2810 if (activeMenu
== menus
.get(i
)) {
2812 if (i
< menus
.size() - 1) {
2821 i
= menus
.size() - 1;
2824 activeMenu
.setActive(false);
2825 activeMenu
= menus
.get(i
);
2826 activeMenu
.setActive(true);
2833 * Add a menu item to the global list. If it has a keyboard accelerator,
2834 * that will be added the global hash.
2836 * @param item the menu item
2838 public final void addMenuItem(final TMenuItem item
) {
2839 menuItems
.add(item
);
2841 TKeypress key
= item
.getKey();
2843 synchronized (accelerators
) {
2844 assert (accelerators
.get(key
) == null);
2845 accelerators
.put(key
.toLowerCase(), item
);
2851 * Disable one menu item.
2853 * @param id the menu item ID
2855 public final void disableMenuItem(final int id
) {
2856 for (TMenuItem item
: menuItems
) {
2857 if (item
.getId() == id
) {
2858 item
.setEnabled(false);
2864 * Disable the range of menu items with ID's between lower and upper,
2867 * @param lower the lowest menu item ID
2868 * @param upper the highest menu item ID
2870 public final void disableMenuItems(final int lower
, final int upper
) {
2871 for (TMenuItem item
: menuItems
) {
2872 if ((item
.getId() >= lower
) && (item
.getId() <= upper
)) {
2873 item
.setEnabled(false);
2874 item
.getParent().activate(0);
2880 * Enable one menu item.
2882 * @param id the menu item ID
2884 public final void enableMenuItem(final int id
) {
2885 for (TMenuItem item
: menuItems
) {
2886 if (item
.getId() == id
) {
2887 item
.setEnabled(true);
2888 item
.getParent().activate(0);
2894 * Enable the range of menu items with ID's between lower and upper,
2897 * @param lower the lowest menu item ID
2898 * @param upper the highest menu item ID
2900 public final void enableMenuItems(final int lower
, final int upper
) {
2901 for (TMenuItem item
: menuItems
) {
2902 if ((item
.getId() >= lower
) && (item
.getId() <= upper
)) {
2903 item
.setEnabled(true);
2904 item
.getParent().activate(0);
2910 * Recompute menu x positions based on their title length.
2912 public final void recomputeMenuX() {
2914 for (TMenu menu
: menus
) {
2917 x
+= menu
.getTitle().length() + 2;
2919 // Don't let the menu window exceed the screen width
2920 int rightEdge
= menu
.getX() + menu
.getWidth();
2921 if (rightEdge
> getScreen().getWidth()) {
2922 menu
.setX(getScreen().getWidth() - menu
.getWidth());
2928 * Post an event to process.
2930 * @param event new event to add to the queue
2932 public final void postEvent(final TInputEvent event
) {
2933 synchronized (this) {
2934 synchronized (fillEventQueue
) {
2935 fillEventQueue
.add(event
);
2938 System
.err
.println(System
.currentTimeMillis() + " " +
2939 Thread
.currentThread() + " postEvent() wake up main");
2946 * Post an event to process and turn off the menu.
2948 * @param event new event to add to the queue
2950 public final void postMenuEvent(final TInputEvent event
) {
2951 synchronized (this) {
2952 synchronized (fillEventQueue
) {
2953 fillEventQueue
.add(event
);
2956 System
.err
.println(System
.currentTimeMillis() + " " +
2957 Thread
.currentThread() + " postMenuEvent() wake up main");
2965 * Add a sub-menu to the list of open sub-menus.
2967 * @param menu sub-menu
2969 public final void addSubMenu(final TMenu menu
) {
2974 * Convenience function to add a top-level menu.
2976 * @param title menu title
2977 * @return the new menu
2979 public final TMenu
addMenu(final String title
) {
2982 TMenu menu
= new TMenu(this, x
, y
, title
);
2989 * Convenience function to add a default tools (hamburger) menu.
2991 * @return the new menu
2993 public final TMenu
addToolMenu() {
2994 TMenu toolMenu
= addMenu(i18n
.getString("toolMenuTitle"));
2995 toolMenu
.addDefaultItem(TMenu
.MID_REPAINT
);
2996 toolMenu
.addDefaultItem(TMenu
.MID_VIEW_IMAGE
);
2997 toolMenu
.addDefaultItem(TMenu
.MID_CHANGE_FONT
);
2998 TStatusBar toolStatusBar
= toolMenu
.newStatusBar(i18n
.
2999 getString("toolMenuStatus"));
3000 toolStatusBar
.addShortcutKeypress(kbF1
, cmHelp
, i18n
.getString("Help"));
3005 * Convenience function to add a default "File" menu.
3007 * @return the new menu
3009 public final TMenu
addFileMenu() {
3010 TMenu fileMenu
= addMenu(i18n
.getString("fileMenuTitle"));
3011 fileMenu
.addDefaultItem(TMenu
.MID_OPEN_FILE
);
3012 fileMenu
.addSeparator();
3013 fileMenu
.addDefaultItem(TMenu
.MID_SHELL
);
3014 fileMenu
.addDefaultItem(TMenu
.MID_EXIT
);
3015 TStatusBar statusBar
= fileMenu
.newStatusBar(i18n
.
3016 getString("fileMenuStatus"));
3017 statusBar
.addShortcutKeypress(kbF1
, cmHelp
, i18n
.getString("Help"));
3022 * Convenience function to add a default "Edit" menu.
3024 * @return the new menu
3026 public final TMenu
addEditMenu() {
3027 TMenu editMenu
= addMenu(i18n
.getString("editMenuTitle"));
3028 editMenu
.addDefaultItem(TMenu
.MID_CUT
);
3029 editMenu
.addDefaultItem(TMenu
.MID_COPY
);
3030 editMenu
.addDefaultItem(TMenu
.MID_PASTE
);
3031 editMenu
.addDefaultItem(TMenu
.MID_CLEAR
);
3032 TStatusBar statusBar
= editMenu
.newStatusBar(i18n
.
3033 getString("editMenuStatus"));
3034 statusBar
.addShortcutKeypress(kbF1
, cmHelp
, i18n
.getString("Help"));
3039 * Convenience function to add a default "Window" menu.
3041 * @return the new menu
3043 public final TMenu
addWindowMenu() {
3044 TMenu windowMenu
= addMenu(i18n
.getString("windowMenuTitle"));
3045 windowMenu
.addDefaultItem(TMenu
.MID_TILE
);
3046 windowMenu
.addDefaultItem(TMenu
.MID_CASCADE
);
3047 windowMenu
.addDefaultItem(TMenu
.MID_CLOSE_ALL
);
3048 windowMenu
.addSeparator();
3049 windowMenu
.addDefaultItem(TMenu
.MID_WINDOW_MOVE
);
3050 windowMenu
.addDefaultItem(TMenu
.MID_WINDOW_ZOOM
);
3051 windowMenu
.addDefaultItem(TMenu
.MID_WINDOW_NEXT
);
3052 windowMenu
.addDefaultItem(TMenu
.MID_WINDOW_PREVIOUS
);
3053 windowMenu
.addDefaultItem(TMenu
.MID_WINDOW_CLOSE
);
3054 TStatusBar statusBar
= windowMenu
.newStatusBar(i18n
.
3055 getString("windowMenuStatus"));
3056 statusBar
.addShortcutKeypress(kbF1
, cmHelp
, i18n
.getString("Help"));
3061 * Convenience function to add a default "Help" menu.
3063 * @return the new menu
3065 public final TMenu
addHelpMenu() {
3066 TMenu helpMenu
= addMenu(i18n
.getString("helpMenuTitle"));
3067 helpMenu
.addDefaultItem(TMenu
.MID_HELP_CONTENTS
);
3068 helpMenu
.addDefaultItem(TMenu
.MID_HELP_INDEX
);
3069 helpMenu
.addDefaultItem(TMenu
.MID_HELP_SEARCH
);
3070 helpMenu
.addDefaultItem(TMenu
.MID_HELP_PREVIOUS
);
3071 helpMenu
.addDefaultItem(TMenu
.MID_HELP_HELP
);
3072 helpMenu
.addDefaultItem(TMenu
.MID_HELP_ACTIVE_FILE
);
3073 helpMenu
.addSeparator();
3074 helpMenu
.addDefaultItem(TMenu
.MID_ABOUT
);
3075 TStatusBar statusBar
= helpMenu
.newStatusBar(i18n
.
3076 getString("helpMenuStatus"));
3077 statusBar
.addShortcutKeypress(kbF1
, cmHelp
, i18n
.getString("Help"));
3081 // ------------------------------------------------------------------------
3082 // TTimer management ------------------------------------------------------
3083 // ------------------------------------------------------------------------
3086 * Get the amount of time I can sleep before missing a Timer tick.
3088 * @param timeout = initial (maximum) timeout in millis
3089 * @return number of milliseconds between now and the next timer event
3091 private long getSleepTime(final long timeout
) {
3092 Date now
= new Date();
3093 long nowTime
= now
.getTime();
3094 long sleepTime
= timeout
;
3096 synchronized (timers
) {
3097 for (TTimer timer
: timers
) {
3098 long nextTickTime
= timer
.getNextTick().getTime();
3099 if (nextTickTime
< nowTime
) {
3103 long timeDifference
= nextTickTime
- nowTime
;
3104 if (timeDifference
< sleepTime
) {
3105 sleepTime
= timeDifference
;
3110 assert (sleepTime
>= 0);
3111 assert (sleepTime
<= timeout
);
3116 * Convenience function to add a timer.
3118 * @param duration number of milliseconds to wait between ticks
3119 * @param recurring if true, re-schedule this timer after every tick
3120 * @param action function to call when button is pressed
3123 public final TTimer
addTimer(final long duration
, final boolean recurring
,
3124 final TAction action
) {
3126 TTimer timer
= new TTimer(duration
, recurring
, action
);
3127 synchronized (timers
) {
3134 * Convenience function to remove a timer.
3136 * @param timer timer to remove
3138 public final void removeTimer(final TTimer timer
) {
3139 synchronized (timers
) {
3140 timers
.remove(timer
);
3144 // ------------------------------------------------------------------------
3145 // Other TWindow constructors ---------------------------------------------
3146 // ------------------------------------------------------------------------
3149 * Convenience function to spawn a message box.
3151 * @param title window title, will be centered along the top border
3152 * @param caption message to display. Use embedded newlines to get a
3154 * @return the new message box
3156 public final TMessageBox
messageBox(final String title
,
3157 final String caption
) {
3159 return new TMessageBox(this, title
, caption
, TMessageBox
.Type
.OK
);
3163 * Convenience function to spawn a message box.
3165 * @param title window title, will be centered along the top border
3166 * @param caption message to display. Use embedded newlines to get a
3168 * @param type one of the TMessageBox.Type constants. Default is
3170 * @return the new message box
3172 public final TMessageBox
messageBox(final String title
,
3173 final String caption
, final TMessageBox
.Type type
) {
3175 return new TMessageBox(this, title
, caption
, type
);
3179 * Convenience function to spawn an input box.
3181 * @param title window title, will be centered along the top border
3182 * @param caption message to display. Use embedded newlines to get a
3184 * @return the new input box
3186 public final TInputBox
inputBox(final String title
, final String caption
) {
3188 return new TInputBox(this, title
, caption
);
3192 * Convenience function to spawn an input box.
3194 * @param title window title, will be centered along the top border
3195 * @param caption message to display. Use embedded newlines to get a
3197 * @param text initial text to seed the field with
3198 * @return the new input box
3200 public final TInputBox
inputBox(final String title
, final String caption
,
3201 final String text
) {
3203 return new TInputBox(this, title
, caption
, text
);
3207 * Convenience function to spawn an input box.
3209 * @param title window title, will be centered along the top border
3210 * @param caption message to display. Use embedded newlines to get a
3212 * @param text initial text to seed the field with
3213 * @param type one of the Type constants. Default is Type.OK.
3214 * @return the new input box
3216 public final TInputBox
inputBox(final String title
, final String caption
,
3217 final String text
, final TInputBox
.Type type
) {
3219 return new TInputBox(this, title
, caption
, text
, type
);
3223 * Convenience function to open a terminal window.
3225 * @param x column relative to parent
3226 * @param y row relative to parent
3227 * @return the terminal new window
3229 public final TTerminalWindow
openTerminal(final int x
, final int y
) {
3230 return openTerminal(x
, y
, TWindow
.RESIZABLE
);
3234 * Convenience function to open a terminal window.
3236 * @param x column relative to parent
3237 * @param y row relative to parent
3238 * @param closeOnExit if true, close the window when the command exits
3239 * @return the terminal new window
3241 public final TTerminalWindow
openTerminal(final int x
, final int y
,
3242 final boolean closeOnExit
) {
3244 return openTerminal(x
, y
, TWindow
.RESIZABLE
, closeOnExit
);
3248 * Convenience function to open a terminal window.
3250 * @param x column relative to parent
3251 * @param y row relative to parent
3252 * @param flags mask of CENTERED, MODAL, or RESIZABLE
3253 * @return the terminal new window
3255 public final TTerminalWindow
openTerminal(final int x
, final int y
,
3258 return new TTerminalWindow(this, x
, y
, flags
);
3262 * Convenience function to open a terminal window.
3264 * @param x column relative to parent
3265 * @param y row relative to parent
3266 * @param flags mask of CENTERED, MODAL, or RESIZABLE
3267 * @param closeOnExit if true, close the window when the command exits
3268 * @return the terminal new window
3270 public final TTerminalWindow
openTerminal(final int x
, final int y
,
3271 final int flags
, final boolean closeOnExit
) {
3273 return new TTerminalWindow(this, x
, y
, flags
, closeOnExit
);
3277 * Convenience function to open a terminal window and execute a custom
3278 * command line inside it.
3280 * @param x column relative to parent
3281 * @param y row relative to parent
3282 * @param commandLine the command line to execute
3283 * @return the terminal new window
3285 public final TTerminalWindow
openTerminal(final int x
, final int y
,
3286 final String commandLine
) {
3288 return openTerminal(x
, y
, TWindow
.RESIZABLE
, commandLine
);
3292 * Convenience function to open a terminal window and execute a custom
3293 * command line inside it.
3295 * @param x column relative to parent
3296 * @param y row relative to parent
3297 * @param commandLine the command line to execute
3298 * @param closeOnExit if true, close the window when the command exits
3299 * @return the terminal new window
3301 public final TTerminalWindow
openTerminal(final int x
, final int y
,
3302 final String commandLine
, final boolean closeOnExit
) {
3304 return openTerminal(x
, y
, TWindow
.RESIZABLE
, commandLine
, closeOnExit
);
3308 * Convenience function to open a terminal window and execute a custom
3309 * command line inside it.
3311 * @param x column relative to parent
3312 * @param y row relative to parent
3313 * @param flags mask of CENTERED, MODAL, or RESIZABLE
3314 * @param command the command line to execute
3315 * @return the terminal new window
3317 public final TTerminalWindow
openTerminal(final int x
, final int y
,
3318 final int flags
, final String
[] command
) {
3320 return new TTerminalWindow(this, x
, y
, flags
, command
);
3324 * Convenience function to open a terminal window and execute a custom
3325 * command line inside it.
3327 * @param x column relative to parent
3328 * @param y row relative to parent
3329 * @param flags mask of CENTERED, MODAL, or RESIZABLE
3330 * @param command the command line to execute
3331 * @param closeOnExit if true, close the window when the command exits
3332 * @return the terminal new window
3334 public final TTerminalWindow
openTerminal(final int x
, final int y
,
3335 final int flags
, final String
[] command
, final boolean closeOnExit
) {
3337 return new TTerminalWindow(this, x
, y
, flags
, command
, closeOnExit
);
3341 * Convenience function to open a terminal window and execute a custom
3342 * command line inside it.
3344 * @param x column relative to parent
3345 * @param y row relative to parent
3346 * @param flags mask of CENTERED, MODAL, or RESIZABLE
3347 * @param commandLine the command line to execute
3348 * @return the terminal new window
3350 public final TTerminalWindow
openTerminal(final int x
, final int y
,
3351 final int flags
, final String commandLine
) {
3353 return new TTerminalWindow(this, x
, y
, flags
, commandLine
.split("\\s+"));
3357 * Convenience function to open a terminal window and execute a custom
3358 * command line inside it.
3360 * @param x column relative to parent
3361 * @param y row relative to parent
3362 * @param flags mask of CENTERED, MODAL, or RESIZABLE
3363 * @param commandLine the command line to execute
3364 * @param closeOnExit if true, close the window when the command exits
3365 * @return the terminal new window
3367 public final TTerminalWindow
openTerminal(final int x
, final int y
,
3368 final int flags
, final String commandLine
, final boolean closeOnExit
) {
3370 return new TTerminalWindow(this, x
, y
, flags
, commandLine
.split("\\s+"),
3375 * Convenience function to spawn an file open box.
3377 * @param path path of selected file
3378 * @return the result of the new file open box
3379 * @throws IOException if java.io operation throws
3381 public final String
fileOpenBox(final String path
) throws IOException
{
3383 TFileOpenBox box
= new TFileOpenBox(this, path
, TFileOpenBox
.Type
.OPEN
);
3384 return box
.getFilename();
3388 * Convenience function to spawn an file open box.
3390 * @param path path of selected file
3391 * @param type one of the Type constants
3392 * @return the result of the new file open box
3393 * @throws IOException if java.io operation throws
3395 public final String
fileOpenBox(final String path
,
3396 final TFileOpenBox
.Type type
) throws IOException
{
3398 TFileOpenBox box
= new TFileOpenBox(this, path
, type
);
3399 return box
.getFilename();
3403 * Convenience function to spawn a file open box.
3405 * @param path path of selected file
3406 * @param type one of the Type constants
3407 * @param filter a string that files must match to be displayed
3408 * @return the result of the new file open box
3409 * @throws IOException of a java.io operation throws
3411 public final String
fileOpenBox(final String path
,
3412 final TFileOpenBox
.Type type
, final String filter
) throws IOException
{
3414 ArrayList
<String
> filters
= new ArrayList
<String
>();
3415 filters
.add(filter
);
3417 TFileOpenBox box
= new TFileOpenBox(this, path
, type
, filters
);
3418 return box
.getFilename();
3422 * Convenience function to spawn a file open box.
3424 * @param path path of selected file
3425 * @param type one of the Type constants
3426 * @param filters a list of strings that files must match to be displayed
3427 * @return the result of the new file open box
3428 * @throws IOException of a java.io operation throws
3430 public final String
fileOpenBox(final String path
,
3431 final TFileOpenBox
.Type type
,
3432 final List
<String
> filters
) throws IOException
{
3434 TFileOpenBox box
= new TFileOpenBox(this, path
, type
, filters
);
3435 return box
.getFilename();
3439 * Convenience function to create a new window and make it active.
3440 * Window will be located at (0, 0).
3442 * @param title window title, will be centered along the top border
3443 * @param width width of window
3444 * @param height height of window
3445 * @return the new window
3447 public final TWindow
addWindow(final String title
, final int width
,
3450 TWindow window
= new TWindow(this, title
, 0, 0, width
, height
);
3455 * Convenience function to create a new window and make it active.
3456 * Window will be located at (0, 0).
3458 * @param title window title, will be centered along the top border
3459 * @param width width of window
3460 * @param height height of window
3461 * @param flags bitmask of RESIZABLE, CENTERED, or MODAL
3462 * @return the new window
3464 public final TWindow
addWindow(final String title
,
3465 final int width
, final int height
, final int flags
) {
3467 TWindow window
= new TWindow(this, title
, 0, 0, width
, height
, flags
);
3472 * Convenience function to create a new window and make it active.
3474 * @param title window title, will be centered along the top border
3475 * @param x column relative to parent
3476 * @param y row relative to parent
3477 * @param width width of window
3478 * @param height height of window
3479 * @return the new window
3481 public final TWindow
addWindow(final String title
,
3482 final int x
, final int y
, final int width
, final int height
) {
3484 TWindow window
= new TWindow(this, title
, x
, y
, width
, height
);
3489 * Convenience function to create a new window and make it active.
3491 * @param title window title, will be centered along the top border
3492 * @param x column relative to parent
3493 * @param y row relative to parent
3494 * @param width width of window
3495 * @param height height of window
3496 * @param flags mask of RESIZABLE, CENTERED, or MODAL
3497 * @return the new window
3499 public final TWindow
addWindow(final String title
,
3500 final int x
, final int y
, final int width
, final int height
,
3503 TWindow window
= new TWindow(this, title
, x
, y
, width
, height
, flags
);