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