#25 fix OOB on mouse down
[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);
051e2913
KL
1387 if (attr.getForeColorRGB() < 0) {
1388 attr.setForeColor(attr.getForeColor().invert());
1389 } else {
1390 attr.setForeColorRGB(attr.getForeColorRGB() ^ 0x00ffffff);
1391 }
1392 if (attr.getBackColorRGB() < 0) {
1393 attr.setBackColor(attr.getBackColor().invert());
1394 } else {
1395 attr.setBackColorRGB(attr.getBackColorRGB() ^ 0x00ffffff);
1396 }
d36057df
KL
1397 getScreen().putAttrXY(x, y, attr, false);
1398 }
fca67db0 1399
d36057df
KL
1400 /**
1401 * Draw everything.
1402 */
1403 private void drawAll() {
1404 boolean menuIsActive = false;
fca67db0 1405
d36057df
KL
1406 if (debugThreads) {
1407 System.err.printf("%d %s drawAll() enter\n",
1408 System.currentTimeMillis(), Thread.currentThread());
fca67db0 1409 }
a06459bd 1410
d36057df
KL
1411 if (!repaint) {
1412 if (debugThreads) {
1413 System.err.printf("%d %s drawAll() !repaint\n",
1414 System.currentTimeMillis(), Thread.currentThread());
e826b451 1415 }
d36057df
KL
1416 synchronized (getScreen()) {
1417 if ((oldMouseX != mouseX) || (oldMouseY != mouseY)) {
1418 // The only thing that has happened is the mouse moved.
1419 // Clear the old position and draw the new position.
1420 invertCell(oldMouseX, oldMouseY);
1421 invertCell(mouseX, mouseY);
1422 oldMouseX = mouseX;
1423 oldMouseY = mouseY;
fca67db0 1424 }
d36057df
KL
1425 if (getScreen().isDirty()) {
1426 backend.flushScreen();
2ce6dab2 1427 }
fca67db0
KL
1428 return;
1429 }
1430 }
1431
d36057df
KL
1432 if (debugThreads) {
1433 System.err.printf("%d %s drawAll() REDRAW\n",
1434 System.currentTimeMillis(), Thread.currentThread());
fca67db0
KL
1435 }
1436
d36057df
KL
1437 // If true, the cursor is not visible
1438 boolean cursor = false;
92453213 1439
d36057df
KL
1440 // Start with a clean screen
1441 getScreen().clear();
b6faeac0 1442
d36057df
KL
1443 // Draw the desktop
1444 if (desktop != null) {
1445 desktop.drawChildren();
1446 }
0ee88b6d 1447
d36057df
KL
1448 // Draw each window in reverse Z order
1449 List<TWindow> sorted = new LinkedList<TWindow>(windows);
1450 Collections.sort(sorted);
1451 TWindow topLevel = null;
1452 if (sorted.size() > 0) {
1453 topLevel = sorted.get(0);
1454 }
1455 Collections.reverse(sorted);
1456 for (TWindow window: sorted) {
1457 if (window.isShown()) {
1458 window.drawChildren();
b6faeac0 1459 }
fca67db0 1460 }
d36057df
KL
1461
1462 // Draw the blank menubar line - reset the screen clipping first so
1463 // it won't trim it out.
1464 getScreen().resetClipping();
1465 getScreen().hLineXY(0, 0, getScreen().getWidth(), ' ',
1466 theme.getColor("tmenu"));
1467 // Now draw the menus.
1468 int x = 1;
1469 for (TMenu menu: menus) {
1470 CellAttributes menuColor;
1471 CellAttributes menuMnemonicColor;
1472 if (menu.isActive()) {
1473 menuIsActive = true;
1474 menuColor = theme.getColor("tmenu.highlighted");
1475 menuMnemonicColor = theme.getColor("tmenu.mnemonic.highlighted");
1476 topLevel = menu;
1477 } else {
1478 menuColor = theme.getColor("tmenu");
1479 menuMnemonicColor = theme.getColor("tmenu.mnemonic");
1480 }
1481 // Draw the menu title
1482 getScreen().hLineXY(x, 0, menu.getTitle().length() + 2, ' ',
1483 menuColor);
1484 getScreen().putStringXY(x + 1, 0, menu.getTitle(), menuColor);
1485 // Draw the highlight character
1486 getScreen().putCharXY(x + 1 + menu.getMnemonic().getShortcutIdx(),
1487 0, menu.getMnemonic().getShortcut(), menuMnemonicColor);
1488
1489 if (menu.isActive()) {
1490 menu.drawChildren();
1491 // Reset the screen clipping so we can draw the next title.
1492 getScreen().resetClipping();
0ee88b6d 1493 }
d36057df 1494 x += menu.getTitle().length() + 2;
0ee88b6d 1495 }
0ee88b6d 1496
d36057df
KL
1497 for (TMenu menu: subMenus) {
1498 // Reset the screen clipping so we can draw the next sub-menu.
1499 getScreen().resetClipping();
1500 menu.drawChildren();
1501 }
b6faeac0 1502
d36057df
KL
1503 // Draw the status bar of the top-level window
1504 TStatusBar statusBar = null;
1505 if (topLevel != null) {
1506 statusBar = topLevel.getStatusBar();
1507 }
1508 if (statusBar != null) {
1509 getScreen().resetClipping();
1510 statusBar.setWidth(getScreen().getWidth());
1511 statusBar.setY(getScreen().getHeight() - topLevel.getY());
1512 statusBar.draw();
1513 } else {
1514 CellAttributes barColor = new CellAttributes();
1515 barColor.setTo(getTheme().getColor("tstatusbar.text"));
1516 getScreen().hLineXY(0, desktopBottom, getScreen().getWidth(), ' ',
1517 barColor);
1518 }
b6faeac0 1519
d36057df
KL
1520 // Draw the mouse pointer
1521 invertCell(mouseX, mouseY);
1522 oldMouseX = mouseX;
1523 oldMouseY = mouseY;
b6faeac0 1524
d36057df
KL
1525 // Place the cursor if it is visible
1526 if (!menuIsActive) {
1527 TWidget activeWidget = null;
1528 if (sorted.size() > 0) {
1529 activeWidget = sorted.get(sorted.size() - 1).getActiveChild();
1530 if (activeWidget.isCursorVisible()) {
1531 if ((activeWidget.getCursorAbsoluteY() < desktopBottom)
1532 && (activeWidget.getCursorAbsoluteY() > desktopTop)
1533 ) {
1534 getScreen().putCursor(true,
1535 activeWidget.getCursorAbsoluteX(),
1536 activeWidget.getCursorAbsoluteY());
1537 cursor = true;
b6faeac0 1538 } else {
d36057df
KL
1539 getScreen().putCursor(false,
1540 activeWidget.getCursorAbsoluteX(),
1541 activeWidget.getCursorAbsoluteY());
1542 cursor = false;
b6faeac0
KL
1543 }
1544 }
e8a11f98
KL
1545 }
1546 }
1547
d36057df
KL
1548 // Kill the cursor
1549 if (!cursor) {
1550 getScreen().hideCursor();
b6faeac0 1551 }
c6940ed9 1552
d36057df
KL
1553 // Flush the screen contents
1554 if (getScreen().isDirty()) {
1555 backend.flushScreen();
be72cb5c
KL
1556 }
1557
d36057df 1558 repaint = false;
a06459bd
KL
1559 }
1560
4328bb42 1561 /**
d36057df 1562 * Force this application to exit.
4328bb42 1563 */
d36057df
KL
1564 public void exit() {
1565 quit = true;
1566 synchronized (this) {
1567 this.notify();
92453213 1568 }
4328bb42 1569 }
7d4115a5 1570
2ce6dab2
KL
1571 // ------------------------------------------------------------------------
1572 // TWindow management -----------------------------------------------------
1573 // ------------------------------------------------------------------------
4328bb42 1574
92453213
KL
1575 /**
1576 * Return the total number of windows.
1577 *
1578 * @return the total number of windows
1579 */
1580 public final int windowCount() {
1581 return windows.size();
1582 }
1583
1584 /**
8c236a98 1585 * Return the number of windows that are showing.
92453213 1586 *
8c236a98 1587 * @return the number of windows that are showing on screen
92453213
KL
1588 */
1589 public final int shownWindowCount() {
1590 int n = 0;
1591 for (TWindow w: windows) {
1592 if (w.isShown()) {
1593 n++;
1594 }
1595 }
1596 return n;
1597 }
1598
8c236a98
KL
1599 /**
1600 * Return the number of windows that are hidden.
1601 *
1602 * @return the number of windows that are hidden
1603 */
1604 public final int hiddenWindowCount() {
1605 int n = 0;
1606 for (TWindow w: windows) {
1607 if (w.isHidden()) {
1608 n++;
1609 }
1610 }
1611 return n;
1612 }
1613
92453213
KL
1614 /**
1615 * Check if a window instance is in this application's window list.
1616 *
1617 * @param window window to look for
1618 * @return true if this window is in the list
1619 */
1620 public final boolean hasWindow(final TWindow window) {
1621 if (windows.size() == 0) {
1622 return false;
1623 }
1624 for (TWindow w: windows) {
1625 if (w == window) {
8c236a98 1626 assert (window.getApplication() == this);
92453213
KL
1627 return true;
1628 }
1629 }
1630 return false;
1631 }
1632
1633 /**
1634 * Activate a window: bring it to the top and have it receive events.
1635 *
1636 * @param window the window to become the new active window
1637 */
1638 public void activateWindow(final TWindow window) {
1639 if (hasWindow(window) == false) {
1640 /*
1641 * Someone has a handle to a window I don't have. Ignore this
1642 * request.
1643 */
1644 return;
1645 }
1646
fe0770f9
KL
1647 // Whatever window might be moving/dragging, stop it now.
1648 for (TWindow w: windows) {
1649 if (w.inMovements()) {
1650 w.stopMovements();
1651 }
1652 }
1653
92453213
KL
1654 assert (windows.size() > 0);
1655
1656 if (window.isHidden()) {
1657 // Unhiding will also activate.
1658 showWindow(window);
1659 return;
1660 }
1661 assert (window.isShown());
1662
1663 if (windows.size() == 1) {
1664 assert (window == windows.get(0));
1665 if (activeWindow == null) {
1666 activeWindow = window;
1667 window.setZ(0);
1668 activeWindow.setActive(true);
1669 activeWindow.onFocus();
1670 }
1671
1672 assert (window.isActive());
1673 assert (activeWindow == window);
1674 return;
1675 }
1676
1677 if (activeWindow == window) {
1678 assert (window.isActive());
1679
1680 // Window is already active, do nothing.
1681 return;
1682 }
1683
1684 assert (!window.isActive());
1685 if (activeWindow != null) {
1686 assert (activeWindow.getZ() == 0);
1687
92453213
KL
1688 activeWindow.setActive(false);
1689 activeWindow.setZ(window.getZ());
499fdccf
KL
1690
1691 // Unset activeWindow now before unfocus, so that a window
1692 // lifecycle change inside onUnfocus() doesn't call
1693 // switchWindow() and lead to a stack overflow.
1694 TWindow oldActiveWindow = activeWindow;
1695 activeWindow = null;
1696 oldActiveWindow.onUnfocus();
92453213
KL
1697 }
1698 activeWindow = window;
1699 activeWindow.setZ(0);
1700 activeWindow.setActive(true);
1701 activeWindow.onFocus();
1702 return;
1703 }
1704
1705 /**
1706 * Hide a window.
1707 *
1708 * @param window the window to hide
1709 */
1710 public void hideWindow(final TWindow window) {
1711 if (hasWindow(window) == false) {
1712 /*
1713 * Someone has a handle to a window I don't have. Ignore this
1714 * request.
1715 */
1716 return;
1717 }
1718
fe0770f9
KL
1719 // Whatever window might be moving/dragging, stop it now.
1720 for (TWindow w: windows) {
1721 if (w.inMovements()) {
1722 w.stopMovements();
1723 }
1724 }
1725
92453213
KL
1726 assert (windows.size() > 0);
1727
1728 if (!window.hidden) {
1729 if (window == activeWindow) {
1730 if (shownWindowCount() > 1) {
1731 switchWindow(true);
1732 } else {
1733 activeWindow = null;
1734 window.setActive(false);
1735 window.onUnfocus();
1736 }
1737 }
1738 window.hidden = true;
1739 window.onHide();
1740 }
1741 }
1742
1743 /**
1744 * Show a window.
1745 *
1746 * @param window the window to show
1747 */
1748 public void showWindow(final TWindow window) {
1749 if (hasWindow(window) == false) {
1750 /*
1751 * Someone has a handle to a window I don't have. Ignore this
1752 * request.
1753 */
1754 return;
1755 }
1756
fe0770f9
KL
1757 // Whatever window might be moving/dragging, stop it now.
1758 for (TWindow w: windows) {
1759 if (w.inMovements()) {
1760 w.stopMovements();
1761 }
1762 }
1763
92453213
KL
1764 assert (windows.size() > 0);
1765
1766 if (window.hidden) {
1767 window.hidden = false;
1768 window.onShow();
1769 activateWindow(window);
1770 }
1771 }
1772
48e27807
KL
1773 /**
1774 * Close window. Note that the window's destructor is NOT called by this
1775 * method, instead the GC is assumed to do the cleanup.
1776 *
1777 * @param window the window to remove
1778 */
1779 public final void closeWindow(final TWindow window) {
92453213
KL
1780 if (hasWindow(window) == false) {
1781 /*
1782 * Someone has a handle to a window I don't have. Ignore this
1783 * request.
1784 */
1785 return;
1786 }
1787
bb35d919 1788 synchronized (windows) {
fe0770f9
KL
1789 // Whatever window might be moving/dragging, stop it now.
1790 for (TWindow w: windows) {
1791 if (w.inMovements()) {
1792 w.stopMovements();
1793 }
1794 }
1795
bb35d919
KL
1796 int z = window.getZ();
1797 window.setZ(-1);
efb7af1f 1798 window.onUnfocus();
bb35d919
KL
1799 Collections.sort(windows);
1800 windows.remove(0);
92453213 1801 activeWindow = null;
bb35d919 1802 for (TWindow w: windows) {
3eacc236
KL
1803
1804 // Do not activate a hidden window.
1805 if (w.isHidden()) {
1806 continue;
1807 }
1808
bb35d919
KL
1809 if (w.getZ() > z) {
1810 w.setZ(w.getZ() - 1);
1811 if (w.getZ() == 0) {
1812 w.setActive(true);
efb7af1f 1813 w.onFocus();
bb35d919
KL
1814 assert (activeWindow == null);
1815 activeWindow = w;
1816 } else {
efb7af1f
KL
1817 if (w.isActive()) {
1818 w.setActive(false);
1819 w.onUnfocus();
1820 }
bb35d919 1821 }
48e27807
KL
1822 }
1823 }
1824 }
1825
1826 // Perform window cleanup
1827 window.onClose();
1828
48e27807 1829 // Check if we are closing a TMessageBox or similar
c6940ed9
KL
1830 if (secondaryEventReceiver != null) {
1831 assert (secondaryEventHandler != null);
48e27807
KL
1832
1833 // Do not send events to the secondaryEventReceiver anymore, the
1834 // window is closed.
1835 secondaryEventReceiver = null;
1836
92554d64
KL
1837 // Wake the secondary thread, it will wake the primary as it
1838 // exits.
1839 synchronized (secondaryEventHandler) {
1840 secondaryEventHandler.notify();
48e27807
KL
1841 }
1842 }
92453213
KL
1843
1844 // Permit desktop to be active if it is the only thing left.
1845 if (desktop != null) {
1846 if (windows.size() == 0) {
1847 desktop.setActive(true);
1848 }
1849 }
48e27807
KL
1850 }
1851
1852 /**
1853 * Switch to the next window.
1854 *
1855 * @param forward if true, then switch to the next window in the list,
1856 * otherwise switch to the previous window in the list
1857 */
1858 public final void switchWindow(final boolean forward) {
8c236a98
KL
1859 // Only switch if there are multiple visible windows
1860 if (shownWindowCount() < 2) {
48e27807
KL
1861 return;
1862 }
92453213 1863 assert (activeWindow != null);
48e27807 1864
bb35d919 1865 synchronized (windows) {
fe0770f9
KL
1866 // Whatever window might be moving/dragging, stop it now.
1867 for (TWindow w: windows) {
1868 if (w.inMovements()) {
1869 w.stopMovements();
1870 }
1871 }
bb35d919
KL
1872
1873 // Swap z/active between active window and the next in the list
1874 int activeWindowI = -1;
1875 for (int i = 0; i < windows.size(); i++) {
92453213
KL
1876 if (windows.get(i) == activeWindow) {
1877 assert (activeWindow.isActive());
bb35d919
KL
1878 activeWindowI = i;
1879 break;
92453213
KL
1880 } else {
1881 assert (!windows.get(0).isActive());
bb35d919 1882 }
48e27807 1883 }
bb35d919 1884 assert (activeWindowI >= 0);
48e27807 1885
bb35d919 1886 // Do not switch if a window is modal
92453213 1887 if (activeWindow.isModal()) {
bb35d919
KL
1888 return;
1889 }
48e27807 1890
8c236a98
KL
1891 int nextWindowI = activeWindowI;
1892 for (;;) {
1893 if (forward) {
1894 nextWindowI++;
1895 nextWindowI %= windows.size();
bb35d919 1896 } else {
8c236a98
KL
1897 nextWindowI--;
1898 if (nextWindowI < 0) {
1899 nextWindowI = windows.size() - 1;
1900 }
bb35d919 1901 }
bb35d919 1902
8c236a98
KL
1903 if (windows.get(nextWindowI).isShown()) {
1904 activateWindow(windows.get(nextWindowI));
1905 break;
1906 }
1907 }
bb35d919 1908 } // synchronized (windows)
48e27807 1909
48e27807
KL
1910 }
1911
1912 /**
051e2913
KL
1913 * Add a window to my window list and make it active. Note package
1914 * private access.
48e27807
KL
1915 *
1916 * @param window new window to add
1917 */
051e2913 1918 final void addWindowToApplication(final TWindow window) {
a7986f7b
KL
1919
1920 // Do not add menu windows to the window list.
1921 if (window instanceof TMenu) {
1922 return;
1923 }
1924
0ee88b6d
KL
1925 // Do not add the desktop to the window list.
1926 if (window instanceof TDesktop) {
1927 return;
1928 }
1929
bb35d919 1930 synchronized (windows) {
051e2913
KL
1931 if (windows.contains(window)) {
1932 throw new IllegalArgumentException("Window " + window +
1933 " is already in window list");
1934 }
1935
fe0770f9
KL
1936 // Whatever window might be moving/dragging, stop it now.
1937 for (TWindow w: windows) {
1938 if (w.inMovements()) {
1939 w.stopMovements();
1940 }
1941 }
1942
2ce6dab2
KL
1943 // Do not allow a modal window to spawn a non-modal window. If a
1944 // modal window is active, then this window will become modal
1945 // too.
1946 if (modalWindowActive()) {
1947 window.flags |= TWindow.MODAL;
a7986f7b 1948 window.flags |= TWindow.CENTERED;
92453213 1949 window.hidden = false;
bb35d919 1950 }
92453213
KL
1951 if (window.isShown()) {
1952 for (TWindow w: windows) {
1953 if (w.isActive()) {
1954 w.setActive(false);
1955 w.onUnfocus();
1956 }
1957 w.setZ(w.getZ() + 1);
efb7af1f 1958 }
bb35d919
KL
1959 }
1960 windows.add(window);
92453213
KL
1961 if (window.isShown()) {
1962 activeWindow = window;
1963 activeWindow.setZ(0);
1964 activeWindow.setActive(true);
1965 activeWindow.onFocus();
1966 }
a7986f7b
KL
1967
1968 if (((window.flags & TWindow.CENTERED) == 0)
d36057df
KL
1969 && ((window.flags & TWindow.ABSOLUTEXY) == 0)
1970 && (smartWindowPlacement == true)
1971 ) {
a7986f7b
KL
1972
1973 doSmartPlacement(window);
1974 }
48e27807 1975 }
92453213
KL
1976
1977 // Desktop cannot be active over any other window.
1978 if (desktop != null) {
1979 desktop.setActive(false);
1980 }
48e27807
KL
1981 }
1982
fca67db0
KL
1983 /**
1984 * Check if there is a system-modal window on top.
1985 *
1986 * @return true if the active window is modal
1987 */
1988 private boolean modalWindowActive() {
1989 if (windows.size() == 0) {
1990 return false;
1991 }
2ce6dab2
KL
1992
1993 for (TWindow w: windows) {
1994 if (w.isModal()) {
1995 return true;
1996 }
1997 }
1998
1999 return false;
2000 }
2001
2002 /**
2003 * Close all open windows.
2004 */
2005 private void closeAllWindows() {
2006 // Don't do anything if we are in the menu
2007 if (activeMenu != null) {
2008 return;
2009 }
2010 while (windows.size() > 0) {
2011 closeWindow(windows.get(0));
2012 }
fca67db0
KL
2013 }
2014
2ce6dab2
KL
2015 /**
2016 * Re-layout the open windows as non-overlapping tiles. This produces
2017 * almost the same results as Turbo Pascal 7.0's IDE.
2018 */
2019 private void tileWindows() {
2020 synchronized (windows) {
2021 // Don't do anything if we are in the menu
2022 if (activeMenu != null) {
2023 return;
2024 }
2025 int z = windows.size();
2026 if (z == 0) {
2027 return;
2028 }
2029 int a = 0;
2030 int b = 0;
2031 a = (int)(Math.sqrt(z));
2032 int c = 0;
2033 while (c < a) {
2034 b = (z - c) / a;
2035 if (((a * b) + c) == z) {
2036 break;
2037 }
2038 c++;
2039 }
2040 assert (a > 0);
2041 assert (b > 0);
2042 assert (c < a);
2043 int newWidth = (getScreen().getWidth() / a);
2044 int newHeight1 = ((getScreen().getHeight() - 1) / b);
2045 int newHeight2 = ((getScreen().getHeight() - 1) / (b + c));
2046
2047 List<TWindow> sorted = new LinkedList<TWindow>(windows);
2048 Collections.sort(sorted);
2049 Collections.reverse(sorted);
2050 for (int i = 0; i < sorted.size(); i++) {
2051 int logicalX = i / b;
2052 int logicalY = i % b;
2053 if (i >= ((a - 1) * b)) {
2054 logicalX = a - 1;
2055 logicalY = i - ((a - 1) * b);
2056 }
2057
2058 TWindow w = sorted.get(i);
2059 w.setX(logicalX * newWidth);
2060 w.setWidth(newWidth);
2061 if (i >= ((a - 1) * b)) {
2062 w.setY((logicalY * newHeight2) + 1);
2063 w.setHeight(newHeight2);
2064 } else {
2065 w.setY((logicalY * newHeight1) + 1);
2066 w.setHeight(newHeight1);
2067 }
2068 }
2069 }
2070 }
2071
2072 /**
2073 * Re-layout the open windows as overlapping cascaded windows.
2074 */
2075 private void cascadeWindows() {
2076 synchronized (windows) {
2077 // Don't do anything if we are in the menu
2078 if (activeMenu != null) {
2079 return;
2080 }
2081 int x = 0;
2082 int y = 1;
2083 List<TWindow> sorted = new LinkedList<TWindow>(windows);
2084 Collections.sort(sorted);
2085 Collections.reverse(sorted);
2086 for (TWindow window: sorted) {
2087 window.setX(x);
2088 window.setY(y);
2089 x++;
2090 y++;
2091 if (x > getScreen().getWidth()) {
2092 x = 0;
2093 }
2094 if (y >= getScreen().getHeight()) {
2095 y = 1;
2096 }
2097 }
2098 }
2099 }
2100
a7986f7b
KL
2101 /**
2102 * Place a window to minimize its overlap with other windows.
2103 *
2104 * @param window the window to place
2105 */
2106 public final void doSmartPlacement(final TWindow window) {
2107 // This is a pretty dumb algorithm, but seems to work. The hardest
2108 // part is computing these "overlap" values seeking a minimum average
2109 // overlap.
2110 int xMin = 0;
2111 int yMin = desktopTop;
2112 int xMax = getScreen().getWidth() - window.getWidth() + 1;
2113 int yMax = desktopBottom - window.getHeight() + 1;
2114 if (xMax < xMin) {
2115 xMax = xMin;
2116 }
2117 if (yMax < yMin) {
2118 yMax = yMin;
2119 }
2120
2121 if ((xMin == xMax) && (yMin == yMax)) {
2122 // No work to do, bail out.
2123 return;
2124 }
2125
2126 // Compute the overlap matrix without the new window.
2127 int width = getScreen().getWidth();
2128 int height = getScreen().getHeight();
2129 int overlapMatrix[][] = new int[width][height];
2130 for (TWindow w: windows) {
2131 if (window == w) {
2132 continue;
2133 }
2134 for (int x = w.getX(); x < w.getX() + w.getWidth(); x++) {
9ff1c0e3
KL
2135 if (x < 0) {
2136 continue;
2137 }
8c236a98 2138 if (x >= width) {
a7986f7b
KL
2139 continue;
2140 }
2141 for (int y = w.getY(); y < w.getY() + w.getHeight(); y++) {
9ff1c0e3
KL
2142 if (y < 0) {
2143 continue;
2144 }
8c236a98 2145 if (y >= height) {
a7986f7b
KL
2146 continue;
2147 }
2148 overlapMatrix[x][y]++;
2149 }
2150 }
2151 }
2152
2153 long oldOverlapTotal = 0;
2154 long oldOverlapN = 0;
2155 for (int x = 0; x < width; x++) {
2156 for (int y = 0; y < height; y++) {
2157 oldOverlapTotal += overlapMatrix[x][y];
2158 if (overlapMatrix[x][y] > 0) {
2159 oldOverlapN++;
2160 }
2161 }
2162 }
2163
2164
2165 double oldOverlapAvg = (double) oldOverlapTotal / (double) oldOverlapN;
2166 boolean first = true;
2167 int windowX = window.getX();
2168 int windowY = window.getY();
2169
2170 // For each possible (x, y) position for the new window, compute a
2171 // new overlap matrix.
2172 for (int x = xMin; x < xMax; x++) {
2173 for (int y = yMin; y < yMax; y++) {
2174
2175 // Start with the matrix minus this window.
2176 int newMatrix[][] = new int[width][height];
2177 for (int mx = 0; mx < width; mx++) {
2178 for (int my = 0; my < height; my++) {
2179 newMatrix[mx][my] = overlapMatrix[mx][my];
2180 }
2181 }
2182
2183 // Add this window's values to the new overlap matrix.
2184 long newOverlapTotal = 0;
2185 long newOverlapN = 0;
2186 // Start by adding each new cell.
2187 for (int wx = x; wx < x + window.getWidth(); wx++) {
8c236a98 2188 if (wx >= width) {
a7986f7b
KL
2189 continue;
2190 }
2191 for (int wy = y; wy < y + window.getHeight(); wy++) {
8c236a98 2192 if (wy >= height) {
a7986f7b
KL
2193 continue;
2194 }
2195 newMatrix[wx][wy]++;
2196 }
2197 }
2198 // Now figure out the new value for total coverage.
2199 for (int mx = 0; mx < width; mx++) {
2200 for (int my = 0; my < height; my++) {
2201 newOverlapTotal += newMatrix[x][y];
2202 if (newMatrix[mx][my] > 0) {
2203 newOverlapN++;
2204 }
2205 }
2206 }
2207 double newOverlapAvg = (double) newOverlapTotal / (double) newOverlapN;
2208
2209 if (first) {
2210 // First time: just record what we got.
2211 oldOverlapAvg = newOverlapAvg;
2212 first = false;
2213 } else {
2214 // All other times: pick a new best (x, y) and save the
2215 // overlap value.
2216 if (newOverlapAvg < oldOverlapAvg) {
2217 windowX = x;
2218 windowY = y;
2219 oldOverlapAvg = newOverlapAvg;
2220 }
2221 }
2222
2223 } // for (int x = xMin; x < xMax; x++)
2224
2225 } // for (int y = yMin; y < yMax; y++)
2226
2227 // Finally, set the window's new coordinates.
2228 window.setX(windowX);
2229 window.setY(windowY);
2230 }
2231
2ce6dab2
KL
2232 // ------------------------------------------------------------------------
2233 // TMenu management -------------------------------------------------------
2234 // ------------------------------------------------------------------------
2235
fca67db0
KL
2236 /**
2237 * Check if a mouse event would hit either the active menu or any open
2238 * sub-menus.
2239 *
2240 * @param mouse mouse event
2241 * @return true if the mouse would hit the active menu or an open
2242 * sub-menu
2243 */
2244 private boolean mouseOnMenu(final TMouseEvent mouse) {
2245 assert (activeMenu != null);
2246 List<TMenu> menus = new LinkedList<TMenu>(subMenus);
2247 Collections.reverse(menus);
2248 for (TMenu menu: menus) {
2249 if (menu.mouseWouldHit(mouse)) {
2250 return true;
2251 }
2252 }
2253 return activeMenu.mouseWouldHit(mouse);
2254 }
2255
2256 /**
2257 * See if we need to switch window or activate the menu based on
2258 * a mouse click.
2259 *
2260 * @param mouse mouse event
2261 */
2262 private void checkSwitchFocus(final TMouseEvent mouse) {
2263
2264 if ((mouse.getType() == TMouseEvent.Type.MOUSE_DOWN)
2265 && (activeMenu != null)
2266 && (mouse.getAbsoluteY() != 0)
2267 && (!mouseOnMenu(mouse))
2268 ) {
2269 // They clicked outside the active menu, turn it off
2270 activeMenu.setActive(false);
2271 activeMenu = null;
2272 for (TMenu menu: subMenus) {
2273 menu.setActive(false);
2274 }
2275 subMenus.clear();
2276 // Continue checks
2277 }
2278
2279 // See if they hit the menu bar
2280 if ((mouse.getType() == TMouseEvent.Type.MOUSE_DOWN)
7c870d89 2281 && (mouse.isMouse1())
fca67db0
KL
2282 && (!modalWindowActive())
2283 && (mouse.getAbsoluteY() == 0)
2284 ) {
2285
2286 for (TMenu menu: subMenus) {
2287 menu.setActive(false);
2288 }
2289 subMenus.clear();
2290
2291 // They selected the menu, go activate it
2292 for (TMenu menu: menus) {
159f076d
KL
2293 if ((mouse.getAbsoluteX() >= menu.getTitleX())
2294 && (mouse.getAbsoluteX() < menu.getTitleX()
fca67db0
KL
2295 + menu.getTitle().length() + 2)
2296 ) {
2297 menu.setActive(true);
2298 activeMenu = menu;
2299 } else {
2300 menu.setActive(false);
2301 }
2302 }
fca67db0
KL
2303 return;
2304 }
2305
2306 // See if they hit the menu bar
2307 if ((mouse.getType() == TMouseEvent.Type.MOUSE_MOTION)
7c870d89 2308 && (mouse.isMouse1())
fca67db0
KL
2309 && (activeMenu != null)
2310 && (mouse.getAbsoluteY() == 0)
2311 ) {
2312
2313 TMenu oldMenu = activeMenu;
2314 for (TMenu menu: subMenus) {
2315 menu.setActive(false);
2316 }
2317 subMenus.clear();
2318
2319 // See if we should switch menus
2320 for (TMenu menu: menus) {
159f076d
KL
2321 if ((mouse.getAbsoluteX() >= menu.getTitleX())
2322 && (mouse.getAbsoluteX() < menu.getTitleX()
fca67db0
KL
2323 + menu.getTitle().length() + 2)
2324 ) {
2325 menu.setActive(true);
2326 activeMenu = menu;
2327 }
2328 }
2329 if (oldMenu != activeMenu) {
2330 // They switched menus
2331 oldMenu.setActive(false);
2332 }
fca67db0
KL
2333 return;
2334 }
2335
72fca17b
KL
2336 // If a menu is still active, don't switch windows
2337 if (activeMenu != null) {
fca67db0
KL
2338 return;
2339 }
2340
72fca17b
KL
2341 // Only switch if there are multiple windows
2342 if (windows.size() < 2) {
fca67db0
KL
2343 return;
2344 }
2345
72fca17b
KL
2346 if (((focusFollowsMouse == true)
2347 && (mouse.getType() == TMouseEvent.Type.MOUSE_MOTION))
2348 || (mouse.getType() == TMouseEvent.Type.MOUSE_UP)
2349 ) {
2350 synchronized (windows) {
2351 Collections.sort(windows);
2352 if (windows.get(0).isModal()) {
2353 // Modal windows don't switch
2354 return;
2355 }
fca67db0 2356
72fca17b
KL
2357 for (TWindow window: windows) {
2358 assert (!window.isModal());
92453213 2359
72fca17b
KL
2360 if (window.isHidden()) {
2361 assert (!window.isActive());
2362 continue;
2363 }
92453213 2364
72fca17b
KL
2365 if (window.mouseWouldHit(mouse)) {
2366 if (window == windows.get(0)) {
2367 // Clicked on the same window, nothing to do
2368 assert (window.isActive());
2369 return;
2370 }
2371
2372 // We will be switching to another window
2373 assert (windows.get(0).isActive());
2374 assert (windows.get(0) == activeWindow);
2375 assert (!window.isActive());
2376 activeWindow.onUnfocus();
2377 activeWindow.setActive(false);
2378 activeWindow.setZ(window.getZ());
2379 activeWindow = window;
2380 window.setZ(0);
2381 window.setActive(true);
2382 window.onFocus();
bb35d919
KL
2383 return;
2384 }
fca67db0 2385 }
fca67db0 2386 }
72fca17b
KL
2387
2388 // Clicked on the background, nothing to do
2389 return;
fca67db0
KL
2390 }
2391
72fca17b
KL
2392 // Nothing to do: this isn't a mouse up, or focus isn't following
2393 // mouse.
fca67db0
KL
2394 return;
2395 }
2396
2397 /**
2398 * Turn off the menu.
2399 */
928811d8 2400 public final void closeMenu() {
fca67db0
KL
2401 if (activeMenu != null) {
2402 activeMenu.setActive(false);
2403 activeMenu = null;
2404 for (TMenu menu: subMenus) {
2405 menu.setActive(false);
2406 }
2407 subMenus.clear();
2408 }
fca67db0
KL
2409 }
2410
e8a11f98
KL
2411 /**
2412 * Get a (shallow) copy of the menu list.
2413 *
2414 * @return a copy of the menu list
2415 */
2416 public final List<TMenu> getAllMenus() {
2417 return new LinkedList<TMenu>(menus);
2418 }
2419
2420 /**
2421 * Add a top-level menu to the list.
2422 *
2423 * @param menu the menu to add
2424 * @throws IllegalArgumentException if the menu is already used in
2425 * another TApplication
2426 */
2427 public final void addMenu(final TMenu menu) {
2428 if ((menu.getApplication() != null)
2429 && (menu.getApplication() != this)
2430 ) {
2431 throw new IllegalArgumentException("Menu " + menu + " is already " +
2432 "part of application " + menu.getApplication());
2433 }
2434 closeMenu();
2435 menus.add(menu);
2436 recomputeMenuX();
2437 }
2438
2439 /**
2440 * Remove a top-level menu from the list.
2441 *
2442 * @param menu the menu to remove
2443 * @throws IllegalArgumentException if the menu is already used in
2444 * another TApplication
2445 */
2446 public final void removeMenu(final TMenu menu) {
2447 if ((menu.getApplication() != null)
2448 && (menu.getApplication() != this)
2449 ) {
2450 throw new IllegalArgumentException("Menu " + menu + " is already " +
2451 "part of application " + menu.getApplication());
2452 }
2453 closeMenu();
2454 menus.remove(menu);
2455 recomputeMenuX();
2456 }
2457
fca67db0
KL
2458 /**
2459 * Turn off a sub-menu.
2460 */
928811d8 2461 public final void closeSubMenu() {
fca67db0
KL
2462 assert (activeMenu != null);
2463 TMenu item = subMenus.get(subMenus.size() - 1);
2464 assert (item != null);
2465 item.setActive(false);
2466 subMenus.remove(subMenus.size() - 1);
fca67db0
KL
2467 }
2468
2469 /**
2470 * Switch to the next menu.
2471 *
2472 * @param forward if true, then switch to the next menu in the list,
2473 * otherwise switch to the previous menu in the list
2474 */
928811d8 2475 public final void switchMenu(final boolean forward) {
fca67db0
KL
2476 assert (activeMenu != null);
2477
2478 for (TMenu menu: subMenus) {
2479 menu.setActive(false);
2480 }
2481 subMenus.clear();
2482
2483 for (int i = 0; i < menus.size(); i++) {
2484 if (activeMenu == menus.get(i)) {
2485 if (forward) {
2486 if (i < menus.size() - 1) {
2487 i++;
2488 }
2489 } else {
2490 if (i > 0) {
2491 i--;
2492 }
2493 }
2494 activeMenu.setActive(false);
2495 activeMenu = menus.get(i);
2496 activeMenu.setActive(true);
fca67db0
KL
2497 return;
2498 }
2499 }
2500 }
2501
928811d8 2502 /**
efb7af1f
KL
2503 * Add a menu item to the global list. If it has a keyboard accelerator,
2504 * that will be added the global hash.
928811d8 2505 *
efb7af1f 2506 * @param item the menu item
928811d8 2507 */
efb7af1f
KL
2508 public final void addMenuItem(final TMenuItem item) {
2509 menuItems.add(item);
2510
2511 TKeypress key = item.getKey();
2512 if (key != null) {
2513 synchronized (accelerators) {
2514 assert (accelerators.get(key) == null);
2515 accelerators.put(key.toLowerCase(), item);
2516 }
2517 }
2518 }
2519
2520 /**
2521 * Disable one menu item.
2522 *
2523 * @param id the menu item ID
2524 */
2525 public final void disableMenuItem(final int id) {
2526 for (TMenuItem item: menuItems) {
2527 if (item.getId() == id) {
2528 item.setEnabled(false);
2529 }
2530 }
2531 }
e826b451 2532
efb7af1f
KL
2533 /**
2534 * Disable the range of menu items with ID's between lower and upper,
2535 * inclusive.
2536 *
2537 * @param lower the lowest menu item ID
2538 * @param upper the highest menu item ID
2539 */
2540 public final void disableMenuItems(final int lower, final int upper) {
2541 for (TMenuItem item: menuItems) {
2542 if ((item.getId() >= lower) && (item.getId() <= upper)) {
2543 item.setEnabled(false);
2544 }
2545 }
2546 }
2547
2548 /**
2549 * Enable one menu item.
2550 *
2551 * @param id the menu item ID
2552 */
2553 public final void enableMenuItem(final int id) {
2554 for (TMenuItem item: menuItems) {
2555 if (item.getId() == id) {
2556 item.setEnabled(true);
2557 }
2558 }
2559 }
2560
2561 /**
2562 * Enable the range of menu items with ID's between lower and upper,
2563 * inclusive.
2564 *
2565 * @param lower the lowest menu item ID
2566 * @param upper the highest menu item ID
2567 */
2568 public final void enableMenuItems(final int lower, final int upper) {
2569 for (TMenuItem item: menuItems) {
2570 if ((item.getId() >= lower) && (item.getId() <= upper)) {
2571 item.setEnabled(true);
2572 }
e826b451 2573 }
928811d8
KL
2574 }
2575
2576 /**
2577 * Recompute menu x positions based on their title length.
2578 */
2579 public final void recomputeMenuX() {
2580 int x = 0;
2581 for (TMenu menu: menus) {
2582 menu.setX(x);
159f076d 2583 menu.setTitleX(x);
928811d8 2584 x += menu.getTitle().length() + 2;
68c5cd6b
KL
2585
2586 // Don't let the menu window exceed the screen width
2587 int rightEdge = menu.getX() + menu.getWidth();
2588 if (rightEdge > getScreen().getWidth()) {
2589 menu.setX(getScreen().getWidth() - menu.getWidth());
2590 }
928811d8
KL
2591 }
2592 }
2593
b2d49e0f
KL
2594 /**
2595 * Post an event to process.
2596 *
2597 * @param event new event to add to the queue
2598 */
2599 public final void postEvent(final TInputEvent event) {
2600 synchronized (this) {
2601 synchronized (fillEventQueue) {
2602 fillEventQueue.add(event);
2603 }
2604 if (debugThreads) {
2605 System.err.println(System.currentTimeMillis() + " " +
2606 Thread.currentThread() + " postEvent() wake up main");
2607 }
2608 this.notify();
2609 }
2610 }
2611
928811d8
KL
2612 /**
2613 * Post an event to process and turn off the menu.
2614 *
2615 * @param event new event to add to the queue
2616 */
5dfd1c11 2617 public final void postMenuEvent(final TInputEvent event) {
be72cb5c
KL
2618 synchronized (this) {
2619 synchronized (fillEventQueue) {
2620 fillEventQueue.add(event);
2621 }
2622 if (debugThreads) {
2623 System.err.println(System.currentTimeMillis() + " " +
2624 Thread.currentThread() + " postMenuEvent() wake up main");
2625 }
2626 closeMenu();
2627 this.notify();
8e688b92 2628 }
928811d8
KL
2629 }
2630
2631 /**
2632 * Add a sub-menu to the list of open sub-menus.
2633 *
2634 * @param menu sub-menu
2635 */
2636 public final void addSubMenu(final TMenu menu) {
2637 subMenus.add(menu);
2638 }
2639
8e688b92
KL
2640 /**
2641 * Convenience function to add a top-level menu.
2642 *
2643 * @param title menu title
2644 * @return the new menu
2645 */
87a17f3c 2646 public final TMenu addMenu(final String title) {
8e688b92
KL
2647 int x = 0;
2648 int y = 0;
2649 TMenu menu = new TMenu(this, x, y, title);
2650 menus.add(menu);
2651 recomputeMenuX();
2652 return menu;
2653 }
2654
2655 /**
2656 * Convenience function to add a default "File" menu.
2657 *
2658 * @return the new menu
2659 */
2660 public final TMenu addFileMenu() {
339652cc 2661 TMenu fileMenu = addMenu(i18n.getString("fileMenuTitle"));
8e688b92
KL
2662 fileMenu.addDefaultItem(TMenu.MID_OPEN_FILE);
2663 fileMenu.addSeparator();
2664 fileMenu.addDefaultItem(TMenu.MID_SHELL);
2665 fileMenu.addDefaultItem(TMenu.MID_EXIT);
339652cc
KL
2666 TStatusBar statusBar = fileMenu.newStatusBar(i18n.
2667 getString("fileMenuStatus"));
2668 statusBar.addShortcutKeypress(kbF1, cmHelp, i18n.getString("Help"));
8e688b92
KL
2669 return fileMenu;
2670 }
2671
2672 /**
2673 * Convenience function to add a default "Edit" menu.
2674 *
2675 * @return the new menu
2676 */
2677 public final TMenu addEditMenu() {
339652cc 2678 TMenu editMenu = addMenu(i18n.getString("editMenuTitle"));
8e688b92
KL
2679 editMenu.addDefaultItem(TMenu.MID_CUT);
2680 editMenu.addDefaultItem(TMenu.MID_COPY);
2681 editMenu.addDefaultItem(TMenu.MID_PASTE);
2682 editMenu.addDefaultItem(TMenu.MID_CLEAR);
339652cc
KL
2683 TStatusBar statusBar = editMenu.newStatusBar(i18n.
2684 getString("editMenuStatus"));
2685 statusBar.addShortcutKeypress(kbF1, cmHelp, i18n.getString("Help"));
8e688b92
KL
2686 return editMenu;
2687 }
2688
2689 /**
2690 * Convenience function to add a default "Window" menu.
2691 *
2692 * @return the new menu
2693 */
c6940ed9 2694 public final TMenu addWindowMenu() {
339652cc 2695 TMenu windowMenu = addMenu(i18n.getString("windowMenuTitle"));
8e688b92
KL
2696 windowMenu.addDefaultItem(TMenu.MID_TILE);
2697 windowMenu.addDefaultItem(TMenu.MID_CASCADE);
2698 windowMenu.addDefaultItem(TMenu.MID_CLOSE_ALL);
2699 windowMenu.addSeparator();
2700 windowMenu.addDefaultItem(TMenu.MID_WINDOW_MOVE);
2701 windowMenu.addDefaultItem(TMenu.MID_WINDOW_ZOOM);
2702 windowMenu.addDefaultItem(TMenu.MID_WINDOW_NEXT);
2703 windowMenu.addDefaultItem(TMenu.MID_WINDOW_PREVIOUS);
2704 windowMenu.addDefaultItem(TMenu.MID_WINDOW_CLOSE);
339652cc
KL
2705 TStatusBar statusBar = windowMenu.newStatusBar(i18n.
2706 getString("windowMenuStatus"));
2707 statusBar.addShortcutKeypress(kbF1, cmHelp, i18n.getString("Help"));
8e688b92
KL
2708 return windowMenu;
2709 }
2710
55d2b2c2
KL
2711 /**
2712 * Convenience function to add a default "Help" menu.
2713 *
2714 * @return the new menu
2715 */
2716 public final TMenu addHelpMenu() {
339652cc 2717 TMenu helpMenu = addMenu(i18n.getString("helpMenuTitle"));
55d2b2c2
KL
2718 helpMenu.addDefaultItem(TMenu.MID_HELP_CONTENTS);
2719 helpMenu.addDefaultItem(TMenu.MID_HELP_INDEX);
2720 helpMenu.addDefaultItem(TMenu.MID_HELP_SEARCH);
2721 helpMenu.addDefaultItem(TMenu.MID_HELP_PREVIOUS);
2722 helpMenu.addDefaultItem(TMenu.MID_HELP_HELP);
2723 helpMenu.addDefaultItem(TMenu.MID_HELP_ACTIVE_FILE);
2724 helpMenu.addSeparator();
2725 helpMenu.addDefaultItem(TMenu.MID_ABOUT);
339652cc
KL
2726 TStatusBar statusBar = helpMenu.newStatusBar(i18n.
2727 getString("helpMenuStatus"));
2728 statusBar.addShortcutKeypress(kbF1, cmHelp, i18n.getString("Help"));
55d2b2c2
KL
2729 return helpMenu;
2730 }
2731
2ce6dab2
KL
2732 // ------------------------------------------------------------------------
2733 // TTimer management ------------------------------------------------------
2734 // ------------------------------------------------------------------------
2735
8e688b92 2736 /**
2ce6dab2
KL
2737 * Get the amount of time I can sleep before missing a Timer tick.
2738 *
2739 * @param timeout = initial (maximum) timeout in millis
2740 * @return number of milliseconds between now and the next timer event
8e688b92 2741 */
2ce6dab2
KL
2742 private long getSleepTime(final long timeout) {
2743 Date now = new Date();
2744 long nowTime = now.getTime();
2745 long sleepTime = timeout;
2ce6dab2 2746
be72cb5c
KL
2747 synchronized (timers) {
2748 for (TTimer timer: timers) {
2749 long nextTickTime = timer.getNextTick().getTime();
2750 if (nextTickTime < nowTime) {
2751 return 0;
2752 }
2753
2754 long timeDifference = nextTickTime - nowTime;
2755 if (timeDifference < sleepTime) {
2756 sleepTime = timeDifference;
2757 }
8e688b92
KL
2758 }
2759 }
be72cb5c 2760
2ce6dab2
KL
2761 assert (sleepTime >= 0);
2762 assert (sleepTime <= timeout);
2763 return sleepTime;
8e688b92
KL
2764 }
2765
d502a0e9
KL
2766 /**
2767 * Convenience function to add a timer.
2768 *
2769 * @param duration number of milliseconds to wait between ticks
2770 * @param recurring if true, re-schedule this timer after every tick
2771 * @param action function to call when button is pressed
c6940ed9 2772 * @return the timer
d502a0e9
KL
2773 */
2774 public final TTimer addTimer(final long duration, final boolean recurring,
2775 final TAction action) {
2776
2777 TTimer timer = new TTimer(duration, recurring, action);
2778 synchronized (timers) {
2779 timers.add(timer);
2780 }
2781 return timer;
2782 }
2783
2784 /**
2785 * Convenience function to remove a timer.
2786 *
2787 * @param timer timer to remove
2788 */
2789 public final void removeTimer(final TTimer timer) {
2790 synchronized (timers) {
2791 timers.remove(timer);
2792 }
2793 }
2794
2ce6dab2
KL
2795 // ------------------------------------------------------------------------
2796 // Other TWindow constructors ---------------------------------------------
2797 // ------------------------------------------------------------------------
2798
c6940ed9
KL
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 * @return the new message box
2806 */
2807 public final TMessageBox messageBox(final String title,
2808 final String caption) {
2809
2810 return new TMessageBox(this, title, caption, TMessageBox.Type.OK);
2811 }
2812
2813 /**
2814 * Convenience function to spawn a message box.
2815 *
2816 * @param title window title, will be centered along the top border
2817 * @param caption message to display. Use embedded newlines to get a
2818 * multi-line box.
2819 * @param type one of the TMessageBox.Type constants. Default is
2820 * Type.OK.
2821 * @return the new message box
2822 */
2823 public final TMessageBox messageBox(final String title,
2824 final String caption, final TMessageBox.Type type) {
2825
2826 return new TMessageBox(this, title, caption, type);
2827 }
2828
2829 /**
2830 * Convenience function to spawn an input box.
2831 *
2832 * @param title window title, will be centered along the top border
2833 * @param caption message to display. Use embedded newlines to get a
2834 * multi-line box.
2835 * @return the new input box
2836 */
2837 public final TInputBox inputBox(final String title, final String caption) {
2838
2839 return new TInputBox(this, title, caption);
2840 }
2841
2842 /**
2843 * Convenience function to spawn an input box.
2844 *
2845 * @param title window title, will be centered along the top border
2846 * @param caption message to display. Use embedded newlines to get a
2847 * multi-line box.
2848 * @param text initial text to seed the field with
2849 * @return the new input box
2850 */
2851 public final TInputBox inputBox(final String title, final String caption,
2852 final String text) {
2853
2854 return new TInputBox(this, title, caption, text);
2855 }
1ac2ccb1 2856
34a42e78
KL
2857 /**
2858 * Convenience function to open a terminal window.
2859 *
2860 * @param x column relative to parent
2861 * @param y row relative to parent
2862 * @return the terminal new window
2863 */
2864 public final TTerminalWindow openTerminal(final int x, final int y) {
2865 return openTerminal(x, y, TWindow.RESIZABLE);
2866 }
2867
2868 /**
2869 * Convenience function to open a terminal window.
2870 *
2871 * @param x column relative to parent
2872 * @param y row relative to parent
2873 * @param flags mask of CENTERED, MODAL, or RESIZABLE
2874 * @return the terminal new window
2875 */
2876 public final TTerminalWindow openTerminal(final int x, final int y,
2877 final int flags) {
2878
2879 return new TTerminalWindow(this, x, y, flags);
2880 }
2881
6f8ff91a
KL
2882 /**
2883 * Convenience function to open a terminal window and execute a custom
2884 * command line inside it.
2885 *
2886 * @param x column relative to parent
2887 * @param y row relative to parent
2888 * @param commandLine the command line to execute
2889 * @return the terminal new window
2890 */
2891 public final TTerminalWindow openTerminal(final int x, final int y,
2892 final String commandLine) {
2893
2894 return openTerminal(x, y, TWindow.RESIZABLE, commandLine);
2895 }
2896
a0d734e6
KL
2897 /**
2898 * Convenience function to open a terminal window and execute a custom
2899 * command line inside it.
2900 *
2901 * @param x column relative to parent
2902 * @param y row relative to parent
2903 * @param flags mask of CENTERED, MODAL, or RESIZABLE
2904 * @param command the command line to execute
2905 * @return the terminal new window
2906 */
2907 public final TTerminalWindow openTerminal(final int x, final int y,
2908 final int flags, final String [] command) {
2909
2910 return new TTerminalWindow(this, x, y, flags, command);
2911 }
2912
6f8ff91a
KL
2913 /**
2914 * Convenience function to open a terminal window and execute a custom
2915 * command line inside it.
2916 *
2917 * @param x column relative to parent
2918 * @param y row relative to parent
2919 * @param flags mask of CENTERED, MODAL, or RESIZABLE
2920 * @param commandLine the command line to execute
2921 * @return the terminal new window
2922 */
2923 public final TTerminalWindow openTerminal(final int x, final int y,
2924 final int flags, final String commandLine) {
2925
a0d734e6 2926 return new TTerminalWindow(this, x, y, flags, commandLine.split("\\s"));
6f8ff91a
KL
2927 }
2928
0d47c546
KL
2929 /**
2930 * Convenience function to spawn an file open box.
2931 *
2932 * @param path path of selected file
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) throws IOException {
2937
2938 TFileOpenBox box = new TFileOpenBox(this, path, TFileOpenBox.Type.OPEN);
2939 return box.getFilename();
2940 }
2941
2942 /**
2943 * Convenience function to spawn an file open box.
2944 *
2945 * @param path path of selected file
2946 * @param type one of the Type constants
2947 * @return the result of the new file open box
329fd62e 2948 * @throws IOException if java.io operation throws
0d47c546
KL
2949 */
2950 public final String fileOpenBox(final String path,
2951 final TFileOpenBox.Type type) throws IOException {
2952
2953 TFileOpenBox box = new TFileOpenBox(this, path, type);
2954 return box.getFilename();
2955 }
2956
92453213
KL
2957 /**
2958 * Convenience function to create a new window and make it active.
2959 * Window will be located at (0, 0).
2960 *
2961 * @param title window title, will be centered along the top border
2962 * @param width width of window
2963 * @param height height of window
43ad7b6c 2964 * @return the new window
92453213
KL
2965 */
2966 public final TWindow addWindow(final String title, final int width,
2967 final int height) {
2968
2969 TWindow window = new TWindow(this, title, 0, 0, width, height);
2970 return window;
2971 }
1978ad50 2972
92453213
KL
2973 /**
2974 * Convenience function to create a new window and make it active.
2975 * Window will be located at (0, 0).
2976 *
2977 * @param title window title, will be centered along the top border
2978 * @param width width of window
2979 * @param height height of window
2980 * @param flags bitmask of RESIZABLE, CENTERED, or MODAL
43ad7b6c 2981 * @return the new window
92453213
KL
2982 */
2983 public final TWindow addWindow(final String title,
2984 final int width, final int height, final int flags) {
2985
2986 TWindow window = new TWindow(this, title, 0, 0, width, height, flags);
2987 return window;
2988 }
2989
2990 /**
2991 * Convenience function to create a new window and make it active.
2992 *
2993 * @param title window title, will be centered along the top border
2994 * @param x column relative to parent
2995 * @param y row relative to parent
2996 * @param width width of window
2997 * @param height height of window
43ad7b6c 2998 * @return the new window
92453213
KL
2999 */
3000 public final TWindow addWindow(final String title,
3001 final int x, final int y, final int width, final int height) {
3002
3003 TWindow window = new TWindow(this, title, x, y, width, height);
3004 return window;
3005 }
3006
3007 /**
3008 * Convenience function to create a new window and make it active.
3009 *
92453213
KL
3010 * @param title window title, will be centered along the top border
3011 * @param x column relative to parent
3012 * @param y row relative to parent
3013 * @param width width of window
3014 * @param height height of window
3015 * @param flags mask of RESIZABLE, CENTERED, or MODAL
43ad7b6c 3016 * @return the new window
92453213
KL
3017 */
3018 public final TWindow addWindow(final String title,
3019 final int x, final int y, final int width, final int height,
3020 final int flags) {
3021
3022 TWindow window = new TWindow(this, title, x, y, width, height, flags);
3023 return window;
3024 }
3025
1978ad50
KL
3026 /**
3027 * Convenience function to open a file in an editor window and make it
3028 * active.
3029 *
3030 * @param file the file to open
43ad7b6c 3031 * @return the new editor window
1978ad50
KL
3032 * @throws IOException if a java.io operation throws
3033 */
3034 public final TEditorWindow addEditor(final File file) throws IOException {
3035
3036 TEditorWindow editor = new TEditorWindow(this, file);
3037 return editor;
3038 }
3039
7d4115a5 3040}