More PMD warnings
[fanfix.git] / src / jexer / TApplication.java
CommitLineData
daa4106c 1/*
7b5261bc 2 * Jexer - Java Text User Interface
7d4115a5 3 *
e16dda65 4 * The MIT License (MIT)
7d4115a5 5 *
a2018e99 6 * Copyright (C) 2017 Kevin Lamonte
7d4115a5 7 *
e16dda65
KL
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:
7d4115a5 14 *
e16dda65
KL
15 * The above copyright notice and this permission notice shall be included in
16 * all copies or substantial portions of the Software.
7d4115a5 17 *
e16dda65
KL
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.
7b5261bc
KL
25 *
26 * @author Kevin Lamonte [kevin.lamonte@gmail.com]
27 * @version 1
7d4115a5
KL
28 */
29package jexer;
30
1978ad50 31import java.io.File;
4328bb42 32import java.io.InputStream;
0d47c546 33import java.io.IOException;
4328bb42 34import java.io.OutputStream;
6985c572
KL
35import java.io.PrintWriter;
36import java.io.Reader;
4328bb42 37import java.io.UnsupportedEncodingException;
339652cc 38import java.text.MessageFormat;
a06459bd 39import java.util.Collections;
d502a0e9 40import java.util.Date;
e826b451 41import java.util.HashMap;
c6940ed9 42import java.util.ArrayList;
4328bb42
KL
43import java.util.LinkedList;
44import java.util.List;
e826b451 45import java.util.Map;
339652cc 46import java.util.ResourceBundle;
4328bb42
KL
47
48import jexer.bits.CellAttributes;
49import jexer.bits.ColorTheme;
4328bb42
KL
50import jexer.event.TCommandEvent;
51import jexer.event.TInputEvent;
52import jexer.event.TKeypressEvent;
fca67db0 53import jexer.event.TMenuEvent;
4328bb42
KL
54import jexer.event.TMouseEvent;
55import jexer.event.TResizeEvent;
56import jexer.backend.Backend;
42873e30 57import jexer.backend.Screen;
be72cb5c 58import jexer.backend.MultiBackend;
a4406f4e 59import jexer.backend.SwingBackend;
4328bb42 60import jexer.backend.ECMA48Backend;
3e074355 61import jexer.backend.TWindowBackend;
928811d8
KL
62import jexer.menu.TMenu;
63import jexer.menu.TMenuItem;
4328bb42 64import static jexer.TCommand.*;
2ce6dab2 65import static jexer.TKeypress.*;
4328bb42 66
7d4115a5 67/**
42873e30
KL
68 * TApplication is the main driver class for a full Text User Interface
69 * application. It manages windows, provides a menu bar and status bar, and
70 * processes events received from the user.
7d4115a5 71 */
a4406f4e 72public class TApplication implements Runnable {
7d4115a5 73
339652cc
KL
74 /**
75 * Translated strings.
76 */
77 private static final ResourceBundle i18n = ResourceBundle.getBundle(TApplication.class.getName());
78
2ce6dab2 79 // ------------------------------------------------------------------------
d36057df 80 // Constants --------------------------------------------------------------
2ce6dab2
KL
81 // ------------------------------------------------------------------------
82
99144c71
KL
83 /**
84 * If true, emit thread stuff to System.err.
85 */
86 private static final boolean debugThreads = false;
87
a83fea2b
KL
88 /**
89 * If true, emit events being processed to System.err.
90 */
91 private static final boolean debugEvents = false;
92
a7986f7b
KL
93 /**
94 * If true, do "smart placement" on new windows that are not specified to
95 * be centered.
96 */
97 private static final boolean smartWindowPlacement = true;
98
a4406f4e
KL
99 /**
100 * Two backend types are available.
101 */
102 public static enum BackendType {
103 /**
104 * A Swing JFrame.
105 */
106 SWING,
107
108 /**
109 * An ECMA48 / ANSI X3.64 / XTERM style terminal.
110 */
111 ECMA48,
112
113 /**
329fd62e 114 * Synonym for ECMA48.
a4406f4e
KL
115 */
116 XTERM
117 }
118
2ce6dab2 119 // ------------------------------------------------------------------------
d36057df 120 // Variables --------------------------------------------------------------
2ce6dab2
KL
121 // ------------------------------------------------------------------------
122
d36057df
KL
123 /**
124 * The primary event handler thread.
125 */
126 private volatile WidgetEventHandler primaryEventHandler;
127
128 /**
129 * The secondary event handler thread.
130 */
131 private volatile WidgetEventHandler secondaryEventHandler;
132
133 /**
134 * The widget receiving events from the secondary event handler thread.
135 */
136 private volatile TWidget secondaryEventReceiver;
137
138 /**
139 * Access to the physical screen, keyboard, and mouse.
140 */
141 private Backend backend;
142
143 /**
144 * Actual mouse coordinate X.
145 */
146 private int mouseX;
147
148 /**
149 * Actual mouse coordinate Y.
150 */
151 private int mouseY;
152
153 /**
154 * Old version of mouse coordinate X.
155 */
156 private int oldMouseX;
157
158 /**
159 * Old version mouse coordinate Y.
160 */
161 private int oldMouseY;
162
163 /**
164 * The last mouse up click time, used to determine if this is a mouse
165 * double-click.
166 */
167 private long lastMouseUpTime;
168
169 /**
170 * The amount of millis between mouse up events to assume a double-click.
171 */
172 private long doubleClickTime = 250;
173
174 /**
175 * Event queue that is filled by run().
176 */
177 private List<TInputEvent> fillEventQueue;
178
179 /**
180 * Event queue that will be drained by either primary or secondary
181 * Thread.
182 */
183 private List<TInputEvent> drainEventQueue;
184
185 /**
186 * Top-level menus in this application.
187 */
188 private List<TMenu> menus;
189
190 /**
191 * Stack of activated sub-menus in this application.
192 */
193 private List<TMenu> subMenus;
194
195 /**
196 * The currently active menu.
197 */
198 private TMenu activeMenu = null;
199
200 /**
201 * Active keyboard accelerators.
202 */
203 private Map<TKeypress, TMenuItem> accelerators;
204
205 /**
206 * All menu items.
207 */
208 private List<TMenuItem> menuItems;
209
210 /**
211 * Windows and widgets pull colors from this ColorTheme.
212 */
213 private ColorTheme theme;
214
215 /**
216 * The top-level windows (but not menus).
217 */
218 private List<TWindow> windows;
219
220 /**
221 * The currently acive window.
222 */
223 private TWindow activeWindow = null;
224
225 /**
226 * Timers that are being ticked.
227 */
228 private List<TTimer> timers;
229
230 /**
231 * When true, the application has been started.
232 */
233 private volatile boolean started = false;
234
235 /**
236 * When true, exit the application.
237 */
238 private volatile boolean quit = false;
239
240 /**
241 * When true, repaint the entire screen.
242 */
243 private volatile boolean repaint = true;
244
245 /**
246 * Y coordinate of the top edge of the desktop. For now this is a
247 * constant. Someday it would be nice to have a multi-line menu or
248 * toolbars.
249 */
250 private static final int desktopTop = 1;
251
252 /**
253 * Y coordinate of the bottom edge of the desktop.
254 */
255 private int desktopBottom;
256
257 /**
258 * An optional TDesktop background window that is drawn underneath
259 * everything else.
260 */
261 private TDesktop desktop;
262
263 /**
264 * If true, focus follows mouse: windows automatically raised if the
265 * mouse passes over them.
266 */
267 private boolean focusFollowsMouse = false;
268
c6940ed9
KL
269 /**
270 * WidgetEventHandler is the main event consumer loop. There are at most
271 * two such threads in existence: the primary for normal case and a
272 * secondary that is used for TMessageBox, TInputBox, and similar.
273 */
274 private class WidgetEventHandler implements Runnable {
275 /**
276 * The main application.
277 */
278 private TApplication application;
279
280 /**
281 * Whether or not this WidgetEventHandler is the primary or secondary
282 * thread.
283 */
284 private boolean primary = true;
285
286 /**
287 * Public constructor.
288 *
289 * @param application the main application
290 * @param primary if true, this is the primary event handler thread
291 */
292 public WidgetEventHandler(final TApplication application,
293 final boolean primary) {
294
295 this.application = application;
296 this.primary = primary;
297 }
298
299 /**
300 * The consumer loop.
301 */
302 public void run() {
be72cb5c 303 boolean first = true;
c6940ed9
KL
304
305 // Loop forever
306 while (!application.quit) {
307
308 // Wait until application notifies me
309 while (!application.quit) {
310 try {
311 synchronized (application.drainEventQueue) {
312 if (application.drainEventQueue.size() > 0) {
313 break;
314 }
315 }
92554d64 316
be72cb5c
KL
317 long timeout = 0;
318 if (first) {
319 first = false;
320 } else {
321 timeout = application.getSleepTime(1000);
322 }
323
324 if (timeout == 0) {
325 // A timer needs to fire, break out.
326 break;
327 }
92554d64 328
be72cb5c
KL
329 if (debugThreads) {
330 System.err.printf("%d %s %s sleep %d millis\n",
331 System.currentTimeMillis(), this,
332 primary ? "primary" : "secondary", timeout);
333 }
92554d64 334
be72cb5c
KL
335 synchronized (this) {
336 this.wait(timeout);
337 }
92554d64 338
be72cb5c
KL
339 if (debugThreads) {
340 System.err.printf("%d %s %s AWAKE\n",
341 System.currentTimeMillis(), this,
342 primary ? "primary" : "secondary");
343 }
344
345 if ((!primary)
346 && (application.secondaryEventReceiver == null)
347 ) {
348 // Secondary thread, emergency exit. If we got
349 // here then something went wrong with the
350 // handoff between yield() and closeWindow().
351 synchronized (application.primaryEventHandler) {
352 application.primaryEventHandler.notify();
c6940ed9 353 }
be72cb5c
KL
354 application.secondaryEventHandler = null;
355 throw new RuntimeException("secondary exited " +
356 "at wrong time");
c6940ed9 357 }
be72cb5c 358 break;
c6940ed9
KL
359 } catch (InterruptedException e) {
360 // SQUASH
361 }
be72cb5c 362 } // while (!application.quit)
ef368bd0 363
c6940ed9
KL
364 // Pull all events off the queue
365 for (;;) {
366 TInputEvent event = null;
367 synchronized (application.drainEventQueue) {
368 if (application.drainEventQueue.size() == 0) {
369 break;
370 }
371 event = application.drainEventQueue.remove(0);
372 }
be72cb5c
KL
373
374 // We will have an event to process, so repaint the
375 // screen at the end.
bd8d51fa 376 application.repaint = true;
be72cb5c 377
c6940ed9
KL
378 if (primary) {
379 primaryHandleEvent(event);
380 } else {
381 secondaryHandleEvent(event);
382 }
383 if ((!primary)
384 && (application.secondaryEventReceiver == null)
385 ) {
99144c71
KL
386 // Secondary thread, time to exit.
387
388 // DO NOT UNLOCK. Primary thread just came back from
389 // primaryHandleEvent() and will unlock in the else
92554d64
KL
390 // block below. Just wake it up.
391 synchronized (application.primaryEventHandler) {
392 application.primaryEventHandler.notify();
393 }
394 // Now eliminate my reference so that
395 // wakeEventHandler() resumes working on the primary.
396 application.secondaryEventHandler = null;
397
398 // All done!
c6940ed9
KL
399 return;
400 }
92554d64 401
be72cb5c 402 } // for (;;)
ef368bd0 403
be72cb5c
KL
404 // Fire timers, update screen.
405 if (!quit) {
406 application.finishEventProcessing();
c6940ed9 407 }
92554d64 408
c6940ed9
KL
409 } // while (true) (main runnable loop)
410 }
411 }
412
d36057df
KL
413 // ------------------------------------------------------------------------
414 // Constructors -----------------------------------------------------------
415 // ------------------------------------------------------------------------
c6940ed9
KL
416
417 /**
d36057df
KL
418 * Public constructor.
419 *
420 * @param backendType BackendType.XTERM, BackendType.ECMA48 or
421 * BackendType.SWING
422 * @param windowWidth the number of text columns to start with
423 * @param windowHeight the number of text rows to start with
424 * @param fontSize the size in points
425 * @throws UnsupportedEncodingException if an exception is thrown when
426 * creating the InputStreamReader
c6940ed9 427 */
d36057df
KL
428 public TApplication(final BackendType backendType, final int windowWidth,
429 final int windowHeight, final int fontSize)
430 throws UnsupportedEncodingException {
c6940ed9 431
d36057df
KL
432 switch (backendType) {
433 case SWING:
434 backend = new SwingBackend(this, windowWidth, windowHeight,
435 fontSize);
436 break;
437 case XTERM:
438 // Fall through...
439 case ECMA48:
440 backend = new ECMA48Backend(this, null, null, windowWidth,
441 windowHeight, fontSize);
442 break;
443 default:
444 throw new IllegalArgumentException("Invalid backend type: "
445 + backendType);
446 }
447 TApplicationImpl();
448 }
c6940ed9 449
92554d64 450 /**
d36057df
KL
451 * Public constructor.
452 *
453 * @param backendType BackendType.XTERM, BackendType.ECMA48 or
454 * BackendType.SWING
455 * @throws UnsupportedEncodingException if an exception is thrown when
456 * creating the InputStreamReader
92554d64 457 */
d36057df
KL
458 public TApplication(final BackendType backendType)
459 throws UnsupportedEncodingException {
b2d49e0f 460
d36057df
KL
461 switch (backendType) {
462 case SWING:
463 // The default SwingBackend is 80x25, 20 pt font. If you want to
464 // change that, you can pass the extra arguments to the
465 // SwingBackend constructor here. For example, if you wanted
466 // 90x30, 16 pt font:
467 //
468 // backend = new SwingBackend(this, 90, 30, 16);
469 backend = new SwingBackend(this);
470 break;
471 case XTERM:
472 // Fall through...
473 case ECMA48:
474 backend = new ECMA48Backend(this, null, null);
475 break;
476 default:
477 throw new IllegalArgumentException("Invalid backend type: "
478 + backendType);
92554d64 479 }
d36057df 480 TApplicationImpl();
92554d64
KL
481 }
482
7d4115a5 483 /**
d36057df 484 * Public constructor. The backend type will be BackendType.ECMA48.
55d2b2c2 485 *
d36057df
KL
486 * @param input an InputStream connected to the remote user, or null for
487 * System.in. If System.in is used, then on non-Windows systems it will
488 * be put in raw mode; shutdown() will (blindly!) put System.in in cooked
489 * mode. input is always converted to a Reader with UTF-8 encoding.
490 * @param output an OutputStream connected to the remote user, or null
491 * for System.out. output is always converted to a Writer with UTF-8
492 * encoding.
493 * @throws UnsupportedEncodingException if an exception is thrown when
494 * creating the InputStreamReader
55d2b2c2 495 */
d36057df
KL
496 public TApplication(final InputStream input,
497 final OutputStream output) throws UnsupportedEncodingException {
498
499 backend = new ECMA48Backend(this, input, output);
500 TApplicationImpl();
55d2b2c2
KL
501 }
502
48e27807 503 /**
d36057df 504 * Public constructor. The backend type will be BackendType.ECMA48.
48e27807 505 *
d36057df
KL
506 * @param input the InputStream underlying 'reader'. Its available()
507 * method is used to determine if reader.read() will block or not.
508 * @param reader a Reader connected to the remote user.
509 * @param writer a PrintWriter connected to the remote user.
510 * @param setRawMode if true, set System.in into raw mode with stty.
511 * This should in general not be used. It is here solely for Demo3,
512 * which uses System.in.
513 * @throws IllegalArgumentException if input, reader, or writer are null.
48e27807 514 */
d36057df
KL
515 public TApplication(final InputStream input, final Reader reader,
516 final PrintWriter writer, final boolean setRawMode) {
517
518 backend = new ECMA48Backend(this, input, reader, writer, setRawMode);
519 TApplicationImpl();
48e27807
KL
520 }
521
4328bb42 522 /**
d36057df
KL
523 * Public constructor. The backend type will be BackendType.ECMA48.
524 *
525 * @param input the InputStream underlying 'reader'. Its available()
526 * method is used to determine if reader.read() will block or not.
527 * @param reader a Reader connected to the remote user.
528 * @param writer a PrintWriter connected to the remote user.
529 * @throws IllegalArgumentException if input, reader, or writer are null.
4328bb42 530 */
d36057df
KL
531 public TApplication(final InputStream input, final Reader reader,
532 final PrintWriter writer) {
4328bb42 533
d36057df
KL
534 this(input, reader, writer, false);
535 }
4328bb42 536
bd8d51fa 537 /**
d36057df
KL
538 * Public constructor. This hook enables use with new non-Jexer
539 * backends.
540 *
541 * @param backend a Backend that is already ready to go.
bd8d51fa 542 */
d36057df
KL
543 public TApplication(final Backend backend) {
544 this.backend = backend;
545 backend.setListener(this);
546 TApplicationImpl();
547 }
bd8d51fa
KL
548
549 /**
d36057df 550 * Finish construction once the backend is set.
bd8d51fa 551 */
d36057df
KL
552 private void TApplicationImpl() {
553 theme = new ColorTheme();
554 desktopBottom = getScreen().getHeight() - 1;
555 fillEventQueue = new ArrayList<TInputEvent>();
556 drainEventQueue = new ArrayList<TInputEvent>();
557 windows = new LinkedList<TWindow>();
558 menus = new LinkedList<TMenu>();
559 subMenus = new LinkedList<TMenu>();
560 timers = new LinkedList<TTimer>();
561 accelerators = new HashMap<TKeypress, TMenuItem>();
562 menuItems = new ArrayList<TMenuItem>();
563 desktop = new TDesktop(this);
bd8d51fa 564
d36057df
KL
565 // Special case: the Swing backend needs to have a timer to drive its
566 // blink state.
567 if ((backend instanceof SwingBackend)
568 || (backend instanceof MultiBackend)
569 ) {
570 // Default to 500 millis, unless a SwingBackend has its own
571 // value.
572 long millis = 500;
573 if (backend instanceof SwingBackend) {
574 millis = ((SwingBackend) backend).getBlinkMillis();
575 }
576 if (millis > 0) {
577 addTimer(millis, true,
578 new TAction() {
579 public void DO() {
580 TApplication.this.doRepaint();
581 }
582 }
583 );
584 }
585 }
586 }
b6faeac0 587
d36057df
KL
588 // ------------------------------------------------------------------------
589 // Runnable ---------------------------------------------------------------
590 // ------------------------------------------------------------------------
b6faeac0 591
4328bb42 592 /**
d36057df 593 * Run this application until it exits.
4328bb42 594 */
d36057df
KL
595 public void run() {
596 // Start the main consumer thread
597 primaryEventHandler = new WidgetEventHandler(this, true);
598 (new Thread(primaryEventHandler)).start();
8e688b92 599
d36057df 600 started = true;
4328bb42 601
d36057df
KL
602 while (!quit) {
603 synchronized (this) {
604 boolean doWait = false;
fca67db0 605
d36057df
KL
606 if (!backend.hasEvents()) {
607 synchronized (fillEventQueue) {
608 if (fillEventQueue.size() == 0) {
609 doWait = true;
610 }
611 }
612 }
fca67db0 613
d36057df
KL
614 if (doWait) {
615 // No I/O to dispatch, so wait until the backend
616 // provides new I/O.
617 try {
618 if (debugThreads) {
619 System.err.println(System.currentTimeMillis() +
620 " MAIN sleep");
621 }
fca67db0 622
d36057df 623 this.wait();
e826b451 624
d36057df
KL
625 if (debugThreads) {
626 System.err.println(System.currentTimeMillis() +
627 " MAIN AWAKE");
628 }
629 } catch (InterruptedException e) {
630 // I'm awake and don't care why, let's see what's
631 // going on out there.
632 }
633 }
efb7af1f 634
d36057df 635 } // synchronized (this)
7b5261bc 636
d36057df
KL
637 synchronized (fillEventQueue) {
638 // Pull any pending I/O events
639 backend.getEvents(fillEventQueue);
4328bb42 640
d36057df
KL
641 // Dispatch each event to the appropriate handler, one at a
642 // time.
643 for (;;) {
644 TInputEvent event = null;
645 if (fillEventQueue.size() == 0) {
646 break;
647 }
648 event = fillEventQueue.remove(0);
649 metaHandleEvent(event);
650 }
651 }
a06459bd 652
d36057df
KL
653 // Wake a consumer thread if we have any pending events.
654 if (drainEventQueue.size() > 0) {
655 wakeEventHandler();
656 }
92453213 657
d36057df 658 } // while (!quit)
d502a0e9 659
d36057df
KL
660 // Shutdown the event consumer threads
661 if (secondaryEventHandler != null) {
662 synchronized (secondaryEventHandler) {
663 secondaryEventHandler.notify();
664 }
665 }
666 if (primaryEventHandler != null) {
667 synchronized (primaryEventHandler) {
668 primaryEventHandler.notify();
669 }
670 }
b2d49e0f 671
d36057df
KL
672 // Shutdown the user I/O thread(s)
673 backend.shutdown();
4328bb42 674
d36057df
KL
675 // Close all the windows. This gives them an opportunity to release
676 // resources.
677 closeAllWindows();
4328bb42 678
be72cb5c
KL
679 }
680
d36057df
KL
681 // ------------------------------------------------------------------------
682 // Event handlers ---------------------------------------------------------
683 // ------------------------------------------------------------------------
48e27807
KL
684
685 /**
d36057df
KL
686 * Method that TApplication subclasses can override to handle menu or
687 * posted command events.
48e27807 688 *
d36057df
KL
689 * @param command command event
690 * @return if true, this event was consumed
48e27807 691 */
d36057df
KL
692 protected boolean onCommand(final TCommandEvent command) {
693 // Default: handle cmExit
694 if (command.equals(cmExit)) {
695 if (messageBox(i18n.getString("exitDialogTitle"),
696 i18n.getString("exitDialogText"),
697 TMessageBox.Type.YESNO).getResult() == TMessageBox.Result.YES) {
698 exit();
699 }
700 return true;
701 }
48e27807 702
d36057df
KL
703 if (command.equals(cmShell)) {
704 openTerminal(0, 0, TWindow.RESIZABLE);
705 return true;
706 }
4328bb42 707
d36057df
KL
708 if (command.equals(cmTile)) {
709 tileWindows();
710 return true;
711 }
712 if (command.equals(cmCascade)) {
713 cascadeWindows();
714 return true;
715 }
716 if (command.equals(cmCloseAll)) {
717 closeAllWindows();
718 return true;
719 }
0ee88b6d 720
d36057df
KL
721 if (command.equals(cmMenu)) {
722 if (!modalWindowActive() && (activeMenu == null)) {
723 if (menus.size() > 0) {
724 menus.get(0).setActive(true);
725 activeMenu = menus.get(0);
726 return true;
727 }
728 }
0ee88b6d 729 }
0ee88b6d 730
d36057df 731 return false;
0ee88b6d
KL
732 }
733
92453213 734 /**
d36057df
KL
735 * Method that TApplication subclasses can override to handle menu
736 * events.
92453213 737 *
d36057df
KL
738 * @param menu menu event
739 * @return if true, this event was consumed
92453213 740 */
d36057df 741 protected boolean onMenu(final TMenuEvent menu) {
92453213 742
d36057df
KL
743 // Default: handle MID_EXIT
744 if (menu.getId() == TMenu.MID_EXIT) {
745 if (messageBox(i18n.getString("exitDialogTitle"),
746 i18n.getString("exitDialogText"),
747 TMessageBox.Type.YESNO).getResult() == TMessageBox.Result.YES) {
748 exit();
749 }
750 return true;
751 }
92453213 752
d36057df
KL
753 if (menu.getId() == TMenu.MID_SHELL) {
754 openTerminal(0, 0, TWindow.RESIZABLE);
755 return true;
756 }
72fca17b 757
d36057df
KL
758 if (menu.getId() == TMenu.MID_TILE) {
759 tileWindows();
760 return true;
761 }
762 if (menu.getId() == TMenu.MID_CASCADE) {
763 cascadeWindows();
764 return true;
765 }
766 if (menu.getId() == TMenu.MID_CLOSE_ALL) {
767 closeAllWindows();
768 return true;
769 }
770 if (menu.getId() == TMenu.MID_ABOUT) {
771 showAboutDialog();
772 return true;
773 }
774 if (menu.getId() == TMenu.MID_REPAINT) {
775 doRepaint();
776 return true;
777 }
778 return false;
72fca17b
KL
779 }
780
781 /**
d36057df 782 * Method that TApplication subclasses can override to handle keystrokes.
72fca17b 783 *
d36057df
KL
784 * @param keypress keystroke event
785 * @return if true, this event was consumed
72fca17b 786 */
d36057df
KL
787 protected boolean onKeypress(final TKeypressEvent keypress) {
788 // Default: only menu shortcuts
72fca17b 789
d36057df
KL
790 // Process Alt-F, Alt-E, etc. menu shortcut keys
791 if (!keypress.getKey().isFnKey()
792 && keypress.getKey().isAlt()
793 && !keypress.getKey().isCtrl()
794 && (activeMenu == null)
795 && !modalWindowActive()
796 ) {
2ce6dab2 797
d36057df 798 assert (subMenus.size() == 0);
2ce6dab2 799
d36057df
KL
800 for (TMenu menu: menus) {
801 if (Character.toLowerCase(menu.getMnemonic().getShortcut())
802 == Character.toLowerCase(keypress.getKey().getChar())
803 ) {
804 activeMenu = menu;
805 menu.setActive(true);
806 return true;
807 }
808 }
809 }
810
811 return false;
812 }
2ce6dab2 813
eb29bbb5 814 /**
d36057df 815 * Process background events, and update the screen.
eb29bbb5 816 */
d36057df
KL
817 private void finishEventProcessing() {
818 if (debugThreads) {
819 System.err.printf(System.currentTimeMillis() + " " +
820 Thread.currentThread() + " finishEventProcessing()\n");
821 }
eb29bbb5 822
d36057df
KL
823 // Process timers and call doIdle()'s
824 doIdle();
825
826 // Update the screen
827 synchronized (getScreen()) {
828 drawAll();
829 }
830
831 if (debugThreads) {
832 System.err.printf(System.currentTimeMillis() + " " +
833 Thread.currentThread() + " finishEventProcessing() END\n");
eb29bbb5 834 }
eb29bbb5
KL
835 }
836
4328bb42 837 /**
d36057df
KL
838 * Peek at certain application-level events, add to eventQueue, and wake
839 * up the consuming Thread.
4328bb42 840 *
d36057df 841 * @param event the input event to consume
a4406f4e 842 */
d36057df 843 private void metaHandleEvent(final TInputEvent event) {
a4406f4e 844
d36057df
KL
845 if (debugEvents) {
846 System.err.printf(String.format("metaHandleEvents event: %s\n",
847 event)); System.err.flush();
a4406f4e 848 }
6985c572 849
d36057df
KL
850 if (quit) {
851 // Do no more processing if the application is already trying
852 // to exit.
853 return;
854 }
30bd4abd 855
d36057df 856 // Special application-wide events -------------------------------
c6940ed9 857
d36057df
KL
858 // Abort everything
859 if (event instanceof TCommandEvent) {
860 TCommandEvent command = (TCommandEvent) event;
861 if (command.getCmd().equals(cmAbort)) {
862 exit();
863 return;
be72cb5c
KL
864 }
865 }
4328bb42 866
d36057df
KL
867 synchronized (drainEventQueue) {
868 // Screen resize
869 if (event instanceof TResizeEvent) {
870 TResizeEvent resize = (TResizeEvent) event;
871 synchronized (getScreen()) {
872 getScreen().setDimensions(resize.getWidth(),
873 resize.getHeight());
874 desktopBottom = getScreen().getHeight() - 1;
875 mouseX = 0;
876 mouseY = 0;
877 oldMouseX = 0;
878 oldMouseY = 0;
879 }
880 if (desktop != null) {
881 desktop.setDimensions(0, 0, resize.getWidth(),
882 resize.getHeight() - 1);
883 }
2ce6dab2 884
d36057df
KL
885 // Change menu edges if needed.
886 recomputeMenuX();
be72cb5c 887
d36057df
KL
888 // We are dirty, redraw the screen.
889 doRepaint();
be72cb5c 890
d36057df
KL
891 /*
892 System.err.println("New screen: " + resize.getWidth() +
893 " x " + resize.getHeight());
894 */
895 return;
896 }
be72cb5c 897
d36057df
KL
898 // Put into the main queue
899 drainEventQueue.add(event);
be72cb5c
KL
900 }
901 }
902
4328bb42 903 /**
d36057df
KL
904 * Dispatch one event to the appropriate widget or application-level
905 * event handler. This is the primary event handler, it has the normal
906 * application-wide event handling.
bd8d51fa 907 *
d36057df
KL
908 * @param event the input event to consume
909 * @see #secondaryHandleEvent(TInputEvent event)
4328bb42 910 */
d36057df
KL
911 private void primaryHandleEvent(final TInputEvent event) {
912
913 if (debugEvents) {
914 System.err.printf("Handle event: %s\n", event);
7b5261bc 915 }
d36057df 916 TMouseEvent doubleClick = null;
4328bb42 917
d36057df 918 // Special application-wide events -----------------------------------
339652cc 919
d36057df
KL
920 // Peek at the mouse position
921 if (event instanceof TMouseEvent) {
922 TMouseEvent mouse = (TMouseEvent) event;
923 if ((mouseX != mouse.getX()) || (mouseY != mouse.getY())) {
924 oldMouseX = mouseX;
925 oldMouseY = mouseY;
926 mouseX = mouse.getX();
927 mouseY = mouse.getY();
928 } else {
929 if (mouse.getType() == TMouseEvent.Type.MOUSE_UP) {
930 if ((mouse.getTime().getTime() - lastMouseUpTime) <
931 doubleClickTime) {
99144c71 932
d36057df
KL
933 // This is a double-click.
934 doubleClick = new TMouseEvent(TMouseEvent.Type.
935 MOUSE_DOUBLE_CLICK,
936 mouse.getX(), mouse.getY(),
937 mouse.getAbsoluteX(), mouse.getAbsoluteY(),
938 mouse.isMouse1(), mouse.isMouse2(),
939 mouse.isMouse3(),
940 mouse.isMouseWheelUp(), mouse.isMouseWheelDown());
941
942 } else {
943 // The first click of a potential double-click.
944 lastMouseUpTime = mouse.getTime().getTime();
945 }
1d14ffab 946 }
bd8d51fa 947 }
7b5261bc 948
d36057df
KL
949 // See if we need to switch focus to another window or the menu
950 checkSwitchFocus((TMouseEvent) event);
99144c71
KL
951 }
952
d36057df
KL
953 // Handle menu events
954 if ((activeMenu != null) && !(event instanceof TCommandEvent)) {
955 TMenu menu = activeMenu;
7b5261bc 956
d36057df
KL
957 if (event instanceof TMouseEvent) {
958 TMouseEvent mouse = (TMouseEvent) event;
7b5261bc 959
d36057df
KL
960 while (subMenus.size() > 0) {
961 TMenu subMenu = subMenus.get(subMenus.size() - 1);
962 if (subMenu.mouseWouldHit(mouse)) {
963 break;
964 }
965 if ((mouse.getType() == TMouseEvent.Type.MOUSE_MOTION)
966 && (!mouse.isMouse1())
967 && (!mouse.isMouse2())
968 && (!mouse.isMouse3())
969 && (!mouse.isMouseWheelUp())
970 && (!mouse.isMouseWheelDown())
971 ) {
972 break;
973 }
974 // We navigated away from a sub-menu, so close it
975 closeSubMenu();
976 }
7b5261bc 977
d36057df
KL
978 // Convert the mouse relative x/y to menu coordinates
979 assert (mouse.getX() == mouse.getAbsoluteX());
980 assert (mouse.getY() == mouse.getAbsoluteY());
981 if (subMenus.size() > 0) {
982 menu = subMenus.get(subMenus.size() - 1);
983 }
984 mouse.setX(mouse.getX() - menu.getX());
985 mouse.setY(mouse.getY() - menu.getY());
7b5261bc 986 }
d36057df
KL
987 menu.handleEvent(event);
988 return;
7b5261bc 989 }
7b5261bc 990
d36057df
KL
991 if (event instanceof TKeypressEvent) {
992 TKeypressEvent keypress = (TKeypressEvent) event;
2ce6dab2 993
d36057df
KL
994 // See if this key matches an accelerator, and is not being
995 // shortcutted by the active window, and if so dispatch the menu
996 // event.
997 boolean windowWillShortcut = false;
998 if (activeWindow != null) {
999 assert (activeWindow.isShown());
1000 if (activeWindow.isShortcutKeypress(keypress.getKey())) {
1001 // We do not process this key, it will be passed to the
1002 // window instead.
1003 windowWillShortcut = true;
1004 }
1005 }
7b5261bc 1006
d36057df
KL
1007 if (!windowWillShortcut && !modalWindowActive()) {
1008 TKeypress keypressLowercase = keypress.getKey().toLowerCase();
1009 TMenuItem item = null;
1010 synchronized (accelerators) {
1011 item = accelerators.get(keypressLowercase);
1012 }
1013 if (item != null) {
1014 if (item.isEnabled()) {
1015 // Let the menu item dispatch
1016 item.dispatch();
1017 return;
339652cc 1018 }
be72cb5c 1019 }
d36057df
KL
1020
1021 // Handle the keypress
1022 if (onKeypress(keypress)) {
1023 return;
1024 }
7b5261bc
KL
1025 }
1026 }
1027
d36057df
KL
1028 if (event instanceof TCommandEvent) {
1029 if (onCommand((TCommandEvent) event)) {
1030 return;
1031 }
7b5261bc 1032 }
7b5261bc 1033
d36057df
KL
1034 if (event instanceof TMenuEvent) {
1035 if (onMenu((TMenuEvent) event)) {
1036 return;
1037 }
1d14ffab 1038 }
7b5261bc 1039
d36057df
KL
1040 // Dispatch events to the active window -------------------------------
1041 boolean dispatchToDesktop = true;
1042 TWindow window = activeWindow;
1043 if (window != null) {
1044 assert (window.isActive());
1045 assert (window.isShown());
1046 if (event instanceof TMouseEvent) {
1047 TMouseEvent mouse = (TMouseEvent) event;
1048 // Convert the mouse relative x/y to window coordinates
1049 assert (mouse.getX() == mouse.getAbsoluteX());
1050 assert (mouse.getY() == mouse.getAbsoluteY());
1051 mouse.setX(mouse.getX() - window.getX());
1052 mouse.setY(mouse.getY() - window.getY());
4328bb42 1053
d36057df
KL
1054 if (doubleClick != null) {
1055 doubleClick.setX(doubleClick.getX() - window.getX());
1056 doubleClick.setY(doubleClick.getY() - window.getY());
1057 }
2ce6dab2 1058
d36057df
KL
1059 if (window.mouseWouldHit(mouse)) {
1060 dispatchToDesktop = false;
1061 }
1062 } else if (event instanceof TKeypressEvent) {
1063 dispatchToDesktop = false;
1064 }
1065
1066 if (debugEvents) {
1067 System.err.printf("TApplication dispatch event: %s\n",
1068 event);
1069 }
1070 window.handleEvent(event);
1071 if (doubleClick != null) {
1072 window.handleEvent(doubleClick);
1073 }
1074 }
1075 if (dispatchToDesktop) {
1076 // This event is fair game for the desktop to process.
1077 if (desktop != null) {
1078 desktop.handleEvent(event);
1079 if (doubleClick != null) {
1080 desktop.handleEvent(doubleClick);
1081 }
1082 }
be72cb5c 1083 }
42873e30
KL
1084 }
1085
4328bb42 1086 /**
d36057df
KL
1087 * Dispatch one event to the appropriate widget or application-level
1088 * event handler. This is the secondary event handler used by certain
1089 * special dialogs (currently TMessageBox and TFileOpenBox).
1090 *
1091 * @param event the input event to consume
1092 * @see #primaryHandleEvent(TInputEvent event)
4328bb42 1093 */
d36057df
KL
1094 private void secondaryHandleEvent(final TInputEvent event) {
1095 TMouseEvent doubleClick = null;
2027327c 1096
d36057df
KL
1097 // Peek at the mouse position
1098 if (event instanceof TMouseEvent) {
1099 TMouseEvent mouse = (TMouseEvent) event;
1100 if ((mouseX != mouse.getX()) || (mouseY != mouse.getY())) {
1101 oldMouseX = mouseX;
1102 oldMouseY = mouseY;
1103 mouseX = mouse.getX();
1104 mouseY = mouse.getY();
1105 } else {
1106 if (mouse.getType() == TMouseEvent.Type.MOUSE_UP) {
1107 if ((mouse.getTime().getTime() - lastMouseUpTime) <
1108 doubleClickTime) {
b2d49e0f 1109
d36057df
KL
1110 // This is a double-click.
1111 doubleClick = new TMouseEvent(TMouseEvent.Type.
1112 MOUSE_DOUBLE_CLICK,
1113 mouse.getX(), mouse.getY(),
1114 mouse.getAbsoluteX(), mouse.getAbsoluteY(),
1115 mouse.isMouse1(), mouse.isMouse2(),
1116 mouse.isMouse3(),
1117 mouse.isMouseWheelUp(), mouse.isMouseWheelDown());
be72cb5c 1118
d36057df
KL
1119 } else {
1120 // The first click of a potential double-click.
1121 lastMouseUpTime = mouse.getTime().getTime();
6358f6e5 1122 }
be72cb5c 1123 }
d36057df
KL
1124 }
1125 }
be72cb5c 1126
d36057df
KL
1127 secondaryEventReceiver.handleEvent(event);
1128 if (doubleClick != null) {
1129 secondaryEventReceiver.handleEvent(doubleClick);
1130 }
1131 }
be72cb5c 1132
d36057df
KL
1133 /**
1134 * Enable a widget to override the primary event thread.
1135 *
1136 * @param widget widget that will receive events
1137 */
1138 public final void enableSecondaryEventReceiver(final TWidget widget) {
1139 if (debugThreads) {
1140 System.err.println(System.currentTimeMillis() +
1141 " enableSecondaryEventReceiver()");
1142 }
be72cb5c 1143
d36057df
KL
1144 assert (secondaryEventReceiver == null);
1145 assert (secondaryEventHandler == null);
1146 assert ((widget instanceof TMessageBox)
1147 || (widget instanceof TFileOpenBox));
1148 secondaryEventReceiver = widget;
1149 secondaryEventHandler = new WidgetEventHandler(this, false);
1150
1151 (new Thread(secondaryEventHandler)).start();
1152 }
1153
1154 /**
1155 * Yield to the secondary thread.
1156 */
1157 public final void yield() {
1158 assert (secondaryEventReceiver != null);
1159
1160 while (secondaryEventReceiver != null) {
1161 synchronized (primaryEventHandler) {
1162 try {
1163 primaryEventHandler.wait();
1164 } catch (InterruptedException e) {
1165 // SQUASH
8e688b92 1166 }
d36057df
KL
1167 }
1168 }
1169 }
7b5261bc 1170
d36057df
KL
1171 /**
1172 * Do stuff when there is no user input.
1173 */
1174 private void doIdle() {
1175 if (debugThreads) {
1176 System.err.printf(System.currentTimeMillis() + " " +
1177 Thread.currentThread() + " doIdle()\n");
1178 }
ef368bd0 1179
d36057df 1180 synchronized (timers) {
8e688b92 1181
d36057df
KL
1182 if (debugThreads) {
1183 System.err.printf(System.currentTimeMillis() + " " +
1184 Thread.currentThread() + " doIdle() 2\n");
1185 }
1186
1187 // Run any timers that have timed out
1188 Date now = new Date();
1189 List<TTimer> keepTimers = new LinkedList<TTimer>();
1190 for (TTimer timer: timers) {
1191 if (timer.getNextTick().getTime() <= now.getTime()) {
1192 // Something might change, so repaint the screen.
1193 repaint = true;
1194 timer.tick();
1195 if (timer.recurring) {
1196 keepTimers.add(timer);
be72cb5c 1197 }
d36057df
KL
1198 } else {
1199 keepTimers.add(timer);
8e688b92 1200 }
8e688b92 1201 }
d36057df
KL
1202 timers = keepTimers;
1203 }
7b5261bc 1204
d36057df
KL
1205 // Call onIdle's
1206 for (TWindow window: windows) {
1207 window.onIdle();
1208 }
1209 if (desktop != null) {
1210 desktop.onIdle();
1211 }
1212 }
92554d64 1213
d36057df
KL
1214 /**
1215 * Wake the sleeping active event handler.
1216 */
1217 private void wakeEventHandler() {
1218 if (!started) {
1219 return;
1220 }
92554d64 1221
92554d64
KL
1222 if (secondaryEventHandler != null) {
1223 synchronized (secondaryEventHandler) {
1224 secondaryEventHandler.notify();
1225 }
d36057df
KL
1226 } else {
1227 assert (primaryEventHandler != null);
92554d64
KL
1228 synchronized (primaryEventHandler) {
1229 primaryEventHandler.notify();
1230 }
7b5261bc 1231 }
d36057df 1232 }
7b5261bc 1233
d36057df
KL
1234 // ------------------------------------------------------------------------
1235 // TApplication -----------------------------------------------------------
1236 // ------------------------------------------------------------------------
92554d64 1237
d36057df
KL
1238 /**
1239 * Get the Backend.
1240 *
1241 * @return the Backend
1242 */
1243 public final Backend getBackend() {
1244 return backend;
4328bb42
KL
1245 }
1246
1247 /**
d36057df 1248 * Get the Screen.
4328bb42 1249 *
d36057df 1250 * @return the Screen
4328bb42 1251 */
d36057df
KL
1252 public final Screen getScreen() {
1253 if (backend instanceof TWindowBackend) {
1254 // We are being rendered to a TWindow. We can't use its
1255 // getScreen() method because that is how it is rendering to a
1256 // hardware backend somewhere. Instead use its getOtherScreen()
1257 // method.
1258 return ((TWindowBackend) backend).getOtherScreen();
1259 } else {
1260 return backend.getScreen();
8e688b92 1261 }
d36057df 1262 }
7b5261bc 1263
d36057df
KL
1264 /**
1265 * Get the color theme.
1266 *
1267 * @return the theme
1268 */
1269 public final ColorTheme getTheme() {
1270 return theme;
1271 }
7b5261bc 1272
d36057df
KL
1273 /**
1274 * Repaint the screen on the next update.
1275 */
1276 public void doRepaint() {
1277 repaint = true;
1278 wakeEventHandler();
1279 }
68c5cd6b 1280
d36057df
KL
1281 /**
1282 * Get Y coordinate of the top edge of the desktop.
1283 *
1284 * @return Y coordinate of the top edge of the desktop
1285 */
1286 public final int getDesktopTop() {
1287 return desktopTop;
1288 }
68c5cd6b 1289
d36057df
KL
1290 /**
1291 * Get Y coordinate of the bottom edge of the desktop.
1292 *
1293 * @return Y coordinate of the bottom edge of the desktop
1294 */
1295 public final int getDesktopBottom() {
1296 return desktopBottom;
1297 }
7b5261bc 1298
d36057df
KL
1299 /**
1300 * Set the TDesktop instance.
1301 *
1302 * @param desktop a TDesktop instance, or null to remove the one that is
1303 * set
1304 */
1305 public final void setDesktop(final TDesktop desktop) {
1306 if (this.desktop != null) {
1307 this.desktop.onClose();
be72cb5c 1308 }
d36057df 1309 this.desktop = desktop;
4328bb42
KL
1310 }
1311
a06459bd 1312 /**
d36057df 1313 * Get the TDesktop instance.
a06459bd 1314 *
d36057df 1315 * @return the desktop, or null if it is not set
a06459bd 1316 */
d36057df
KL
1317 public final TDesktop getDesktop() {
1318 return desktop;
1319 }
fca67db0 1320
d36057df
KL
1321 /**
1322 * Get the current active window.
1323 *
1324 * @return the active window, or null if it is not set
1325 */
1326 public final TWindow getActiveWindow() {
1327 return activeWindow;
1328 }
fca67db0 1329
d36057df
KL
1330 /**
1331 * Get a (shallow) copy of the window list.
1332 *
1333 * @return a copy of the list of windows for this application
1334 */
1335 public final List<TWindow> getAllWindows() {
1336 List<TWindow> result = new LinkedList<TWindow>();
1337 result.addAll(windows);
1338 return result;
1339 }
b6faeac0 1340
d36057df
KL
1341 /**
1342 * Get focusFollowsMouse flag.
1343 *
1344 * @return true if focus follows mouse: windows automatically raised if
1345 * the mouse passes over them
1346 */
1347 public boolean getFocusFollowsMouse() {
1348 return focusFollowsMouse;
1349 }
b6faeac0 1350
d36057df
KL
1351 /**
1352 * Set focusFollowsMouse flag.
1353 *
1354 * @param focusFollowsMouse if true, focus follows mouse: windows
1355 * automatically raised if the mouse passes over them
1356 */
1357 public void setFocusFollowsMouse(final boolean focusFollowsMouse) {
1358 this.focusFollowsMouse = focusFollowsMouse;
1359 }
e8a11f98 1360
d36057df
KL
1361 /**
1362 * Display the about dialog.
1363 */
1364 protected void showAboutDialog() {
1365 messageBox(i18n.getString("aboutDialogTitle"),
1366 MessageFormat.format(i18n.getString("aboutDialogText"),
1367 this.getClass().getPackage().getImplementationVersion()),
1368 TMessageBox.Type.OK);
1369 }
fca67db0 1370
d36057df
KL
1371 // ------------------------------------------------------------------------
1372 // Screen refresh loop ----------------------------------------------------
1373 // ------------------------------------------------------------------------
fca67db0 1374
d36057df
KL
1375 /**
1376 * Invert the cell color at a position. This is used to track the mouse.
1377 *
1378 * @param x column position
1379 * @param y row position
1380 */
1381 private void invertCell(final int x, final int y) {
1382 if (debugThreads) {
1383 System.err.printf("%d %s invertCell() %d %d\n",
1384 System.currentTimeMillis(), Thread.currentThread(), x, y);
1385 }
1386 CellAttributes attr = getScreen().getAttrXY(x, y);
1387 attr.setForeColor(attr.getForeColor().invert());
1388 attr.setBackColor(attr.getBackColor().invert());
1389 getScreen().putAttrXY(x, y, attr, false);
1390 }
fca67db0 1391
d36057df
KL
1392 /**
1393 * Draw everything.
1394 */
1395 private void drawAll() {
1396 boolean menuIsActive = false;
fca67db0 1397
d36057df
KL
1398 if (debugThreads) {
1399 System.err.printf("%d %s drawAll() enter\n",
1400 System.currentTimeMillis(), Thread.currentThread());
fca67db0 1401 }
a06459bd 1402
d36057df
KL
1403 if (!repaint) {
1404 if (debugThreads) {
1405 System.err.printf("%d %s drawAll() !repaint\n",
1406 System.currentTimeMillis(), Thread.currentThread());
e826b451 1407 }
d36057df
KL
1408 synchronized (getScreen()) {
1409 if ((oldMouseX != mouseX) || (oldMouseY != mouseY)) {
1410 // The only thing that has happened is the mouse moved.
1411 // Clear the old position and draw the new position.
1412 invertCell(oldMouseX, oldMouseY);
1413 invertCell(mouseX, mouseY);
1414 oldMouseX = mouseX;
1415 oldMouseY = mouseY;
fca67db0 1416 }
d36057df
KL
1417 if (getScreen().isDirty()) {
1418 backend.flushScreen();
2ce6dab2 1419 }
fca67db0
KL
1420 return;
1421 }
1422 }
1423
d36057df
KL
1424 if (debugThreads) {
1425 System.err.printf("%d %s drawAll() REDRAW\n",
1426 System.currentTimeMillis(), Thread.currentThread());
fca67db0
KL
1427 }
1428
d36057df
KL
1429 // If true, the cursor is not visible
1430 boolean cursor = false;
92453213 1431
d36057df
KL
1432 // Start with a clean screen
1433 getScreen().clear();
b6faeac0 1434
d36057df
KL
1435 // Draw the desktop
1436 if (desktop != null) {
1437 desktop.drawChildren();
1438 }
0ee88b6d 1439
d36057df
KL
1440 // Draw each window in reverse Z order
1441 List<TWindow> sorted = new LinkedList<TWindow>(windows);
1442 Collections.sort(sorted);
1443 TWindow topLevel = null;
1444 if (sorted.size() > 0) {
1445 topLevel = sorted.get(0);
1446 }
1447 Collections.reverse(sorted);
1448 for (TWindow window: sorted) {
1449 if (window.isShown()) {
1450 window.drawChildren();
b6faeac0 1451 }
fca67db0 1452 }
d36057df
KL
1453
1454 // Draw the blank menubar line - reset the screen clipping first so
1455 // it won't trim it out.
1456 getScreen().resetClipping();
1457 getScreen().hLineXY(0, 0, getScreen().getWidth(), ' ',
1458 theme.getColor("tmenu"));
1459 // Now draw the menus.
1460 int x = 1;
1461 for (TMenu menu: menus) {
1462 CellAttributes menuColor;
1463 CellAttributes menuMnemonicColor;
1464 if (menu.isActive()) {
1465 menuIsActive = true;
1466 menuColor = theme.getColor("tmenu.highlighted");
1467 menuMnemonicColor = theme.getColor("tmenu.mnemonic.highlighted");
1468 topLevel = menu;
1469 } else {
1470 menuColor = theme.getColor("tmenu");
1471 menuMnemonicColor = theme.getColor("tmenu.mnemonic");
1472 }
1473 // Draw the menu title
1474 getScreen().hLineXY(x, 0, menu.getTitle().length() + 2, ' ',
1475 menuColor);
1476 getScreen().putStringXY(x + 1, 0, menu.getTitle(), menuColor);
1477 // Draw the highlight character
1478 getScreen().putCharXY(x + 1 + menu.getMnemonic().getShortcutIdx(),
1479 0, menu.getMnemonic().getShortcut(), menuMnemonicColor);
1480
1481 if (menu.isActive()) {
1482 menu.drawChildren();
1483 // Reset the screen clipping so we can draw the next title.
1484 getScreen().resetClipping();
0ee88b6d 1485 }
d36057df 1486 x += menu.getTitle().length() + 2;
0ee88b6d 1487 }
0ee88b6d 1488
d36057df
KL
1489 for (TMenu menu: subMenus) {
1490 // Reset the screen clipping so we can draw the next sub-menu.
1491 getScreen().resetClipping();
1492 menu.drawChildren();
1493 }
b6faeac0 1494
d36057df
KL
1495 // Draw the status bar of the top-level window
1496 TStatusBar statusBar = null;
1497 if (topLevel != null) {
1498 statusBar = topLevel.getStatusBar();
1499 }
1500 if (statusBar != null) {
1501 getScreen().resetClipping();
1502 statusBar.setWidth(getScreen().getWidth());
1503 statusBar.setY(getScreen().getHeight() - topLevel.getY());
1504 statusBar.draw();
1505 } else {
1506 CellAttributes barColor = new CellAttributes();
1507 barColor.setTo(getTheme().getColor("tstatusbar.text"));
1508 getScreen().hLineXY(0, desktopBottom, getScreen().getWidth(), ' ',
1509 barColor);
1510 }
b6faeac0 1511
d36057df
KL
1512 // Draw the mouse pointer
1513 invertCell(mouseX, mouseY);
1514 oldMouseX = mouseX;
1515 oldMouseY = mouseY;
b6faeac0 1516
d36057df
KL
1517 // Place the cursor if it is visible
1518 if (!menuIsActive) {
1519 TWidget activeWidget = null;
1520 if (sorted.size() > 0) {
1521 activeWidget = sorted.get(sorted.size() - 1).getActiveChild();
1522 if (activeWidget.isCursorVisible()) {
1523 if ((activeWidget.getCursorAbsoluteY() < desktopBottom)
1524 && (activeWidget.getCursorAbsoluteY() > desktopTop)
1525 ) {
1526 getScreen().putCursor(true,
1527 activeWidget.getCursorAbsoluteX(),
1528 activeWidget.getCursorAbsoluteY());
1529 cursor = true;
b6faeac0 1530 } else {
d36057df
KL
1531 getScreen().putCursor(false,
1532 activeWidget.getCursorAbsoluteX(),
1533 activeWidget.getCursorAbsoluteY());
1534 cursor = false;
b6faeac0
KL
1535 }
1536 }
e8a11f98
KL
1537 }
1538 }
1539
d36057df
KL
1540 // Kill the cursor
1541 if (!cursor) {
1542 getScreen().hideCursor();
b6faeac0 1543 }
c6940ed9 1544
d36057df
KL
1545 // Flush the screen contents
1546 if (getScreen().isDirty()) {
1547 backend.flushScreen();
be72cb5c
KL
1548 }
1549
d36057df 1550 repaint = false;
a06459bd
KL
1551 }
1552
4328bb42 1553 /**
d36057df 1554 * Force this application to exit.
4328bb42 1555 */
d36057df
KL
1556 public void exit() {
1557 quit = true;
1558 synchronized (this) {
1559 this.notify();
92453213 1560 }
4328bb42 1561 }
7d4115a5 1562
2ce6dab2
KL
1563 // ------------------------------------------------------------------------
1564 // TWindow management -----------------------------------------------------
1565 // ------------------------------------------------------------------------
4328bb42 1566
92453213
KL
1567 /**
1568 * Return the total number of windows.
1569 *
1570 * @return the total number of windows
1571 */
1572 public final int windowCount() {
1573 return windows.size();
1574 }
1575
1576 /**
8c236a98 1577 * Return the number of windows that are showing.
92453213 1578 *
8c236a98 1579 * @return the number of windows that are showing on screen
92453213
KL
1580 */
1581 public final int shownWindowCount() {
1582 int n = 0;
1583 for (TWindow w: windows) {
1584 if (w.isShown()) {
1585 n++;
1586 }
1587 }
1588 return n;
1589 }
1590
8c236a98
KL
1591 /**
1592 * Return the number of windows that are hidden.
1593 *
1594 * @return the number of windows that are hidden
1595 */
1596 public final int hiddenWindowCount() {
1597 int n = 0;
1598 for (TWindow w: windows) {
1599 if (w.isHidden()) {
1600 n++;
1601 }
1602 }
1603 return n;
1604 }
1605
92453213
KL
1606 /**
1607 * Check if a window instance is in this application's window list.
1608 *
1609 * @param window window to look for
1610 * @return true if this window is in the list
1611 */
1612 public final boolean hasWindow(final TWindow window) {
1613 if (windows.size() == 0) {
1614 return false;
1615 }
1616 for (TWindow w: windows) {
1617 if (w == window) {
8c236a98 1618 assert (window.getApplication() == this);
92453213
KL
1619 return true;
1620 }
1621 }
1622 return false;
1623 }
1624
1625 /**
1626 * Activate a window: bring it to the top and have it receive events.
1627 *
1628 * @param window the window to become the new active window
1629 */
1630 public void activateWindow(final TWindow window) {
1631 if (hasWindow(window) == false) {
1632 /*
1633 * Someone has a handle to a window I don't have. Ignore this
1634 * request.
1635 */
1636 return;
1637 }
1638
fe0770f9
KL
1639 // Whatever window might be moving/dragging, stop it now.
1640 for (TWindow w: windows) {
1641 if (w.inMovements()) {
1642 w.stopMovements();
1643 }
1644 }
1645
92453213
KL
1646 assert (windows.size() > 0);
1647
1648 if (window.isHidden()) {
1649 // Unhiding will also activate.
1650 showWindow(window);
1651 return;
1652 }
1653 assert (window.isShown());
1654
1655 if (windows.size() == 1) {
1656 assert (window == windows.get(0));
1657 if (activeWindow == null) {
1658 activeWindow = window;
1659 window.setZ(0);
1660 activeWindow.setActive(true);
1661 activeWindow.onFocus();
1662 }
1663
1664 assert (window.isActive());
1665 assert (activeWindow == window);
1666 return;
1667 }
1668
1669 if (activeWindow == window) {
1670 assert (window.isActive());
1671
1672 // Window is already active, do nothing.
1673 return;
1674 }
1675
1676 assert (!window.isActive());
1677 if (activeWindow != null) {
1678 assert (activeWindow.getZ() == 0);
1679
92453213
KL
1680 activeWindow.setActive(false);
1681 activeWindow.setZ(window.getZ());
499fdccf
KL
1682
1683 // Unset activeWindow now before unfocus, so that a window
1684 // lifecycle change inside onUnfocus() doesn't call
1685 // switchWindow() and lead to a stack overflow.
1686 TWindow oldActiveWindow = activeWindow;
1687 activeWindow = null;
1688 oldActiveWindow.onUnfocus();
92453213
KL
1689 }
1690 activeWindow = window;
1691 activeWindow.setZ(0);
1692 activeWindow.setActive(true);
1693 activeWindow.onFocus();
1694 return;
1695 }
1696
1697 /**
1698 * Hide a window.
1699 *
1700 * @param window the window to hide
1701 */
1702 public void hideWindow(final TWindow window) {
1703 if (hasWindow(window) == false) {
1704 /*
1705 * Someone has a handle to a window I don't have. Ignore this
1706 * request.
1707 */
1708 return;
1709 }
1710
fe0770f9
KL
1711 // Whatever window might be moving/dragging, stop it now.
1712 for (TWindow w: windows) {
1713 if (w.inMovements()) {
1714 w.stopMovements();
1715 }
1716 }
1717
92453213
KL
1718 assert (windows.size() > 0);
1719
1720 if (!window.hidden) {
1721 if (window == activeWindow) {
1722 if (shownWindowCount() > 1) {
1723 switchWindow(true);
1724 } else {
1725 activeWindow = null;
1726 window.setActive(false);
1727 window.onUnfocus();
1728 }
1729 }
1730 window.hidden = true;
1731 window.onHide();
1732 }
1733 }
1734
1735 /**
1736 * Show a window.
1737 *
1738 * @param window the window to show
1739 */
1740 public void showWindow(final TWindow window) {
1741 if (hasWindow(window) == false) {
1742 /*
1743 * Someone has a handle to a window I don't have. Ignore this
1744 * request.
1745 */
1746 return;
1747 }
1748
fe0770f9
KL
1749 // Whatever window might be moving/dragging, stop it now.
1750 for (TWindow w: windows) {
1751 if (w.inMovements()) {
1752 w.stopMovements();
1753 }
1754 }
1755
92453213
KL
1756 assert (windows.size() > 0);
1757
1758 if (window.hidden) {
1759 window.hidden = false;
1760 window.onShow();
1761 activateWindow(window);
1762 }
1763 }
1764
48e27807
KL
1765 /**
1766 * Close window. Note that the window's destructor is NOT called by this
1767 * method, instead the GC is assumed to do the cleanup.
1768 *
1769 * @param window the window to remove
1770 */
1771 public final void closeWindow(final TWindow window) {
92453213
KL
1772 if (hasWindow(window) == false) {
1773 /*
1774 * Someone has a handle to a window I don't have. Ignore this
1775 * request.
1776 */
1777 return;
1778 }
1779
bb35d919 1780 synchronized (windows) {
fe0770f9
KL
1781 // Whatever window might be moving/dragging, stop it now.
1782 for (TWindow w: windows) {
1783 if (w.inMovements()) {
1784 w.stopMovements();
1785 }
1786 }
1787
bb35d919
KL
1788 int z = window.getZ();
1789 window.setZ(-1);
efb7af1f 1790 window.onUnfocus();
bb35d919
KL
1791 Collections.sort(windows);
1792 windows.remove(0);
92453213 1793 activeWindow = null;
bb35d919 1794 for (TWindow w: windows) {
3eacc236
KL
1795
1796 // Do not activate a hidden window.
1797 if (w.isHidden()) {
1798 continue;
1799 }
1800
bb35d919
KL
1801 if (w.getZ() > z) {
1802 w.setZ(w.getZ() - 1);
1803 if (w.getZ() == 0) {
1804 w.setActive(true);
efb7af1f 1805 w.onFocus();
bb35d919
KL
1806 assert (activeWindow == null);
1807 activeWindow = w;
1808 } else {
efb7af1f
KL
1809 if (w.isActive()) {
1810 w.setActive(false);
1811 w.onUnfocus();
1812 }
bb35d919 1813 }
48e27807
KL
1814 }
1815 }
1816 }
1817
1818 // Perform window cleanup
1819 window.onClose();
1820
48e27807 1821 // Check if we are closing a TMessageBox or similar
c6940ed9
KL
1822 if (secondaryEventReceiver != null) {
1823 assert (secondaryEventHandler != null);
48e27807
KL
1824
1825 // Do not send events to the secondaryEventReceiver anymore, the
1826 // window is closed.
1827 secondaryEventReceiver = null;
1828
92554d64
KL
1829 // Wake the secondary thread, it will wake the primary as it
1830 // exits.
1831 synchronized (secondaryEventHandler) {
1832 secondaryEventHandler.notify();
48e27807
KL
1833 }
1834 }
92453213
KL
1835
1836 // Permit desktop to be active if it is the only thing left.
1837 if (desktop != null) {
1838 if (windows.size() == 0) {
1839 desktop.setActive(true);
1840 }
1841 }
48e27807
KL
1842 }
1843
1844 /**
1845 * Switch to the next window.
1846 *
1847 * @param forward if true, then switch to the next window in the list,
1848 * otherwise switch to the previous window in the list
1849 */
1850 public final void switchWindow(final boolean forward) {
8c236a98
KL
1851 // Only switch if there are multiple visible windows
1852 if (shownWindowCount() < 2) {
48e27807
KL
1853 return;
1854 }
92453213 1855 assert (activeWindow != null);
48e27807 1856
bb35d919 1857 synchronized (windows) {
fe0770f9
KL
1858 // Whatever window might be moving/dragging, stop it now.
1859 for (TWindow w: windows) {
1860 if (w.inMovements()) {
1861 w.stopMovements();
1862 }
1863 }
bb35d919
KL
1864
1865 // Swap z/active between active window and the next in the list
1866 int activeWindowI = -1;
1867 for (int i = 0; i < windows.size(); i++) {
92453213
KL
1868 if (windows.get(i) == activeWindow) {
1869 assert (activeWindow.isActive());
bb35d919
KL
1870 activeWindowI = i;
1871 break;
92453213
KL
1872 } else {
1873 assert (!windows.get(0).isActive());
bb35d919 1874 }
48e27807 1875 }
bb35d919 1876 assert (activeWindowI >= 0);
48e27807 1877
bb35d919 1878 // Do not switch if a window is modal
92453213 1879 if (activeWindow.isModal()) {
bb35d919
KL
1880 return;
1881 }
48e27807 1882
8c236a98
KL
1883 int nextWindowI = activeWindowI;
1884 for (;;) {
1885 if (forward) {
1886 nextWindowI++;
1887 nextWindowI %= windows.size();
bb35d919 1888 } else {
8c236a98
KL
1889 nextWindowI--;
1890 if (nextWindowI < 0) {
1891 nextWindowI = windows.size() - 1;
1892 }
bb35d919 1893 }
bb35d919 1894
8c236a98
KL
1895 if (windows.get(nextWindowI).isShown()) {
1896 activateWindow(windows.get(nextWindowI));
1897 break;
1898 }
1899 }
bb35d919 1900 } // synchronized (windows)
48e27807 1901
48e27807
KL
1902 }
1903
1904 /**
1905 * Add a window to my window list and make it active.
1906 *
1907 * @param window new window to add
1908 */
d36057df 1909 public final void addWindowToApplication(final TWindow window) {
a7986f7b
KL
1910
1911 // Do not add menu windows to the window list.
1912 if (window instanceof TMenu) {
1913 return;
1914 }
1915
0ee88b6d
KL
1916 // Do not add the desktop to the window list.
1917 if (window instanceof TDesktop) {
1918 return;
1919 }
1920
bb35d919 1921 synchronized (windows) {
fe0770f9
KL
1922 // Whatever window might be moving/dragging, stop it now.
1923 for (TWindow w: windows) {
1924 if (w.inMovements()) {
1925 w.stopMovements();
1926 }
1927 }
1928
2ce6dab2
KL
1929 // Do not allow a modal window to spawn a non-modal window. If a
1930 // modal window is active, then this window will become modal
1931 // too.
1932 if (modalWindowActive()) {
1933 window.flags |= TWindow.MODAL;
a7986f7b 1934 window.flags |= TWindow.CENTERED;
92453213 1935 window.hidden = false;
bb35d919 1936 }
92453213
KL
1937 if (window.isShown()) {
1938 for (TWindow w: windows) {
1939 if (w.isActive()) {
1940 w.setActive(false);
1941 w.onUnfocus();
1942 }
1943 w.setZ(w.getZ() + 1);
efb7af1f 1944 }
bb35d919
KL
1945 }
1946 windows.add(window);
92453213
KL
1947 if (window.isShown()) {
1948 activeWindow = window;
1949 activeWindow.setZ(0);
1950 activeWindow.setActive(true);
1951 activeWindow.onFocus();
1952 }
a7986f7b
KL
1953
1954 if (((window.flags & TWindow.CENTERED) == 0)
d36057df
KL
1955 && ((window.flags & TWindow.ABSOLUTEXY) == 0)
1956 && (smartWindowPlacement == true)
1957 ) {
a7986f7b
KL
1958
1959 doSmartPlacement(window);
1960 }
48e27807 1961 }
92453213
KL
1962
1963 // Desktop cannot be active over any other window.
1964 if (desktop != null) {
1965 desktop.setActive(false);
1966 }
48e27807
KL
1967 }
1968
fca67db0
KL
1969 /**
1970 * Check if there is a system-modal window on top.
1971 *
1972 * @return true if the active window is modal
1973 */
1974 private boolean modalWindowActive() {
1975 if (windows.size() == 0) {
1976 return false;
1977 }
2ce6dab2
KL
1978
1979 for (TWindow w: windows) {
1980 if (w.isModal()) {
1981 return true;
1982 }
1983 }
1984
1985 return false;
1986 }
1987
1988 /**
1989 * Close all open windows.
1990 */
1991 private void closeAllWindows() {
1992 // Don't do anything if we are in the menu
1993 if (activeMenu != null) {
1994 return;
1995 }
1996 while (windows.size() > 0) {
1997 closeWindow(windows.get(0));
1998 }
fca67db0
KL
1999 }
2000
2ce6dab2
KL
2001 /**
2002 * Re-layout the open windows as non-overlapping tiles. This produces
2003 * almost the same results as Turbo Pascal 7.0's IDE.
2004 */
2005 private void tileWindows() {
2006 synchronized (windows) {
2007 // Don't do anything if we are in the menu
2008 if (activeMenu != null) {
2009 return;
2010 }
2011 int z = windows.size();
2012 if (z == 0) {
2013 return;
2014 }
2015 int a = 0;
2016 int b = 0;
2017 a = (int)(Math.sqrt(z));
2018 int c = 0;
2019 while (c < a) {
2020 b = (z - c) / a;
2021 if (((a * b) + c) == z) {
2022 break;
2023 }
2024 c++;
2025 }
2026 assert (a > 0);
2027 assert (b > 0);
2028 assert (c < a);
2029 int newWidth = (getScreen().getWidth() / a);
2030 int newHeight1 = ((getScreen().getHeight() - 1) / b);
2031 int newHeight2 = ((getScreen().getHeight() - 1) / (b + c));
2032
2033 List<TWindow> sorted = new LinkedList<TWindow>(windows);
2034 Collections.sort(sorted);
2035 Collections.reverse(sorted);
2036 for (int i = 0; i < sorted.size(); i++) {
2037 int logicalX = i / b;
2038 int logicalY = i % b;
2039 if (i >= ((a - 1) * b)) {
2040 logicalX = a - 1;
2041 logicalY = i - ((a - 1) * b);
2042 }
2043
2044 TWindow w = sorted.get(i);
2045 w.setX(logicalX * newWidth);
2046 w.setWidth(newWidth);
2047 if (i >= ((a - 1) * b)) {
2048 w.setY((logicalY * newHeight2) + 1);
2049 w.setHeight(newHeight2);
2050 } else {
2051 w.setY((logicalY * newHeight1) + 1);
2052 w.setHeight(newHeight1);
2053 }
2054 }
2055 }
2056 }
2057
2058 /**
2059 * Re-layout the open windows as overlapping cascaded windows.
2060 */
2061 private void cascadeWindows() {
2062 synchronized (windows) {
2063 // Don't do anything if we are in the menu
2064 if (activeMenu != null) {
2065 return;
2066 }
2067 int x = 0;
2068 int y = 1;
2069 List<TWindow> sorted = new LinkedList<TWindow>(windows);
2070 Collections.sort(sorted);
2071 Collections.reverse(sorted);
2072 for (TWindow window: sorted) {
2073 window.setX(x);
2074 window.setY(y);
2075 x++;
2076 y++;
2077 if (x > getScreen().getWidth()) {
2078 x = 0;
2079 }
2080 if (y >= getScreen().getHeight()) {
2081 y = 1;
2082 }
2083 }
2084 }
2085 }
2086
a7986f7b
KL
2087 /**
2088 * Place a window to minimize its overlap with other windows.
2089 *
2090 * @param window the window to place
2091 */
2092 public final void doSmartPlacement(final TWindow window) {
2093 // This is a pretty dumb algorithm, but seems to work. The hardest
2094 // part is computing these "overlap" values seeking a minimum average
2095 // overlap.
2096 int xMin = 0;
2097 int yMin = desktopTop;
2098 int xMax = getScreen().getWidth() - window.getWidth() + 1;
2099 int yMax = desktopBottom - window.getHeight() + 1;
2100 if (xMax < xMin) {
2101 xMax = xMin;
2102 }
2103 if (yMax < yMin) {
2104 yMax = yMin;
2105 }
2106
2107 if ((xMin == xMax) && (yMin == yMax)) {
2108 // No work to do, bail out.
2109 return;
2110 }
2111
2112 // Compute the overlap matrix without the new window.
2113 int width = getScreen().getWidth();
2114 int height = getScreen().getHeight();
2115 int overlapMatrix[][] = new int[width][height];
2116 for (TWindow w: windows) {
2117 if (window == w) {
2118 continue;
2119 }
2120 for (int x = w.getX(); x < w.getX() + w.getWidth(); x++) {
9ff1c0e3
KL
2121 if (x < 0) {
2122 continue;
2123 }
8c236a98 2124 if (x >= width) {
a7986f7b
KL
2125 continue;
2126 }
2127 for (int y = w.getY(); y < w.getY() + w.getHeight(); y++) {
9ff1c0e3
KL
2128 if (y < 0) {
2129 continue;
2130 }
8c236a98 2131 if (y >= height) {
a7986f7b
KL
2132 continue;
2133 }
2134 overlapMatrix[x][y]++;
2135 }
2136 }
2137 }
2138
2139 long oldOverlapTotal = 0;
2140 long oldOverlapN = 0;
2141 for (int x = 0; x < width; x++) {
2142 for (int y = 0; y < height; y++) {
2143 oldOverlapTotal += overlapMatrix[x][y];
2144 if (overlapMatrix[x][y] > 0) {
2145 oldOverlapN++;
2146 }
2147 }
2148 }
2149
2150
2151 double oldOverlapAvg = (double) oldOverlapTotal / (double) oldOverlapN;
2152 boolean first = true;
2153 int windowX = window.getX();
2154 int windowY = window.getY();
2155
2156 // For each possible (x, y) position for the new window, compute a
2157 // new overlap matrix.
2158 for (int x = xMin; x < xMax; x++) {
2159 for (int y = yMin; y < yMax; y++) {
2160
2161 // Start with the matrix minus this window.
2162 int newMatrix[][] = new int[width][height];
2163 for (int mx = 0; mx < width; mx++) {
2164 for (int my = 0; my < height; my++) {
2165 newMatrix[mx][my] = overlapMatrix[mx][my];
2166 }
2167 }
2168
2169 // Add this window's values to the new overlap matrix.
2170 long newOverlapTotal = 0;
2171 long newOverlapN = 0;
2172 // Start by adding each new cell.
2173 for (int wx = x; wx < x + window.getWidth(); wx++) {
8c236a98 2174 if (wx >= width) {
a7986f7b
KL
2175 continue;
2176 }
2177 for (int wy = y; wy < y + window.getHeight(); wy++) {
8c236a98 2178 if (wy >= height) {
a7986f7b
KL
2179 continue;
2180 }
2181 newMatrix[wx][wy]++;
2182 }
2183 }
2184 // Now figure out the new value for total coverage.
2185 for (int mx = 0; mx < width; mx++) {
2186 for (int my = 0; my < height; my++) {
2187 newOverlapTotal += newMatrix[x][y];
2188 if (newMatrix[mx][my] > 0) {
2189 newOverlapN++;
2190 }
2191 }
2192 }
2193 double newOverlapAvg = (double) newOverlapTotal / (double) newOverlapN;
2194
2195 if (first) {
2196 // First time: just record what we got.
2197 oldOverlapAvg = newOverlapAvg;
2198 first = false;
2199 } else {
2200 // All other times: pick a new best (x, y) and save the
2201 // overlap value.
2202 if (newOverlapAvg < oldOverlapAvg) {
2203 windowX = x;
2204 windowY = y;
2205 oldOverlapAvg = newOverlapAvg;
2206 }
2207 }
2208
2209 } // for (int x = xMin; x < xMax; x++)
2210
2211 } // for (int y = yMin; y < yMax; y++)
2212
2213 // Finally, set the window's new coordinates.
2214 window.setX(windowX);
2215 window.setY(windowY);
2216 }
2217
2ce6dab2
KL
2218 // ------------------------------------------------------------------------
2219 // TMenu management -------------------------------------------------------
2220 // ------------------------------------------------------------------------
2221
fca67db0
KL
2222 /**
2223 * Check if a mouse event would hit either the active menu or any open
2224 * sub-menus.
2225 *
2226 * @param mouse mouse event
2227 * @return true if the mouse would hit the active menu or an open
2228 * sub-menu
2229 */
2230 private boolean mouseOnMenu(final TMouseEvent mouse) {
2231 assert (activeMenu != null);
2232 List<TMenu> menus = new LinkedList<TMenu>(subMenus);
2233 Collections.reverse(menus);
2234 for (TMenu menu: menus) {
2235 if (menu.mouseWouldHit(mouse)) {
2236 return true;
2237 }
2238 }
2239 return activeMenu.mouseWouldHit(mouse);
2240 }
2241
2242 /**
2243 * See if we need to switch window or activate the menu based on
2244 * a mouse click.
2245 *
2246 * @param mouse mouse event
2247 */
2248 private void checkSwitchFocus(final TMouseEvent mouse) {
2249
2250 if ((mouse.getType() == TMouseEvent.Type.MOUSE_DOWN)
2251 && (activeMenu != null)
2252 && (mouse.getAbsoluteY() != 0)
2253 && (!mouseOnMenu(mouse))
2254 ) {
2255 // They clicked outside the active menu, turn it off
2256 activeMenu.setActive(false);
2257 activeMenu = null;
2258 for (TMenu menu: subMenus) {
2259 menu.setActive(false);
2260 }
2261 subMenus.clear();
2262 // Continue checks
2263 }
2264
2265 // See if they hit the menu bar
2266 if ((mouse.getType() == TMouseEvent.Type.MOUSE_DOWN)
7c870d89 2267 && (mouse.isMouse1())
fca67db0
KL
2268 && (!modalWindowActive())
2269 && (mouse.getAbsoluteY() == 0)
2270 ) {
2271
2272 for (TMenu menu: subMenus) {
2273 menu.setActive(false);
2274 }
2275 subMenus.clear();
2276
2277 // They selected the menu, go activate it
2278 for (TMenu menu: menus) {
159f076d
KL
2279 if ((mouse.getAbsoluteX() >= menu.getTitleX())
2280 && (mouse.getAbsoluteX() < menu.getTitleX()
fca67db0
KL
2281 + menu.getTitle().length() + 2)
2282 ) {
2283 menu.setActive(true);
2284 activeMenu = menu;
2285 } else {
2286 menu.setActive(false);
2287 }
2288 }
fca67db0
KL
2289 return;
2290 }
2291
2292 // See if they hit the menu bar
2293 if ((mouse.getType() == TMouseEvent.Type.MOUSE_MOTION)
7c870d89 2294 && (mouse.isMouse1())
fca67db0
KL
2295 && (activeMenu != null)
2296 && (mouse.getAbsoluteY() == 0)
2297 ) {
2298
2299 TMenu oldMenu = activeMenu;
2300 for (TMenu menu: subMenus) {
2301 menu.setActive(false);
2302 }
2303 subMenus.clear();
2304
2305 // See if we should switch menus
2306 for (TMenu menu: menus) {
159f076d
KL
2307 if ((mouse.getAbsoluteX() >= menu.getTitleX())
2308 && (mouse.getAbsoluteX() < menu.getTitleX()
fca67db0
KL
2309 + menu.getTitle().length() + 2)
2310 ) {
2311 menu.setActive(true);
2312 activeMenu = menu;
2313 }
2314 }
2315 if (oldMenu != activeMenu) {
2316 // They switched menus
2317 oldMenu.setActive(false);
2318 }
fca67db0
KL
2319 return;
2320 }
2321
72fca17b
KL
2322 // If a menu is still active, don't switch windows
2323 if (activeMenu != null) {
fca67db0
KL
2324 return;
2325 }
2326
72fca17b
KL
2327 // Only switch if there are multiple windows
2328 if (windows.size() < 2) {
fca67db0
KL
2329 return;
2330 }
2331
72fca17b
KL
2332 if (((focusFollowsMouse == true)
2333 && (mouse.getType() == TMouseEvent.Type.MOUSE_MOTION))
2334 || (mouse.getType() == TMouseEvent.Type.MOUSE_UP)
2335 ) {
2336 synchronized (windows) {
2337 Collections.sort(windows);
2338 if (windows.get(0).isModal()) {
2339 // Modal windows don't switch
2340 return;
2341 }
fca67db0 2342
72fca17b
KL
2343 for (TWindow window: windows) {
2344 assert (!window.isModal());
92453213 2345
72fca17b
KL
2346 if (window.isHidden()) {
2347 assert (!window.isActive());
2348 continue;
2349 }
92453213 2350
72fca17b
KL
2351 if (window.mouseWouldHit(mouse)) {
2352 if (window == windows.get(0)) {
2353 // Clicked on the same window, nothing to do
2354 assert (window.isActive());
2355 return;
2356 }
2357
2358 // We will be switching to another window
2359 assert (windows.get(0).isActive());
2360 assert (windows.get(0) == activeWindow);
2361 assert (!window.isActive());
2362 activeWindow.onUnfocus();
2363 activeWindow.setActive(false);
2364 activeWindow.setZ(window.getZ());
2365 activeWindow = window;
2366 window.setZ(0);
2367 window.setActive(true);
2368 window.onFocus();
bb35d919
KL
2369 return;
2370 }
fca67db0 2371 }
fca67db0 2372 }
72fca17b
KL
2373
2374 // Clicked on the background, nothing to do
2375 return;
fca67db0
KL
2376 }
2377
72fca17b
KL
2378 // Nothing to do: this isn't a mouse up, or focus isn't following
2379 // mouse.
fca67db0
KL
2380 return;
2381 }
2382
2383 /**
2384 * Turn off the menu.
2385 */
928811d8 2386 public final void closeMenu() {
fca67db0
KL
2387 if (activeMenu != null) {
2388 activeMenu.setActive(false);
2389 activeMenu = null;
2390 for (TMenu menu: subMenus) {
2391 menu.setActive(false);
2392 }
2393 subMenus.clear();
2394 }
fca67db0
KL
2395 }
2396
e8a11f98
KL
2397 /**
2398 * Get a (shallow) copy of the menu list.
2399 *
2400 * @return a copy of the menu list
2401 */
2402 public final List<TMenu> getAllMenus() {
2403 return new LinkedList<TMenu>(menus);
2404 }
2405
2406 /**
2407 * Add a top-level menu to the list.
2408 *
2409 * @param menu the menu to add
2410 * @throws IllegalArgumentException if the menu is already used in
2411 * another TApplication
2412 */
2413 public final void addMenu(final TMenu menu) {
2414 if ((menu.getApplication() != null)
2415 && (menu.getApplication() != this)
2416 ) {
2417 throw new IllegalArgumentException("Menu " + menu + " is already " +
2418 "part of application " + menu.getApplication());
2419 }
2420 closeMenu();
2421 menus.add(menu);
2422 recomputeMenuX();
2423 }
2424
2425 /**
2426 * Remove a top-level menu from the list.
2427 *
2428 * @param menu the menu to remove
2429 * @throws IllegalArgumentException if the menu is already used in
2430 * another TApplication
2431 */
2432 public final void removeMenu(final TMenu menu) {
2433 if ((menu.getApplication() != null)
2434 && (menu.getApplication() != this)
2435 ) {
2436 throw new IllegalArgumentException("Menu " + menu + " is already " +
2437 "part of application " + menu.getApplication());
2438 }
2439 closeMenu();
2440 menus.remove(menu);
2441 recomputeMenuX();
2442 }
2443
fca67db0
KL
2444 /**
2445 * Turn off a sub-menu.
2446 */
928811d8 2447 public final void closeSubMenu() {
fca67db0
KL
2448 assert (activeMenu != null);
2449 TMenu item = subMenus.get(subMenus.size() - 1);
2450 assert (item != null);
2451 item.setActive(false);
2452 subMenus.remove(subMenus.size() - 1);
fca67db0
KL
2453 }
2454
2455 /**
2456 * Switch to the next menu.
2457 *
2458 * @param forward if true, then switch to the next menu in the list,
2459 * otherwise switch to the previous menu in the list
2460 */
928811d8 2461 public final void switchMenu(final boolean forward) {
fca67db0
KL
2462 assert (activeMenu != null);
2463
2464 for (TMenu menu: subMenus) {
2465 menu.setActive(false);
2466 }
2467 subMenus.clear();
2468
2469 for (int i = 0; i < menus.size(); i++) {
2470 if (activeMenu == menus.get(i)) {
2471 if (forward) {
2472 if (i < menus.size() - 1) {
2473 i++;
2474 }
2475 } else {
2476 if (i > 0) {
2477 i--;
2478 }
2479 }
2480 activeMenu.setActive(false);
2481 activeMenu = menus.get(i);
2482 activeMenu.setActive(true);
fca67db0
KL
2483 return;
2484 }
2485 }
2486 }
2487
928811d8 2488 /**
efb7af1f
KL
2489 * Add a menu item to the global list. If it has a keyboard accelerator,
2490 * that will be added the global hash.
928811d8 2491 *
efb7af1f 2492 * @param item the menu item
928811d8 2493 */
efb7af1f
KL
2494 public final void addMenuItem(final TMenuItem item) {
2495 menuItems.add(item);
2496
2497 TKeypress key = item.getKey();
2498 if (key != null) {
2499 synchronized (accelerators) {
2500 assert (accelerators.get(key) == null);
2501 accelerators.put(key.toLowerCase(), item);
2502 }
2503 }
2504 }
2505
2506 /**
2507 * Disable one menu item.
2508 *
2509 * @param id the menu item ID
2510 */
2511 public final void disableMenuItem(final int id) {
2512 for (TMenuItem item: menuItems) {
2513 if (item.getId() == id) {
2514 item.setEnabled(false);
2515 }
2516 }
2517 }
e826b451 2518
efb7af1f
KL
2519 /**
2520 * Disable the range of menu items with ID's between lower and upper,
2521 * inclusive.
2522 *
2523 * @param lower the lowest menu item ID
2524 * @param upper the highest menu item ID
2525 */
2526 public final void disableMenuItems(final int lower, final int upper) {
2527 for (TMenuItem item: menuItems) {
2528 if ((item.getId() >= lower) && (item.getId() <= upper)) {
2529 item.setEnabled(false);
2530 }
2531 }
2532 }
2533
2534 /**
2535 * Enable one menu item.
2536 *
2537 * @param id the menu item ID
2538 */
2539 public final void enableMenuItem(final int id) {
2540 for (TMenuItem item: menuItems) {
2541 if (item.getId() == id) {
2542 item.setEnabled(true);
2543 }
2544 }
2545 }
2546
2547 /**
2548 * Enable the range of menu items with ID's between lower and upper,
2549 * inclusive.
2550 *
2551 * @param lower the lowest menu item ID
2552 * @param upper the highest menu item ID
2553 */
2554 public final void enableMenuItems(final int lower, final int upper) {
2555 for (TMenuItem item: menuItems) {
2556 if ((item.getId() >= lower) && (item.getId() <= upper)) {
2557 item.setEnabled(true);
2558 }
e826b451 2559 }
928811d8
KL
2560 }
2561
2562 /**
2563 * Recompute menu x positions based on their title length.
2564 */
2565 public final void recomputeMenuX() {
2566 int x = 0;
2567 for (TMenu menu: menus) {
2568 menu.setX(x);
159f076d 2569 menu.setTitleX(x);
928811d8 2570 x += menu.getTitle().length() + 2;
68c5cd6b
KL
2571
2572 // Don't let the menu window exceed the screen width
2573 int rightEdge = menu.getX() + menu.getWidth();
2574 if (rightEdge > getScreen().getWidth()) {
2575 menu.setX(getScreen().getWidth() - menu.getWidth());
2576 }
928811d8
KL
2577 }
2578 }
2579
b2d49e0f
KL
2580 /**
2581 * Post an event to process.
2582 *
2583 * @param event new event to add to the queue
2584 */
2585 public final void postEvent(final TInputEvent event) {
2586 synchronized (this) {
2587 synchronized (fillEventQueue) {
2588 fillEventQueue.add(event);
2589 }
2590 if (debugThreads) {
2591 System.err.println(System.currentTimeMillis() + " " +
2592 Thread.currentThread() + " postEvent() wake up main");
2593 }
2594 this.notify();
2595 }
2596 }
2597
928811d8
KL
2598 /**
2599 * Post an event to process and turn off the menu.
2600 *
2601 * @param event new event to add to the queue
2602 */
5dfd1c11 2603 public final void postMenuEvent(final TInputEvent event) {
be72cb5c
KL
2604 synchronized (this) {
2605 synchronized (fillEventQueue) {
2606 fillEventQueue.add(event);
2607 }
2608 if (debugThreads) {
2609 System.err.println(System.currentTimeMillis() + " " +
2610 Thread.currentThread() + " postMenuEvent() wake up main");
2611 }
2612 closeMenu();
2613 this.notify();
8e688b92 2614 }
928811d8
KL
2615 }
2616
2617 /**
2618 * Add a sub-menu to the list of open sub-menus.
2619 *
2620 * @param menu sub-menu
2621 */
2622 public final void addSubMenu(final TMenu menu) {
2623 subMenus.add(menu);
2624 }
2625
8e688b92
KL
2626 /**
2627 * Convenience function to add a top-level menu.
2628 *
2629 * @param title menu title
2630 * @return the new menu
2631 */
87a17f3c 2632 public final TMenu addMenu(final String title) {
8e688b92
KL
2633 int x = 0;
2634 int y = 0;
2635 TMenu menu = new TMenu(this, x, y, title);
2636 menus.add(menu);
2637 recomputeMenuX();
2638 return menu;
2639 }
2640
2641 /**
2642 * Convenience function to add a default "File" menu.
2643 *
2644 * @return the new menu
2645 */
2646 public final TMenu addFileMenu() {
339652cc 2647 TMenu fileMenu = addMenu(i18n.getString("fileMenuTitle"));
8e688b92
KL
2648 fileMenu.addDefaultItem(TMenu.MID_OPEN_FILE);
2649 fileMenu.addSeparator();
2650 fileMenu.addDefaultItem(TMenu.MID_SHELL);
2651 fileMenu.addDefaultItem(TMenu.MID_EXIT);
339652cc
KL
2652 TStatusBar statusBar = fileMenu.newStatusBar(i18n.
2653 getString("fileMenuStatus"));
2654 statusBar.addShortcutKeypress(kbF1, cmHelp, i18n.getString("Help"));
8e688b92
KL
2655 return fileMenu;
2656 }
2657
2658 /**
2659 * Convenience function to add a default "Edit" menu.
2660 *
2661 * @return the new menu
2662 */
2663 public final TMenu addEditMenu() {
339652cc 2664 TMenu editMenu = addMenu(i18n.getString("editMenuTitle"));
8e688b92
KL
2665 editMenu.addDefaultItem(TMenu.MID_CUT);
2666 editMenu.addDefaultItem(TMenu.MID_COPY);
2667 editMenu.addDefaultItem(TMenu.MID_PASTE);
2668 editMenu.addDefaultItem(TMenu.MID_CLEAR);
339652cc
KL
2669 TStatusBar statusBar = editMenu.newStatusBar(i18n.
2670 getString("editMenuStatus"));
2671 statusBar.addShortcutKeypress(kbF1, cmHelp, i18n.getString("Help"));
8e688b92
KL
2672 return editMenu;
2673 }
2674
2675 /**
2676 * Convenience function to add a default "Window" menu.
2677 *
2678 * @return the new menu
2679 */
c6940ed9 2680 public final TMenu addWindowMenu() {
339652cc 2681 TMenu windowMenu = addMenu(i18n.getString("windowMenuTitle"));
8e688b92
KL
2682 windowMenu.addDefaultItem(TMenu.MID_TILE);
2683 windowMenu.addDefaultItem(TMenu.MID_CASCADE);
2684 windowMenu.addDefaultItem(TMenu.MID_CLOSE_ALL);
2685 windowMenu.addSeparator();
2686 windowMenu.addDefaultItem(TMenu.MID_WINDOW_MOVE);
2687 windowMenu.addDefaultItem(TMenu.MID_WINDOW_ZOOM);
2688 windowMenu.addDefaultItem(TMenu.MID_WINDOW_NEXT);
2689 windowMenu.addDefaultItem(TMenu.MID_WINDOW_PREVIOUS);
2690 windowMenu.addDefaultItem(TMenu.MID_WINDOW_CLOSE);
339652cc
KL
2691 TStatusBar statusBar = windowMenu.newStatusBar(i18n.
2692 getString("windowMenuStatus"));
2693 statusBar.addShortcutKeypress(kbF1, cmHelp, i18n.getString("Help"));
8e688b92
KL
2694 return windowMenu;
2695 }
2696
55d2b2c2
KL
2697 /**
2698 * Convenience function to add a default "Help" menu.
2699 *
2700 * @return the new menu
2701 */
2702 public final TMenu addHelpMenu() {
339652cc 2703 TMenu helpMenu = addMenu(i18n.getString("helpMenuTitle"));
55d2b2c2
KL
2704 helpMenu.addDefaultItem(TMenu.MID_HELP_CONTENTS);
2705 helpMenu.addDefaultItem(TMenu.MID_HELP_INDEX);
2706 helpMenu.addDefaultItem(TMenu.MID_HELP_SEARCH);
2707 helpMenu.addDefaultItem(TMenu.MID_HELP_PREVIOUS);
2708 helpMenu.addDefaultItem(TMenu.MID_HELP_HELP);
2709 helpMenu.addDefaultItem(TMenu.MID_HELP_ACTIVE_FILE);
2710 helpMenu.addSeparator();
2711 helpMenu.addDefaultItem(TMenu.MID_ABOUT);
339652cc
KL
2712 TStatusBar statusBar = helpMenu.newStatusBar(i18n.
2713 getString("helpMenuStatus"));
2714 statusBar.addShortcutKeypress(kbF1, cmHelp, i18n.getString("Help"));
55d2b2c2
KL
2715 return helpMenu;
2716 }
2717
2ce6dab2
KL
2718 // ------------------------------------------------------------------------
2719 // TTimer management ------------------------------------------------------
2720 // ------------------------------------------------------------------------
2721
8e688b92 2722 /**
2ce6dab2
KL
2723 * Get the amount of time I can sleep before missing a Timer tick.
2724 *
2725 * @param timeout = initial (maximum) timeout in millis
2726 * @return number of milliseconds between now and the next timer event
8e688b92 2727 */
2ce6dab2
KL
2728 private long getSleepTime(final long timeout) {
2729 Date now = new Date();
2730 long nowTime = now.getTime();
2731 long sleepTime = timeout;
2ce6dab2 2732
be72cb5c
KL
2733 synchronized (timers) {
2734 for (TTimer timer: timers) {
2735 long nextTickTime = timer.getNextTick().getTime();
2736 if (nextTickTime < nowTime) {
2737 return 0;
2738 }
2739
2740 long timeDifference = nextTickTime - nowTime;
2741 if (timeDifference < sleepTime) {
2742 sleepTime = timeDifference;
2743 }
8e688b92
KL
2744 }
2745 }
be72cb5c 2746
2ce6dab2
KL
2747 assert (sleepTime >= 0);
2748 assert (sleepTime <= timeout);
2749 return sleepTime;
8e688b92
KL
2750 }
2751
d502a0e9
KL
2752 /**
2753 * Convenience function to add a timer.
2754 *
2755 * @param duration number of milliseconds to wait between ticks
2756 * @param recurring if true, re-schedule this timer after every tick
2757 * @param action function to call when button is pressed
c6940ed9 2758 * @return the timer
d502a0e9
KL
2759 */
2760 public final TTimer addTimer(final long duration, final boolean recurring,
2761 final TAction action) {
2762
2763 TTimer timer = new TTimer(duration, recurring, action);
2764 synchronized (timers) {
2765 timers.add(timer);
2766 }
2767 return timer;
2768 }
2769
2770 /**
2771 * Convenience function to remove a timer.
2772 *
2773 * @param timer timer to remove
2774 */
2775 public final void removeTimer(final TTimer timer) {
2776 synchronized (timers) {
2777 timers.remove(timer);
2778 }
2779 }
2780
2ce6dab2
KL
2781 // ------------------------------------------------------------------------
2782 // Other TWindow constructors ---------------------------------------------
2783 // ------------------------------------------------------------------------
2784
c6940ed9
KL
2785 /**
2786 * Convenience function to spawn a message box.
2787 *
2788 * @param title window title, will be centered along the top border
2789 * @param caption message to display. Use embedded newlines to get a
2790 * multi-line box.
2791 * @return the new message box
2792 */
2793 public final TMessageBox messageBox(final String title,
2794 final String caption) {
2795
2796 return new TMessageBox(this, title, caption, TMessageBox.Type.OK);
2797 }
2798
2799 /**
2800 * Convenience function to spawn a message box.
2801 *
2802 * @param title window title, will be centered along the top border
2803 * @param caption message to display. Use embedded newlines to get a
2804 * multi-line box.
2805 * @param type one of the TMessageBox.Type constants. Default is
2806 * Type.OK.
2807 * @return the new message box
2808 */
2809 public final TMessageBox messageBox(final String title,
2810 final String caption, final TMessageBox.Type type) {
2811
2812 return new TMessageBox(this, title, caption, type);
2813 }
2814
2815 /**
2816 * Convenience function to spawn an input box.
2817 *
2818 * @param title window title, will be centered along the top border
2819 * @param caption message to display. Use embedded newlines to get a
2820 * multi-line box.
2821 * @return the new input box
2822 */
2823 public final TInputBox inputBox(final String title, final String caption) {
2824
2825 return new TInputBox(this, title, caption);
2826 }
2827
2828 /**
2829 * Convenience function to spawn an input box.
2830 *
2831 * @param title window title, will be centered along the top border
2832 * @param caption message to display. Use embedded newlines to get a
2833 * multi-line box.
2834 * @param text initial text to seed the field with
2835 * @return the new input box
2836 */
2837 public final TInputBox inputBox(final String title, final String caption,
2838 final String text) {
2839
2840 return new TInputBox(this, title, caption, text);
2841 }
1ac2ccb1 2842
34a42e78
KL
2843 /**
2844 * Convenience function to open a terminal window.
2845 *
2846 * @param x column relative to parent
2847 * @param y row relative to parent
2848 * @return the terminal new window
2849 */
2850 public final TTerminalWindow openTerminal(final int x, final int y) {
2851 return openTerminal(x, y, TWindow.RESIZABLE);
2852 }
2853
2854 /**
2855 * Convenience function to open a terminal window.
2856 *
2857 * @param x column relative to parent
2858 * @param y row relative to parent
2859 * @param flags mask of CENTERED, MODAL, or RESIZABLE
2860 * @return the terminal new window
2861 */
2862 public final TTerminalWindow openTerminal(final int x, final int y,
2863 final int flags) {
2864
2865 return new TTerminalWindow(this, x, y, flags);
2866 }
2867
6f8ff91a
KL
2868 /**
2869 * Convenience function to open a terminal window and execute a custom
2870 * command line inside it.
2871 *
2872 * @param x column relative to parent
2873 * @param y row relative to parent
2874 * @param commandLine the command line to execute
2875 * @return the terminal new window
2876 */
2877 public final TTerminalWindow openTerminal(final int x, final int y,
2878 final String commandLine) {
2879
2880 return openTerminal(x, y, TWindow.RESIZABLE, commandLine);
2881 }
2882
a0d734e6
KL
2883 /**
2884 * Convenience function to open a terminal window and execute a custom
2885 * command line inside it.
2886 *
2887 * @param x column relative to parent
2888 * @param y row relative to parent
2889 * @param flags mask of CENTERED, MODAL, or RESIZABLE
2890 * @param command the command line to execute
2891 * @return the terminal new window
2892 */
2893 public final TTerminalWindow openTerminal(final int x, final int y,
2894 final int flags, final String [] command) {
2895
2896 return new TTerminalWindow(this, x, y, flags, command);
2897 }
2898
6f8ff91a
KL
2899 /**
2900 * Convenience function to open a terminal window and execute a custom
2901 * command line inside it.
2902 *
2903 * @param x column relative to parent
2904 * @param y row relative to parent
2905 * @param flags mask of CENTERED, MODAL, or RESIZABLE
2906 * @param commandLine the command line to execute
2907 * @return the terminal new window
2908 */
2909 public final TTerminalWindow openTerminal(final int x, final int y,
2910 final int flags, final String commandLine) {
2911
a0d734e6 2912 return new TTerminalWindow(this, x, y, flags, commandLine.split("\\s"));
6f8ff91a
KL
2913 }
2914
0d47c546
KL
2915 /**
2916 * Convenience function to spawn an file open box.
2917 *
2918 * @param path path of selected file
2919 * @return the result of the new file open box
329fd62e 2920 * @throws IOException if java.io operation throws
0d47c546
KL
2921 */
2922 public final String fileOpenBox(final String path) throws IOException {
2923
2924 TFileOpenBox box = new TFileOpenBox(this, path, TFileOpenBox.Type.OPEN);
2925 return box.getFilename();
2926 }
2927
2928 /**
2929 * Convenience function to spawn an file open box.
2930 *
2931 * @param path path of selected file
2932 * @param type one of the Type constants
2933 * @return the result of the new file open box
329fd62e 2934 * @throws IOException if java.io operation throws
0d47c546
KL
2935 */
2936 public final String fileOpenBox(final String path,
2937 final TFileOpenBox.Type type) throws IOException {
2938
2939 TFileOpenBox box = new TFileOpenBox(this, path, type);
2940 return box.getFilename();
2941 }
2942
92453213
KL
2943 /**
2944 * Convenience function to create a new window and make it active.
2945 * Window will be located at (0, 0).
2946 *
2947 * @param title window title, will be centered along the top border
2948 * @param width width of window
2949 * @param height height of window
43ad7b6c 2950 * @return the new window
92453213
KL
2951 */
2952 public final TWindow addWindow(final String title, final int width,
2953 final int height) {
2954
2955 TWindow window = new TWindow(this, title, 0, 0, width, height);
2956 return window;
2957 }
1978ad50 2958
92453213
KL
2959 /**
2960 * Convenience function to create a new window and make it active.
2961 * Window will be located at (0, 0).
2962 *
2963 * @param title window title, will be centered along the top border
2964 * @param width width of window
2965 * @param height height of window
2966 * @param flags bitmask of RESIZABLE, CENTERED, or MODAL
43ad7b6c 2967 * @return the new window
92453213
KL
2968 */
2969 public final TWindow addWindow(final String title,
2970 final int width, final int height, final int flags) {
2971
2972 TWindow window = new TWindow(this, title, 0, 0, width, height, flags);
2973 return window;
2974 }
2975
2976 /**
2977 * Convenience function to create a new window and make it active.
2978 *
2979 * @param title window title, will be centered along the top border
2980 * @param x column relative to parent
2981 * @param y row relative to parent
2982 * @param width width of window
2983 * @param height height of window
43ad7b6c 2984 * @return the new window
92453213
KL
2985 */
2986 public final TWindow addWindow(final String title,
2987 final int x, final int y, final int width, final int height) {
2988
2989 TWindow window = new TWindow(this, title, x, y, width, height);
2990 return window;
2991 }
2992
2993 /**
2994 * Convenience function to create a new window and make it active.
2995 *
92453213
KL
2996 * @param title window title, will be centered along the top border
2997 * @param x column relative to parent
2998 * @param y row relative to parent
2999 * @param width width of window
3000 * @param height height of window
3001 * @param flags mask of RESIZABLE, CENTERED, or MODAL
43ad7b6c 3002 * @return the new window
92453213
KL
3003 */
3004 public final TWindow addWindow(final String title,
3005 final int x, final int y, final int width, final int height,
3006 final int flags) {
3007
3008 TWindow window = new TWindow(this, title, x, y, width, height, flags);
3009 return window;
3010 }
3011
1978ad50
KL
3012 /**
3013 * Convenience function to open a file in an editor window and make it
3014 * active.
3015 *
3016 * @param file the file to open
43ad7b6c 3017 * @return the new editor window
1978ad50
KL
3018 * @throws IOException if a java.io operation throws
3019 */
3020 public final TEditorWindow addEditor(final File file) throws IOException {
3021
3022 TEditorWindow editor = new TEditorWindow(this, file);
3023 return editor;
3024 }
3025
7d4115a5 3026}