X-Git-Url: http://git.nikiroo.be/?a=blobdiff_plain;f=src%2Fjexer%2Fio%2FSwingTerminal.java;h=9f1746f3de31b831ee7bad63ea0fbe001350f460;hb=e16dda65585466c8987bd1efd718431450a96605;hp=3f3d8e3976246becca2043c69c4a888d1a06b3cf;hpb=a4406f4ed7f163b7ab0adce2e710b74d1175b1f3;p=nikiroo-utils.git diff --git a/src/jexer/io/SwingTerminal.java b/src/jexer/io/SwingTerminal.java index 3f3d8e3..9f1746f 100644 --- a/src/jexer/io/SwingTerminal.java +++ b/src/jexer/io/SwingTerminal.java @@ -1,29 +1,27 @@ -/** +/* * Jexer - Java Text User Interface * - * License: LGPLv3 or later - * - * This module is licensed under the GNU Lesser General Public License - * Version 3. Please see the file "COPYING" in this directory for more - * information about the GNU Lesser General Public License Version 3. + * The MIT License (MIT) * - * Copyright (C) 2015 Kevin Lamonte + * Copyright (C) 2016 Kevin Lamonte * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public License - * as published by the Free Software Foundation; either version 3 of - * the License, or (at your option) any later version. + * Permission is hereby granted, free of charge, to any person obtaining a + * copy of this software and associated documentation files (the "Software"), + * to deal in the Software without restriction, including without limitation + * the rights to use, copy, modify, merge, publish, distribute, sublicense, + * and/or sell copies of the Software, and to permit persons to whom the + * Software is furnished to do so, subject to the following conditions: * - * This program is distributed in the hope that it will be useful, but - * WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * General Public License for more details. + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. * - * You should have received a copy of the GNU Lesser General Public - * License along with this program; if not, see - * http://www.gnu.org/licenses/, or write to the Free Software - * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA - * 02110-1301 USA + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL + * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER + * DEALINGS IN THE SOFTWARE. * * @author Kevin Lamonte [kevin.lamonte@gmail.com] * @version 1 @@ -151,14 +149,6 @@ public final class SwingTerminal implements ComponentListener, KeyListener, screen.frame.addMouseWheelListener(this); } - /** - * Restore terminal to normal state. - */ - public void shutdown() { - // System.err.println("=== shutdown() ==="); System.err.flush(); - screen.frame.dispose(); - } - /** * Return any events in the IO queue. * @@ -180,7 +170,6 @@ public final class SwingTerminal implements ComponentListener, KeyListener, * * @param key keystroke received */ - @Override public void keyReleased(final KeyEvent key) { // Ignore release events } @@ -190,7 +179,6 @@ public final class SwingTerminal implements ComponentListener, KeyListener, * * @param key keystroke received */ - @Override public void keyTyped(final KeyEvent key) { // Ignore typed events } @@ -200,7 +188,6 @@ public final class SwingTerminal implements ComponentListener, KeyListener, * * @param key keystroke received */ - @Override public void keyPressed(final KeyEvent key) { boolean alt = false; boolean shift = false; @@ -405,7 +392,6 @@ public final class SwingTerminal implements ComponentListener, KeyListener, * * @param event window event received */ - @Override public void windowActivated(final WindowEvent event) { // Force a total repaint synchronized (screen) { @@ -418,7 +404,6 @@ public final class SwingTerminal implements ComponentListener, KeyListener, * * @param event window event received */ - @Override public void windowClosed(final WindowEvent event) { // Ignore } @@ -428,7 +413,6 @@ public final class SwingTerminal implements ComponentListener, KeyListener, * * @param event window event received */ - @Override public void windowClosing(final WindowEvent event) { // Drop a cmAbort and walk away synchronized (eventQueue) { @@ -444,7 +428,6 @@ public final class SwingTerminal implements ComponentListener, KeyListener, * * @param event window event received */ - @Override public void windowDeactivated(final WindowEvent event) { // Ignore } @@ -454,7 +437,6 @@ public final class SwingTerminal implements ComponentListener, KeyListener, * * @param event window event received */ - @Override public void windowDeiconified(final WindowEvent event) { // Ignore } @@ -464,7 +446,6 @@ public final class SwingTerminal implements ComponentListener, KeyListener, * * @param event window event received */ - @Override public void windowIconified(final WindowEvent event) { // Ignore } @@ -474,7 +455,6 @@ public final class SwingTerminal implements ComponentListener, KeyListener, * * @param event window event received */ - @Override public void windowOpened(final WindowEvent event) { // Ignore } @@ -484,7 +464,6 @@ public final class SwingTerminal implements ComponentListener, KeyListener, * * @param event component event received */ - @Override public void componentHidden(final ComponentEvent event) { // Ignore } @@ -494,7 +473,6 @@ public final class SwingTerminal implements ComponentListener, KeyListener, * * @param event component event received */ - @Override public void componentShown(final ComponentEvent event) { // Ignore } @@ -504,7 +482,6 @@ public final class SwingTerminal implements ComponentListener, KeyListener, * * @param event component event received */ - @Override public void componentMoved(final ComponentEvent event) { // Ignore } @@ -514,7 +491,6 @@ public final class SwingTerminal implements ComponentListener, KeyListener, * * @param event component event received */ - @Override public void componentResized(final ComponentEvent event) { // Drop a new TResizeEvent into the queue sessionInfo.queryWindowSize(); @@ -533,7 +509,6 @@ public final class SwingTerminal implements ComponentListener, KeyListener, * * @param mouse mouse event received */ - @Override public void mouseDragged(final MouseEvent mouse) { int modifiers = mouse.getModifiersEx(); boolean eventMouse1 = false; @@ -570,7 +545,6 @@ public final class SwingTerminal implements ComponentListener, KeyListener, * * @param mouse mouse event received */ - @Override public void mouseMoved(final MouseEvent mouse) { int x = screen.textColumn(mouse.getX()); int y = screen.textRow(mouse.getY()); @@ -597,7 +571,6 @@ public final class SwingTerminal implements ComponentListener, KeyListener, * * @param mouse mouse event received */ - @Override public void mouseClicked(final MouseEvent mouse) { // Ignore } @@ -607,7 +580,6 @@ public final class SwingTerminal implements ComponentListener, KeyListener, * * @param mouse mouse event received */ - @Override public void mouseEntered(final MouseEvent mouse) { // Ignore } @@ -617,7 +589,6 @@ public final class SwingTerminal implements ComponentListener, KeyListener, * * @param mouse mouse event received */ - @Override public void mouseExited(final MouseEvent mouse) { // Ignore } @@ -627,7 +598,6 @@ public final class SwingTerminal implements ComponentListener, KeyListener, * * @param mouse mouse event received */ - @Override public void mousePressed(final MouseEvent mouse) { int modifiers = mouse.getModifiersEx(); boolean eventMouse1 = false; @@ -664,7 +634,6 @@ public final class SwingTerminal implements ComponentListener, KeyListener, * * @param mouse mouse event received */ - @Override public void mouseReleased(final MouseEvent mouse) { int modifiers = mouse.getModifiersEx(); boolean eventMouse1 = false; @@ -710,7 +679,6 @@ public final class SwingTerminal implements ComponentListener, KeyListener, * * @param mouse mouse event received */ - @Override public void mouseWheelMoved(final MouseWheelEvent mouse) { int modifiers = mouse.getModifiersEx(); boolean eventMouse1 = false;