2 * Jexer - Java Text User Interface
4 * The MIT License (MIT)
6 * Copyright (C) 2017 Kevin Lamonte
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:
15 * The above copyright notice and this permission notice shall be included in
16 * all copies or substantial portions of the Software.
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.
26 * @author Kevin Lamonte [kevin.lamonte@gmail.com]
29 package jexer
.backend
;
31 import java
.awt
.BorderLayout
;
32 import java
.awt
.Color
;
34 import java
.awt
.FontMetrics
;
35 import java
.awt
.Graphics2D
;
36 import java
.awt
.Graphics
;
37 import java
.awt
.Insets
;
38 import java
.awt
.Rectangle
;
39 import java
.awt
.event
.ComponentEvent
;
40 import java
.awt
.event
.ComponentListener
;
41 import java
.awt
.event
.KeyEvent
;
42 import java
.awt
.event
.KeyListener
;
43 import java
.awt
.event
.MouseEvent
;
44 import java
.awt
.event
.MouseListener
;
45 import java
.awt
.event
.MouseMotionListener
;
46 import java
.awt
.event
.MouseWheelEvent
;
47 import java
.awt
.event
.MouseWheelListener
;
48 import java
.awt
.event
.WindowEvent
;
49 import java
.awt
.event
.WindowListener
;
50 import java
.awt
.geom
.Rectangle2D
;
51 import java
.awt
.image
.BufferedImage
;
52 import java
.io
.InputStream
;
53 import java
.util
.Date
;
54 import java
.util
.HashMap
;
55 import java
.util
.LinkedList
;
56 import java
.util
.List
;
57 import javax
.swing
.JComponent
;
58 import javax
.swing
.JFrame
;
59 import javax
.swing
.SwingUtilities
;
61 import jexer
.TKeypress
;
62 import jexer
.bits
.Cell
;
63 import jexer
.bits
.CellAttributes
;
64 import jexer
.event
.TCommandEvent
;
65 import jexer
.event
.TInputEvent
;
66 import jexer
.event
.TKeypressEvent
;
67 import jexer
.event
.TMouseEvent
;
68 import jexer
.event
.TResizeEvent
;
69 import static jexer
.TCommand
.*;
70 import static jexer
.TKeypress
.*;
73 * This Screen backend reads keystrokes and mouse events and draws to either
74 * a Java Swing JFrame (potentially triple-buffered) or a JComponent.
76 * This class is a bit of an inversion of typical GUI classes. It performs
77 * all of the drawing logic from SwingTerminal (which is not a Swing class),
78 * and uses a SwingComponent wrapper class to call the JFrame or JComponent
81 public final class SwingTerminal
extends LogicalScreen
82 implements TerminalReader
,
83 ComponentListener
, KeyListener
,
84 MouseListener
, MouseMotionListener
,
85 MouseWheelListener
, WindowListener
{
88 * The Swing component or frame to draw to.
90 private SwingComponent swing
;
92 // ------------------------------------------------------------------------
93 // Screen -----------------------------------------------------------------
94 // ------------------------------------------------------------------------
97 * Cursor style to draw.
99 public enum CursorStyle
{
101 * Use an underscore for the cursor.
106 * Use a solid block for the cursor.
111 * Use an outlined block for the cursor.
117 * A cache of previously-rendered glyphs for blinking text, when it is
120 private HashMap
<Cell
, BufferedImage
> glyphCacheBlink
;
123 * A cache of previously-rendered glyphs for non-blinking, or
124 * blinking-and-visible, text.
126 private HashMap
<Cell
, BufferedImage
> glyphCache
;
128 // Colors to map DOS colors to AWT colors.
129 private static Color MYBLACK
;
130 private static Color MYRED
;
131 private static Color MYGREEN
;
132 private static Color MYYELLOW
;
133 private static Color MYBLUE
;
134 private static Color MYMAGENTA
;
135 private static Color MYCYAN
;
136 private static Color MYWHITE
;
137 private static Color MYBOLD_BLACK
;
138 private static Color MYBOLD_RED
;
139 private static Color MYBOLD_GREEN
;
140 private static Color MYBOLD_YELLOW
;
141 private static Color MYBOLD_BLUE
;
142 private static Color MYBOLD_MAGENTA
;
143 private static Color MYBOLD_CYAN
;
144 private static Color MYBOLD_WHITE
;
147 * When true, all the MYBLACK, MYRED, etc. colors are set.
149 private static boolean dosColors
= false;
152 * Setup Swing colors to match DOS color palette.
154 private static void setDOSColors() {
158 MYBLACK
= new Color(0x00, 0x00, 0x00);
159 MYRED
= new Color(0xa8, 0x00, 0x00);
160 MYGREEN
= new Color(0x00, 0xa8, 0x00);
161 MYYELLOW
= new Color(0xa8, 0x54, 0x00);
162 MYBLUE
= new Color(0x00, 0x00, 0xa8);
163 MYMAGENTA
= new Color(0xa8, 0x00, 0xa8);
164 MYCYAN
= new Color(0x00, 0xa8, 0xa8);
165 MYWHITE
= new Color(0xa8, 0xa8, 0xa8);
166 MYBOLD_BLACK
= new Color(0x54, 0x54, 0x54);
167 MYBOLD_RED
= new Color(0xfc, 0x54, 0x54);
168 MYBOLD_GREEN
= new Color(0x54, 0xfc, 0x54);
169 MYBOLD_YELLOW
= new Color(0xfc, 0xfc, 0x54);
170 MYBOLD_BLUE
= new Color(0x54, 0x54, 0xfc);
171 MYBOLD_MAGENTA
= new Color(0xfc, 0x54, 0xfc);
172 MYBOLD_CYAN
= new Color(0x54, 0xfc, 0xfc);
173 MYBOLD_WHITE
= new Color(0xfc, 0xfc, 0xfc);
179 * The terminus font resource filename.
181 private static final String FONTFILE
= "terminus-ttf-4.39/TerminusTTF-Bold-4.39.ttf";
184 * If true, we were successful getting Terminus.
186 private boolean gotTerminus
= false;
189 * If true, we were successful at getting the font dimensions.
191 private boolean gotFontDimensions
= false;
194 * The currently selected font.
196 private Font font
= null;
199 * The currently selected font size in points.
201 private int fontSize
= 16;
204 * Width of a character cell in pixels.
206 private int textWidth
= 1;
209 * Height of a character cell in pixels.
211 private int textHeight
= 1;
214 * Descent of a character cell in pixels.
216 private int maxDescent
= 0;
219 * System-dependent Y adjustment for text in the character cell.
221 private int textAdjustY
= 0;
224 * System-dependent X adjustment for text in the character cell.
226 private int textAdjustX
= 0;
229 * Top pixel absolute location.
231 private int top
= 30;
234 * Left pixel absolute location.
236 private int left
= 30;
239 * The cursor style to draw.
241 private CursorStyle cursorStyle
= CursorStyle
.UNDERLINE
;
244 * The number of millis to wait before switching the blink from
245 * visible to invisible.
247 private long blinkMillis
= 500;
250 * If true, the cursor should be visible right now based on the blink
253 private boolean cursorBlinkVisible
= true;
256 * The time that the blink last flipped from visible to invisible or
257 * from invisible to visible.
259 private long lastBlinkTime
= 0;
262 * Get the font size in points.
264 * @return font size in points
266 public int getFontSize() {
271 * Set the font size in points.
273 * @param fontSize font size in points
275 public void setFontSize(final int fontSize
) {
276 this.fontSize
= fontSize
;
277 Font newFont
= font
.deriveFont((float) fontSize
);
282 * Set to a new font, and resize the screen to match its dimensions.
284 * @param font the new font
286 public void setFont(final Font font
) {
290 glyphCacheBlink
= new HashMap
<Cell
, BufferedImage
>();
291 glyphCache
= new HashMap
<Cell
, BufferedImage
>();
296 * Set the font to Terminus, the best all-around font for both CP437 and
299 public void getDefaultFont() {
301 ClassLoader loader
= Thread
.currentThread().
302 getContextClassLoader();
303 InputStream in
= loader
.getResourceAsStream(FONTFILE
);
304 Font terminusRoot
= Font
.createFont(Font
.TRUETYPE_FONT
, in
);
305 Font terminus
= terminusRoot
.deriveFont(Font
.PLAIN
, fontSize
);
308 } catch (Exception e
) {
310 font
= new Font(Font
.MONOSPACED
, Font
.PLAIN
, fontSize
);
317 * Convert a CellAttributes foreground color to an Swing Color.
319 * @param attr the text attributes
320 * @return the Swing Color
322 private Color
attrToForegroundColor(final CellAttributes attr
) {
324 if (attr
.getForeColor().equals(jexer
.bits
.Color
.BLACK
)) {
326 } else if (attr
.getForeColor().equals(jexer
.bits
.Color
.RED
)) {
328 } else if (attr
.getForeColor().equals(jexer
.bits
.Color
.BLUE
)) {
330 } else if (attr
.getForeColor().equals(jexer
.bits
.Color
.GREEN
)) {
332 } else if (attr
.getForeColor().equals(jexer
.bits
.Color
.YELLOW
)) {
333 return MYBOLD_YELLOW
;
334 } else if (attr
.getForeColor().equals(jexer
.bits
.Color
.CYAN
)) {
336 } else if (attr
.getForeColor().equals(jexer
.bits
.Color
.MAGENTA
)) {
337 return MYBOLD_MAGENTA
;
338 } else if (attr
.getForeColor().equals(jexer
.bits
.Color
.WHITE
)) {
342 if (attr
.getForeColor().equals(jexer
.bits
.Color
.BLACK
)) {
344 } else if (attr
.getForeColor().equals(jexer
.bits
.Color
.RED
)) {
346 } else if (attr
.getForeColor().equals(jexer
.bits
.Color
.BLUE
)) {
348 } else if (attr
.getForeColor().equals(jexer
.bits
.Color
.GREEN
)) {
350 } else if (attr
.getForeColor().equals(jexer
.bits
.Color
.YELLOW
)) {
352 } else if (attr
.getForeColor().equals(jexer
.bits
.Color
.CYAN
)) {
354 } else if (attr
.getForeColor().equals(jexer
.bits
.Color
.MAGENTA
)) {
356 } else if (attr
.getForeColor().equals(jexer
.bits
.Color
.WHITE
)) {
360 throw new IllegalArgumentException("Invalid color: " +
361 attr
.getForeColor().getValue());
365 * Convert a CellAttributes background color to an Swing Color.
367 * @param attr the text attributes
368 * @return the Swing Color
370 private Color
attrToBackgroundColor(final CellAttributes attr
) {
371 if (attr
.getBackColor().equals(jexer
.bits
.Color
.BLACK
)) {
373 } else if (attr
.getBackColor().equals(jexer
.bits
.Color
.RED
)) {
375 } else if (attr
.getBackColor().equals(jexer
.bits
.Color
.BLUE
)) {
377 } else if (attr
.getBackColor().equals(jexer
.bits
.Color
.GREEN
)) {
379 } else if (attr
.getBackColor().equals(jexer
.bits
.Color
.YELLOW
)) {
381 } else if (attr
.getBackColor().equals(jexer
.bits
.Color
.CYAN
)) {
383 } else if (attr
.getBackColor().equals(jexer
.bits
.Color
.MAGENTA
)) {
385 } else if (attr
.getBackColor().equals(jexer
.bits
.Color
.WHITE
)) {
388 throw new IllegalArgumentException("Invalid color: " +
389 attr
.getBackColor().getValue());
393 * Figure out what textAdjustX and textAdjustY should be, based on the
394 * location of a vertical bar (to find textAdjustY) and a horizontal bar
395 * (to find textAdjustX).
397 * @return true if textAdjustX and textAdjustY were guessed at correctly
399 private boolean getFontAdjustments() {
400 BufferedImage image
= null;
402 // What SHOULD happen is that the topmost/leftmost white pixel is at
403 // position (gr2x, gr2y). But it might also be off by a pixel in
406 Graphics2D gr2
= null;
409 image
= new BufferedImage(textWidth
* 2, textHeight
* 2,
410 BufferedImage
.TYPE_INT_ARGB
);
412 gr2
= image
.createGraphics();
413 gr2
.setFont(swing
.getFont());
414 gr2
.setColor(java
.awt
.Color
.BLACK
);
415 gr2
.fillRect(0, 0, textWidth
* 2, textHeight
* 2);
416 gr2
.setColor(java
.awt
.Color
.WHITE
);
417 char [] chars
= new char[1];
418 chars
[0] = jexer
.bits
.GraphicsChars
.VERTICAL_BAR
;
419 gr2
.drawChars(chars
, 0, 1, gr2x
, gr2y
+ textHeight
- maxDescent
);
422 for (int x
= 0; x
< textWidth
; x
++) {
423 for (int y
= 0; y
< textHeight
; y
++) {
426 System.err.println("X: " + x + " Y: " + y + " " +
430 if ((image
.getRGB(x
, y
) & 0xFFFFFF) != 0) {
431 textAdjustY
= (gr2y
- y
);
433 // System.err.println("textAdjustY: " + textAdjustY);
440 gr2
= image
.createGraphics();
441 gr2
.setFont(swing
.getFont());
442 gr2
.setColor(java
.awt
.Color
.BLACK
);
443 gr2
.fillRect(0, 0, textWidth
* 2, textHeight
* 2);
444 gr2
.setColor(java
.awt
.Color
.WHITE
);
445 chars
[0] = jexer
.bits
.GraphicsChars
.SINGLE_BAR
;
446 gr2
.drawChars(chars
, 0, 1, gr2x
, gr2y
+ textHeight
- maxDescent
);
449 for (int x
= 0; x
< textWidth
; x
++) {
450 for (int y
= 0; y
< textHeight
; y
++) {
453 System.err.println("X: " + x + " Y: " + y + " " +
457 if ((image
.getRGB(x
, y
) & 0xFFFFFF) != 0) {
458 textAdjustX
= (gr2x
- x
);
460 // System.err.println("textAdjustX: " + textAdjustX);
466 // Something weird happened, don't rely on this function.
467 // System.err.println("getFontAdjustments: false");
472 * Figure out my font dimensions. This code path works OK for the JFrame
473 * case, and can be called immediately after JFrame creation.
475 private void getFontDimensions() {
477 Graphics gr
= swing
.getGraphics();
481 getFontDimensions(gr
);
485 * Figure out my font dimensions. This code path is needed to lazy-load
486 * the information inside paint().
488 * @param gr Graphics object to use
490 private void getFontDimensions(final Graphics gr
) {
492 FontMetrics fm
= gr
.getFontMetrics();
493 maxDescent
= fm
.getMaxDescent();
494 Rectangle2D bounds
= fm
.getMaxCharBounds(gr
);
495 int leading
= fm
.getLeading();
496 textWidth
= (int)Math
.round(bounds
.getWidth());
497 // textHeight = (int)Math.round(bounds.getHeight()) - maxDescent;
499 // This produces the same number, but works better for ugly
501 textHeight
= fm
.getMaxAscent() + maxDescent
- leading
;
503 if (gotTerminus
== true) {
507 if (getFontAdjustments() == false) {
508 // We were unable to programmatically determine textAdjustX and
509 // textAdjustY, so try some guesses based on VM vendor.
510 String runtime
= System
.getProperty("java.runtime.name");
511 if ((runtime
!= null) && (runtime
.contains("Java(TM)"))) {
517 if (sessionInfo
!= null) {
518 sessionInfo
.setTextCellDimensions(textWidth
, textHeight
);
520 gotFontDimensions
= true;
524 * Resize to font dimensions.
526 public void resizeToScreen() {
527 swing
.setDimensions(textWidth
* width
, textHeight
* height
);
531 * Draw one glyph to the screen.
533 * @param gr the Swing Graphics context
534 * @param cell the Cell to draw
535 * @param xPixel the x-coordinate to render to. 0 means the
536 * left-most pixel column.
537 * @param yPixel the y-coordinate to render to. 0 means the top-most
540 private void drawGlyph(final Graphics gr
, final Cell cell
,
541 final int xPixel
, final int yPixel
) {
544 System.err.println("drawGlyph(): " + xPixel + " " + yPixel +
548 BufferedImage image
= null;
549 if (cell
.isBlink() && !cursorBlinkVisible
) {
550 image
= glyphCacheBlink
.get(cell
);
552 image
= glyphCache
.get(cell
);
555 if (swing
.getFrame() != null) {
556 gr
.drawImage(image
, xPixel
, yPixel
, swing
.getFrame());
558 gr
.drawImage(image
, xPixel
, yPixel
, swing
.getComponent());
563 // Generate glyph and draw it.
564 Graphics2D gr2
= null;
567 if ((SwingComponent
.tripleBuffer
) && (swing
.getFrame() != null)) {
568 image
= new BufferedImage(textWidth
, textHeight
,
569 BufferedImage
.TYPE_INT_ARGB
);
570 gr2
= image
.createGraphics();
571 gr2
.setFont(swing
.getFont());
575 gr2
= (Graphics2D
) gr
;
578 Cell cellColor
= new Cell();
579 cellColor
.setTo(cell
);
582 if (cell
.isReverse()) {
583 cellColor
.setForeColor(cell
.getBackColor());
584 cellColor
.setBackColor(cell
.getForeColor());
587 // Draw the background rectangle, then the foreground character.
588 gr2
.setColor(attrToBackgroundColor(cellColor
));
589 gr2
.fillRect(gr2x
, gr2y
, textWidth
, textHeight
);
591 // Handle blink and underline
593 || (cell
.isBlink() && cursorBlinkVisible
)
595 gr2
.setColor(attrToForegroundColor(cellColor
));
596 char [] chars
= new char[1];
597 chars
[0] = cell
.getChar();
598 gr2
.drawChars(chars
, 0, 1, gr2x
+ textAdjustX
,
599 gr2y
+ textHeight
- maxDescent
+ textAdjustY
);
601 if (cell
.isUnderline()) {
602 gr2
.fillRect(gr2x
, gr2y
+ textHeight
- 2, textWidth
, 2);
606 if ((SwingComponent
.tripleBuffer
) && (swing
.getFrame() != null)) {
609 // We need a new key that will not be mutated by
611 Cell key
= new Cell();
613 if (cell
.isBlink() && !cursorBlinkVisible
) {
614 glyphCacheBlink
.put(key
, image
);
616 glyphCache
.put(key
, image
);
619 if (swing
.getFrame() != null) {
620 gr
.drawImage(image
, xPixel
, yPixel
, swing
.getFrame());
622 gr
.drawImage(image
, xPixel
, yPixel
, swing
.getComponent());
629 * Check if the cursor is visible, and if so draw it.
631 * @param gr the Swing Graphics context
633 private void drawCursor(final Graphics gr
) {
636 && (cursorY
<= height
- 1)
637 && (cursorX
<= width
- 1)
638 && cursorBlinkVisible
640 int xPixel
= cursorX
* textWidth
+ left
;
641 int yPixel
= cursorY
* textHeight
+ top
;
642 Cell lCell
= logical
[cursorX
][cursorY
];
643 gr
.setColor(attrToForegroundColor(lCell
));
644 switch (cursorStyle
) {
648 gr
.fillRect(xPixel
, yPixel
+ textHeight
- 2, textWidth
, 2);
651 gr
.fillRect(xPixel
, yPixel
, textWidth
, textHeight
);
654 gr
.drawRect(xPixel
, yPixel
, textWidth
- 1, textHeight
- 1);
661 * Paint redraws the whole screen.
663 * @param gr the Swing Graphics context
665 public void paint(final Graphics gr
) {
667 if (gotFontDimensions
== false) {
668 // Lazy-load the text width/height
669 // System.err.println("calling getFontDimensions...");
670 getFontDimensions(gr
);
672 System.err.println("textWidth " + textWidth +
673 " textHeight " + textHeight);
674 System.err.println("FONT: " + swing.getFont() + " font " + font);
679 // See if it is time to flip the blink time.
680 long nowTime
= (new Date()).getTime();
681 if (nowTime
> blinkMillis
+ lastBlinkTime
) {
682 lastBlinkTime
= nowTime
;
683 cursorBlinkVisible
= !cursorBlinkVisible
;
687 int xCellMax
= width
;
689 int yCellMax
= height
;
691 Rectangle bounds
= gr
.getClipBounds();
692 if (bounds
!= null) {
693 // Only update what is in the bounds
694 xCellMin
= textColumn(bounds
.x
);
695 xCellMax
= textColumn(bounds
.x
+ bounds
.width
);
696 if (xCellMax
> width
) {
699 if (xCellMin
>= xCellMax
) {
700 xCellMin
= xCellMax
- 2;
705 yCellMin
= textRow(bounds
.y
);
706 yCellMax
= textRow(bounds
.y
+ bounds
.height
);
707 if (yCellMax
> height
) {
710 if (yCellMin
>= yCellMax
) {
711 yCellMin
= yCellMax
- 2;
717 // We need a total repaint
718 reallyCleared
= true;
721 // Prevent updates to the screen's data from the TApplication
723 synchronized (this) {
726 System.err.printf("bounds %s X %d %d Y %d %d\n",
727 bounds, xCellMin, xCellMax, yCellMin, yCellMax);
730 for (int y
= yCellMin
; y
< yCellMax
; y
++) {
731 for (int x
= xCellMin
; x
< xCellMax
; x
++) {
733 int xPixel
= x
* textWidth
+ left
;
734 int yPixel
= y
* textHeight
+ top
;
736 Cell lCell
= logical
[x
][y
];
737 Cell pCell
= physical
[x
][y
];
739 if (!lCell
.equals(pCell
)
742 || (swing
.getFrame() == null)) {
744 drawGlyph(gr
, lCell
, xPixel
, yPixel
);
746 // Physical is always updated
747 physical
[x
][y
].setTo(lCell
);
754 reallyCleared
= false;
755 } // synchronized (this)
759 * Restore terminal to normal state.
761 public void shutdown() {
766 * Push the logical screen to the physical device.
769 public void flushPhysical() {
772 System.err.printf("flushPhysical(): reallyCleared %s dirty %s\n",
773 reallyCleared, dirty);
776 // If reallyCleared is set, we have to draw everything.
777 if ((swing
.getFrame() != null)
778 && (swing
.getBufferStrategy() != null)
779 && (reallyCleared
== true)
781 // Triple-buffering: we have to redraw everything on this thread.
782 Graphics gr
= swing
.getBufferStrategy().getDrawGraphics();
785 swing
.getBufferStrategy().show();
786 // sync() doesn't seem to help the tearing for me.
787 // Toolkit.getDefaultToolkit().sync();
789 } else if (((swing
.getFrame() != null)
790 && (swing
.getBufferStrategy() == null))
791 || (reallyCleared
== true)
793 // Repaint everything on the Swing thread.
794 // System.err.println("REPAINT ALL");
799 // Do nothing if nothing happened.
804 if ((swing
.getFrame() != null) && (swing
.getBufferStrategy() != null)) {
805 // See if it is time to flip the blink time.
806 long nowTime
= (new Date()).getTime();
807 if (nowTime
> blinkMillis
+ lastBlinkTime
) {
808 lastBlinkTime
= nowTime
;
809 cursorBlinkVisible
= !cursorBlinkVisible
;
812 Graphics gr
= swing
.getBufferStrategy().getDrawGraphics();
814 synchronized (this) {
815 for (int y
= 0; y
< height
; y
++) {
816 for (int x
= 0; x
< width
; x
++) {
817 Cell lCell
= logical
[x
][y
];
818 Cell pCell
= physical
[x
][y
];
820 int xPixel
= x
* textWidth
+ left
;
821 int yPixel
= y
* textHeight
+ top
;
823 if (!lCell
.equals(pCell
)
829 drawGlyph(gr
, lCell
, xPixel
, yPixel
);
830 physical
[x
][y
].setTo(lCell
);
835 } // synchronized (this)
838 swing
.getBufferStrategy().show();
839 // sync() doesn't seem to help the tearing for me.
840 // Toolkit.getDefaultToolkit().sync();
844 // Swing thread version: request a repaint, but limit it to the area
847 // Find the minimum-size damaged region.
848 int xMin
= swing
.getWidth();
850 int yMin
= swing
.getHeight();
853 synchronized (this) {
854 for (int y
= 0; y
< height
; y
++) {
855 for (int x
= 0; x
< width
; x
++) {
856 Cell lCell
= logical
[x
][y
];
857 Cell pCell
= physical
[x
][y
];
859 int xPixel
= x
* textWidth
+ left
;
860 int yPixel
= y
* textHeight
+ top
;
862 if (!lCell
.equals(pCell
)
871 if (xPixel
+ textWidth
> xMax
) {
872 xMax
= xPixel
+ textWidth
;
877 if (yPixel
+ textHeight
> yMax
) {
878 yMax
= yPixel
+ textHeight
;
884 if (xMin
+ textWidth
>= xMax
) {
887 if (yMin
+ textHeight
>= yMax
) {
891 // Repaint the desired area
893 System.err.printf("REPAINT X %d %d Y %d %d\n", xMin, xMax,
897 if ((swing
.getFrame() != null) && (swing
.getBufferStrategy() != null)) {
898 // This path should never be taken, but is left here for
900 Graphics gr
= swing
.getBufferStrategy().getDrawGraphics();
901 Rectangle bounds
= new Rectangle(xMin
, yMin
, xMax
- xMin
,
906 swing
.getBufferStrategy().show();
907 // sync() doesn't seem to help the tearing for me.
908 // Toolkit.getDefaultToolkit().sync();
910 // Repaint on the Swing thread.
911 swing
.repaint(xMin
, yMin
, xMax
- xMin
, yMax
- yMin
);
916 * Put the cursor at (x,y).
918 * @param visible if true, the cursor should be visible
919 * @param x column coordinate to put the cursor on
920 * @param y row coordinate to put the cursor on
923 public void putCursor(final boolean visible
, final int x
, final int y
) {
925 if ((visible
== cursorVisible
) && ((x
== cursorX
) && (y
== cursorY
))) {
926 // See if it is time to flip the blink time.
927 long nowTime
= (new Date()).getTime();
928 if (nowTime
< blinkMillis
+ lastBlinkTime
) {
929 // Nothing has changed, so don't do anything.
935 && (cursorY
<= height
- 1)
936 && (cursorX
<= width
- 1)
938 // Make the current cursor position dirty
939 if (physical
[cursorX
][cursorY
].getChar() == 'Q') {
940 physical
[cursorX
][cursorY
].setChar('X');
942 physical
[cursorX
][cursorY
].setChar('Q');
946 super.putCursor(visible
, x
, y
);
950 * Convert pixel column position to text cell column position.
952 * @param x pixel column position
953 * @return text cell column position
955 public int textColumn(final int x
) {
956 return ((x
- left
) / textWidth
);
960 * Convert pixel row position to text cell row position.
962 * @param y pixel row position
963 * @return text cell row position
965 public int textRow(final int y
) {
966 return ((y
- top
) / textHeight
);
970 * Set the window title.
972 * @param title the new title
974 public void setTitle(final String title
) {
975 swing
.setTitle(title
);
978 // ------------------------------------------------------------------------
979 // TerminalReader ---------------------------------------------------------
980 // ------------------------------------------------------------------------
983 * The session information.
985 private SwingSessionInfo sessionInfo
;
988 * Getter for sessionInfo.
990 * @return the SessionInfo
992 public SessionInfo
getSessionInfo() {
997 * The listening object that run() wakes up on new input.
999 private Object listener
;
1002 * Set listener to a different Object.
1004 * @param listener the new listening object that run() wakes up on new
1007 public void setListener(final Object listener
) {
1008 this.listener
= listener
;
1012 * The event queue, filled up by a thread reading on input.
1014 private List
<TInputEvent
> eventQueue
;
1017 * The last reported mouse X position.
1019 private int oldMouseX
= -1;
1022 * The last reported mouse Y position.
1024 private int oldMouseY
= -1;
1027 * true if mouse1 was down. Used to report mouse1 on the release event.
1029 private boolean mouse1
= false;
1032 * true if mouse2 was down. Used to report mouse2 on the release event.
1034 private boolean mouse2
= false;
1037 * true if mouse3 was down. Used to report mouse3 on the release event.
1039 private boolean mouse3
= false;
1042 * Public constructor creates a new JFrame to render to.
1044 * @param windowWidth the number of text columns to start with
1045 * @param windowHeight the number of text rows to start with
1046 * @param fontSize the size in points. Good values to pick are: 16, 20,
1048 * @param listener the object this backend needs to wake up when new
1051 public SwingTerminal(final int windowWidth
, final int windowHeight
,
1052 final int fontSize
, final Object listener
) {
1054 this.fontSize
= fontSize
;
1058 // Figure out my cursor style.
1059 String cursorStyleString
= System
.getProperty(
1060 "jexer.Swing.cursorStyle", "underline").toLowerCase();
1061 if (cursorStyleString
.equals("underline")) {
1062 cursorStyle
= CursorStyle
.UNDERLINE
;
1063 } else if (cursorStyleString
.equals("outline")) {
1064 cursorStyle
= CursorStyle
.OUTLINE
;
1065 } else if (cursorStyleString
.equals("block")) {
1066 cursorStyle
= CursorStyle
.BLOCK
;
1069 // Pull the system property for triple buffering.
1070 if (System
.getProperty("jexer.Swing.tripleBuffer") != null) {
1071 if (System
.getProperty("jexer.Swing.tripleBuffer").equals("true")) {
1072 SwingComponent
.tripleBuffer
= true;
1074 SwingComponent
.tripleBuffer
= false;
1079 SwingUtilities
.invokeAndWait(new Runnable() {
1082 JFrame frame
= new JFrame() {
1085 * Serializable version.
1087 private static final long serialVersionUID
= 1;
1090 * The code that performs the actual drawing.
1092 public SwingTerminal screen
= null;
1095 * Anonymous class initializer saves the screen
1096 * reference, so that paint() and the like call out
1100 this.screen
= SwingTerminal
.this;
1104 * Update redraws the whole screen.
1106 * @param gr the Swing Graphics context
1109 public void update(final Graphics gr
) {
1110 // The default update clears the area. Don't do
1111 // that, instead just paint it directly.
1116 * Paint redraws the whole screen.
1118 * @param gr the Swing Graphics context
1121 public void paint(final Graphics gr
) {
1122 if (screen
!= null) {
1128 // Get the Swing component
1129 SwingTerminal
.this.swing
= new SwingComponent(frame
);
1131 // Hang onto top and left for drawing.
1132 Insets insets
= SwingTerminal
.this.swing
.getInsets();
1133 SwingTerminal
.this.left
= insets
.left
;
1134 SwingTerminal
.this.top
= insets
.top
;
1136 // Load the font so that we can set sessionInfo.
1139 // Get the default cols x rows and set component size
1141 SwingTerminal
.this.sessionInfo
=
1142 new SwingSessionInfo(SwingTerminal
.this.swing
,
1143 SwingTerminal
.this.textWidth
,
1144 SwingTerminal
.this.textHeight
,
1145 windowWidth
, windowHeight
);
1147 SwingTerminal
.this.setDimensions(sessionInfo
.getWindowWidth(),
1148 sessionInfo
.getWindowHeight());
1150 SwingTerminal
.this.resizeToScreen();
1151 SwingTerminal
.this.swing
.setVisible(true);
1154 } catch (Exception e
) {
1155 e
.printStackTrace();
1158 this.listener
= listener
;
1162 eventQueue
= new LinkedList
<TInputEvent
>();
1164 // Add listeners to Swing.
1165 swing
.addKeyListener(this);
1166 swing
.addWindowListener(this);
1167 swing
.addComponentListener(this);
1168 swing
.addMouseListener(this);
1169 swing
.addMouseMotionListener(this);
1170 swing
.addMouseWheelListener(this);
1174 * Public constructor renders to an existing JComponent.
1176 * @param component the Swing component to render to
1177 * @param windowWidth the number of text columns to start with
1178 * @param windowHeight the number of text rows to start with
1179 * @param fontSize the size in points. Good values to pick are: 16, 20,
1181 * @param listener the object this backend needs to wake up when new
1184 public SwingTerminal(final JComponent component
, final int windowWidth
,
1185 final int windowHeight
, final int fontSize
, final Object listener
) {
1187 this.fontSize
= fontSize
;
1191 // Figure out my cursor style.
1192 String cursorStyleString
= System
.getProperty(
1193 "jexer.Swing.cursorStyle", "underline").toLowerCase();
1194 if (cursorStyleString
.equals("underline")) {
1195 cursorStyle
= CursorStyle
.UNDERLINE
;
1196 } else if (cursorStyleString
.equals("outline")) {
1197 cursorStyle
= CursorStyle
.OUTLINE
;
1198 } else if (cursorStyleString
.equals("block")) {
1199 cursorStyle
= CursorStyle
.BLOCK
;
1203 SwingUtilities
.invokeAndWait(new Runnable() {
1206 JComponent newComponent
= new JComponent() {
1209 * Serializable version.
1211 private static final long serialVersionUID
= 1;
1214 * The code that performs the actual drawing.
1216 public SwingTerminal screen
= null;
1219 * Anonymous class initializer saves the screen
1220 * reference, so that paint() and the like call out
1224 this.screen
= SwingTerminal
.this;
1228 * Update redraws the whole screen.
1230 * @param gr the Swing Graphics context
1233 public void update(final Graphics gr
) {
1234 // The default update clears the area. Don't do
1235 // that, instead just paint it directly.
1240 * Paint redraws the whole screen.
1242 * @param gr the Swing Graphics context
1245 public void paint(final Graphics gr
) {
1246 if (screen
!= null) {
1251 component
.setLayout(new BorderLayout());
1252 component
.add(newComponent
);
1254 // Get the Swing component
1255 SwingTerminal
.this.swing
= new SwingComponent(component
);
1257 // Hang onto top and left for drawing.
1258 Insets insets
= SwingTerminal
.this.swing
.getInsets();
1259 SwingTerminal
.this.left
= insets
.left
;
1260 SwingTerminal
.this.top
= insets
.top
;
1262 // Load the font so that we can set sessionInfo.
1265 // Get the default cols x rows and set component size
1267 SwingTerminal
.this.sessionInfo
=
1268 new SwingSessionInfo(SwingTerminal
.this.swing
,
1269 SwingTerminal
.this.textWidth
,
1270 SwingTerminal
.this.textHeight
);
1273 } catch (Exception e
) {
1274 e
.printStackTrace();
1277 this.listener
= listener
;
1281 eventQueue
= new LinkedList
<TInputEvent
>();
1283 // Add listeners to Swing.
1284 swing
.addKeyListener(this);
1285 swing
.addWindowListener(this);
1286 swing
.addComponentListener(this);
1287 swing
.addMouseListener(this);
1288 swing
.addMouseMotionListener(this);
1289 swing
.addMouseWheelListener(this);
1293 * Check if there are events in the queue.
1295 * @return if true, getEvents() has something to return to the backend
1297 public boolean hasEvents() {
1298 synchronized (eventQueue
) {
1299 return (eventQueue
.size() > 0);
1304 * Return any events in the IO queue.
1306 * @param queue list to append new events to
1308 public void getEvents(final List
<TInputEvent
> queue
) {
1309 synchronized (eventQueue
) {
1310 if (eventQueue
.size() > 0) {
1311 synchronized (queue
) {
1312 queue
.addAll(eventQueue
);
1320 * Restore terminal to normal state.
1322 public void closeTerminal() {
1327 * Pass Swing keystrokes into the event queue.
1329 * @param key keystroke received
1331 public void keyReleased(final KeyEvent key
) {
1332 // Ignore release events
1336 * Pass Swing keystrokes into the event queue.
1338 * @param key keystroke received
1340 public void keyTyped(final KeyEvent key
) {
1341 // Ignore typed events
1345 * Pass Swing keystrokes into the event queue.
1347 * @param key keystroke received
1349 public void keyPressed(final KeyEvent key
) {
1350 boolean alt
= false;
1351 boolean shift
= false;
1352 boolean ctrl
= false;
1354 boolean isKey
= false;
1355 if (key
.isActionKey()) {
1358 ch
= key
.getKeyChar();
1360 alt
= key
.isAltDown();
1361 ctrl
= key
.isControlDown();
1362 shift
= key
.isShiftDown();
1365 System.err.printf("Swing Key: %s\n", key);
1366 System.err.printf(" isKey: %s\n", isKey);
1367 System.err.printf(" alt: %s\n", alt);
1368 System.err.printf(" ctrl: %s\n", ctrl);
1369 System.err.printf(" shift: %s\n", shift);
1370 System.err.printf(" ch: %s\n", ch);
1373 // Special case: not return the bare modifier presses
1374 switch (key
.getKeyCode()) {
1375 case KeyEvent
.VK_ALT
:
1377 case KeyEvent
.VK_ALT_GRAPH
:
1379 case KeyEvent
.VK_CONTROL
:
1381 case KeyEvent
.VK_SHIFT
:
1383 case KeyEvent
.VK_META
:
1389 TKeypress keypress
= null;
1391 switch (key
.getKeyCode()) {
1392 case KeyEvent
.VK_F1
:
1393 keypress
= new TKeypress(true, TKeypress
.F1
, ' ',
1396 case KeyEvent
.VK_F2
:
1397 keypress
= new TKeypress(true, TKeypress
.F2
, ' ',
1400 case KeyEvent
.VK_F3
:
1401 keypress
= new TKeypress(true, TKeypress
.F3
, ' ',
1404 case KeyEvent
.VK_F4
:
1405 keypress
= new TKeypress(true, TKeypress
.F4
, ' ',
1408 case KeyEvent
.VK_F5
:
1409 keypress
= new TKeypress(true, TKeypress
.F5
, ' ',
1412 case KeyEvent
.VK_F6
:
1413 keypress
= new TKeypress(true, TKeypress
.F6
, ' ',
1416 case KeyEvent
.VK_F7
:
1417 keypress
= new TKeypress(true, TKeypress
.F7
, ' ',
1420 case KeyEvent
.VK_F8
:
1421 keypress
= new TKeypress(true, TKeypress
.F8
, ' ',
1424 case KeyEvent
.VK_F9
:
1425 keypress
= new TKeypress(true, TKeypress
.F9
, ' ',
1428 case KeyEvent
.VK_F10
:
1429 keypress
= new TKeypress(true, TKeypress
.F10
, ' ',
1432 case KeyEvent
.VK_F11
:
1433 keypress
= new TKeypress(true, TKeypress
.F11
, ' ',
1436 case KeyEvent
.VK_F12
:
1437 keypress
= new TKeypress(true, TKeypress
.F12
, ' ',
1440 case KeyEvent
.VK_HOME
:
1441 keypress
= new TKeypress(true, TKeypress
.HOME
, ' ',
1444 case KeyEvent
.VK_END
:
1445 keypress
= new TKeypress(true, TKeypress
.END
, ' ',
1448 case KeyEvent
.VK_PAGE_UP
:
1449 keypress
= new TKeypress(true, TKeypress
.PGUP
, ' ',
1452 case KeyEvent
.VK_PAGE_DOWN
:
1453 keypress
= new TKeypress(true, TKeypress
.PGDN
, ' ',
1456 case KeyEvent
.VK_INSERT
:
1457 keypress
= new TKeypress(true, TKeypress
.INS
, ' ',
1460 case KeyEvent
.VK_DELETE
:
1461 keypress
= new TKeypress(true, TKeypress
.DEL
, ' ',
1464 case KeyEvent
.VK_RIGHT
:
1465 keypress
= new TKeypress(true, TKeypress
.RIGHT
, ' ',
1468 case KeyEvent
.VK_LEFT
:
1469 keypress
= new TKeypress(true, TKeypress
.LEFT
, ' ',
1472 case KeyEvent
.VK_UP
:
1473 keypress
= new TKeypress(true, TKeypress
.UP
, ' ',
1476 case KeyEvent
.VK_DOWN
:
1477 keypress
= new TKeypress(true, TKeypress
.DOWN
, ' ',
1480 case KeyEvent
.VK_TAB
:
1481 // Special case: distinguish TAB vs BTAB
1483 keypress
= kbShiftTab
;
1488 case KeyEvent
.VK_ENTER
:
1489 keypress
= new TKeypress(true, TKeypress
.ENTER
, ' ',
1492 case KeyEvent
.VK_ESCAPE
:
1493 keypress
= new TKeypress(true, TKeypress
.ESC
, ' ',
1496 case KeyEvent
.VK_BACK_SPACE
:
1497 // Special case: return it as kbBackspace (Ctrl-H)
1498 keypress
= new TKeypress(false, 0, 'H', false, true, false);
1501 // Unsupported, ignore
1506 if (keypress
== null) {
1509 keypress
= kbBackspace
;
1522 keypress
= kbShiftTab
;
1531 if (!alt
&& ctrl
&& !shift
) {
1532 ch
= KeyEvent
.getKeyText(key
.getKeyCode()).charAt(0);
1534 // Not a special key, put it together
1535 keypress
= new TKeypress(false, 0, ch
, alt
, ctrl
, shift
);
1539 // Save it and we are done.
1540 synchronized (eventQueue
) {
1541 eventQueue
.add(new TKeypressEvent(keypress
));
1543 if (listener
!= null) {
1544 synchronized (listener
) {
1545 listener
.notifyAll();
1551 * Pass window events into the event queue.
1553 * @param event window event received
1555 public void windowActivated(final WindowEvent event
) {
1556 // Force a total repaint
1557 synchronized (this) {
1563 * Pass window events into the event queue.
1565 * @param event window event received
1567 public void windowClosed(final WindowEvent event
) {
1572 * Pass window events into the event queue.
1574 * @param event window event received
1576 public void windowClosing(final WindowEvent event
) {
1577 // Drop a cmAbort and walk away
1578 synchronized (eventQueue
) {
1579 eventQueue
.add(new TCommandEvent(cmAbort
));
1581 if (listener
!= null) {
1582 synchronized (listener
) {
1583 listener
.notifyAll();
1589 * Pass window events into the event queue.
1591 * @param event window event received
1593 public void windowDeactivated(final WindowEvent event
) {
1598 * Pass window events into the event queue.
1600 * @param event window event received
1602 public void windowDeiconified(final WindowEvent event
) {
1607 * Pass window events into the event queue.
1609 * @param event window event received
1611 public void windowIconified(final WindowEvent event
) {
1616 * Pass window events into the event queue.
1618 * @param event window event received
1620 public void windowOpened(final WindowEvent event
) {
1625 * Pass component events into the event queue.
1627 * @param event component event received
1629 public void componentHidden(final ComponentEvent event
) {
1634 * Pass component events into the event queue.
1636 * @param event component event received
1638 public void componentShown(final ComponentEvent event
) {
1643 * Pass component events into the event queue.
1645 * @param event component event received
1647 public void componentMoved(final ComponentEvent event
) {
1652 * Pass component events into the event queue.
1654 * @param event component event received
1656 public void componentResized(final ComponentEvent event
) {
1657 if (gotFontDimensions
== false) {
1658 // We are still waiting to get font information. Don't pass a
1660 // System.err.println("size " + swing.getComponent().getSize());
1664 // Drop a new TResizeEvent into the queue
1665 sessionInfo
.queryWindowSize();
1666 synchronized (eventQueue
) {
1667 TResizeEvent windowResize
= new TResizeEvent(TResizeEvent
.Type
.SCREEN
,
1668 sessionInfo
.getWindowWidth(), sessionInfo
.getWindowHeight());
1669 eventQueue
.add(windowResize
);
1671 if (listener
!= null) {
1672 synchronized (listener
) {
1673 listener
.notifyAll();
1679 * Pass mouse events into the event queue.
1681 * @param mouse mouse event received
1683 public void mouseDragged(final MouseEvent mouse
) {
1684 int modifiers
= mouse
.getModifiersEx();
1685 boolean eventMouse1
= false;
1686 boolean eventMouse2
= false;
1687 boolean eventMouse3
= false;
1688 if ((modifiers
& MouseEvent
.BUTTON1_DOWN_MASK
) != 0) {
1691 if ((modifiers
& MouseEvent
.BUTTON2_DOWN_MASK
) != 0) {
1694 if ((modifiers
& MouseEvent
.BUTTON3_DOWN_MASK
) != 0) {
1697 mouse1
= eventMouse1
;
1698 mouse2
= eventMouse2
;
1699 mouse3
= eventMouse3
;
1700 int x
= textColumn(mouse
.getX());
1701 int y
= textRow(mouse
.getY());
1703 TMouseEvent mouseEvent
= new TMouseEvent(TMouseEvent
.Type
.MOUSE_MOTION
,
1704 x
, y
, x
, y
, mouse1
, mouse2
, mouse3
, false, false);
1706 synchronized (eventQueue
) {
1707 eventQueue
.add(mouseEvent
);
1709 if (listener
!= null) {
1710 synchronized (listener
) {
1711 listener
.notifyAll();
1717 * Pass mouse events into the event queue.
1719 * @param mouse mouse event received
1721 public void mouseMoved(final MouseEvent mouse
) {
1722 int x
= textColumn(mouse
.getX());
1723 int y
= textRow(mouse
.getY());
1724 if ((x
== oldMouseX
) && (y
== oldMouseY
)) {
1725 // Bail out, we've moved some pixels but not a whole text cell.
1731 TMouseEvent mouseEvent
= new TMouseEvent(TMouseEvent
.Type
.MOUSE_MOTION
,
1732 x
, y
, x
, y
, mouse1
, mouse2
, mouse3
, false, false);
1734 synchronized (eventQueue
) {
1735 eventQueue
.add(mouseEvent
);
1737 if (listener
!= null) {
1738 synchronized (listener
) {
1739 listener
.notifyAll();
1745 * Pass mouse events into the event queue.
1747 * @param mouse mouse event received
1749 public void mouseClicked(final MouseEvent mouse
) {
1754 * Pass mouse events into the event queue.
1756 * @param mouse mouse event received
1758 public void mouseEntered(final MouseEvent mouse
) {
1763 * Pass mouse events into the event queue.
1765 * @param mouse mouse event received
1767 public void mouseExited(final MouseEvent mouse
) {
1772 * Pass mouse events into the event queue.
1774 * @param mouse mouse event received
1776 public void mousePressed(final MouseEvent mouse
) {
1777 int modifiers
= mouse
.getModifiersEx();
1778 boolean eventMouse1
= false;
1779 boolean eventMouse2
= false;
1780 boolean eventMouse3
= false;
1781 if ((modifiers
& MouseEvent
.BUTTON1_DOWN_MASK
) != 0) {
1784 if ((modifiers
& MouseEvent
.BUTTON2_DOWN_MASK
) != 0) {
1787 if ((modifiers
& MouseEvent
.BUTTON3_DOWN_MASK
) != 0) {
1790 mouse1
= eventMouse1
;
1791 mouse2
= eventMouse2
;
1792 mouse3
= eventMouse3
;
1793 int x
= textColumn(mouse
.getX());
1794 int y
= textRow(mouse
.getY());
1796 TMouseEvent mouseEvent
= new TMouseEvent(TMouseEvent
.Type
.MOUSE_DOWN
,
1797 x
, y
, x
, y
, mouse1
, mouse2
, mouse3
, false, false);
1799 synchronized (eventQueue
) {
1800 eventQueue
.add(mouseEvent
);
1802 if (listener
!= null) {
1803 synchronized (listener
) {
1804 listener
.notifyAll();
1810 * Pass mouse events into the event queue.
1812 * @param mouse mouse event received
1814 public void mouseReleased(final MouseEvent mouse
) {
1815 int modifiers
= mouse
.getModifiersEx();
1816 boolean eventMouse1
= false;
1817 boolean eventMouse2
= false;
1818 boolean eventMouse3
= false;
1819 if ((modifiers
& MouseEvent
.BUTTON1_DOWN_MASK
) != 0) {
1822 if ((modifiers
& MouseEvent
.BUTTON2_DOWN_MASK
) != 0) {
1825 if ((modifiers
& MouseEvent
.BUTTON3_DOWN_MASK
) != 0) {
1840 int x
= textColumn(mouse
.getX());
1841 int y
= textRow(mouse
.getY());
1843 TMouseEvent mouseEvent
= new TMouseEvent(TMouseEvent
.Type
.MOUSE_UP
,
1844 x
, y
, x
, y
, eventMouse1
, eventMouse2
, eventMouse3
, false, false);
1846 synchronized (eventQueue
) {
1847 eventQueue
.add(mouseEvent
);
1849 if (listener
!= null) {
1850 synchronized (listener
) {
1851 listener
.notifyAll();
1857 * Pass mouse events into the event queue.
1859 * @param mouse mouse event received
1861 public void mouseWheelMoved(final MouseWheelEvent mouse
) {
1862 int modifiers
= mouse
.getModifiersEx();
1863 boolean eventMouse1
= false;
1864 boolean eventMouse2
= false;
1865 boolean eventMouse3
= false;
1866 boolean mouseWheelUp
= false;
1867 boolean mouseWheelDown
= false;
1868 if ((modifiers
& MouseEvent
.BUTTON1_DOWN_MASK
) != 0) {
1871 if ((modifiers
& MouseEvent
.BUTTON2_DOWN_MASK
) != 0) {
1874 if ((modifiers
& MouseEvent
.BUTTON3_DOWN_MASK
) != 0) {
1877 mouse1
= eventMouse1
;
1878 mouse2
= eventMouse2
;
1879 mouse3
= eventMouse3
;
1880 int x
= textColumn(mouse
.getX());
1881 int y
= textRow(mouse
.getY());
1882 if (mouse
.getWheelRotation() > 0) {
1883 mouseWheelDown
= true;
1885 if (mouse
.getWheelRotation() < 0) {
1886 mouseWheelUp
= true;
1889 TMouseEvent mouseEvent
= new TMouseEvent(TMouseEvent
.Type
.MOUSE_DOWN
,
1890 x
, y
, x
, y
, mouse1
, mouse2
, mouse3
, mouseWheelUp
, mouseWheelDown
);
1892 synchronized (eventQueue
) {
1893 eventQueue
.add(mouseEvent
);
1895 if (listener
!= null) {
1896 synchronized (listener
) {
1897 listener
.notifyAll();