LICENSE CHANGED TO MIT
[nikiroo-utils.git] / src / jexer / backend / SwingBackend.java
1 /*
2 * Jexer - Java Text User Interface
3 *
4 * The MIT License (MIT)
5 *
6 * Copyright (C) 2016 Kevin Lamonte
7 *
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:
14 *
15 * The above copyright notice and this permission notice shall be included in
16 * all copies or substantial portions of the Software.
17 *
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.
25 *
26 * @author Kevin Lamonte [kevin.lamonte@gmail.com]
27 * @version 1
28 */
29 package jexer.backend;
30
31 import java.util.List;
32
33 import jexer.event.TInputEvent;
34 import jexer.io.SwingScreen;
35 import jexer.io.SwingTerminal;
36
37 /**
38 * This class uses standard Swing calls to handle screen, keyboard, and mouse
39 * I/O.
40 */
41 public final class SwingBackend extends Backend {
42
43 /**
44 * Input events are processed by this Terminal.
45 */
46 private SwingTerminal terminal;
47
48 /**
49 * Public constructor.
50 *
51 * @param listener the object this backend needs to wake up when new
52 * input comes in
53 */
54 public SwingBackend(final Object listener) {
55 // Create a screen
56 SwingScreen screen = new SwingScreen();
57 this.screen = screen;
58
59 // Create the Swing event listeners
60 terminal = new SwingTerminal(listener, screen);
61
62 // Hang onto the session info
63 this.sessionInfo = terminal.getSessionInfo();
64 }
65
66 /**
67 * Sync the logical screen to the physical device.
68 */
69 @Override
70 public void flushScreen() {
71 screen.flushPhysical();
72 }
73
74 /**
75 * Get keyboard, mouse, and screen resize events.
76 *
77 * @param queue list to append new events to
78 */
79 @Override
80 public void getEvents(final List<TInputEvent> queue) {
81 if (terminal.hasEvents()) {
82 terminal.getEvents(queue);
83 }
84 }
85
86 /**
87 * Close the I/O, restore the console, etc.
88 */
89 @Override
90 public void shutdown() {
91 ((SwingScreen) screen).shutdown();
92 }
93
94 }