TWindow compiles
[nikiroo-utils.git] / src / jexer / event / TMouseEvent.java
1 /**
2 * Jexer - Java Text User Interface
3 *
4 * License: LGPLv3 or later
5 *
6 * This module is licensed under the GNU Lesser General Public License
7 * Version 3. Please see the file "COPYING" in this directory for more
8 * information about the GNU Lesser General Public License Version 3.
9 *
10 * Copyright (C) 2015 Kevin Lamonte
11 *
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU Lesser General Public License
14 * as published by the Free Software Foundation; either version 3 of
15 * the License, or (at your option) any later version.
16 *
17 * This program is distributed in the hope that it will be useful, but
18 * WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20 * General Public License for more details.
21 *
22 * You should have received a copy of the GNU Lesser General Public
23 * License along with this program; if not, see
24 * http://www.gnu.org/licenses/, or write to the Free Software
25 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
26 * 02110-1301 USA
27 *
28 * @author Kevin Lamonte [kevin.lamonte@gmail.com]
29 * @version 1
30 */
31 package jexer.event;
32
33 /**
34 * This class encapsulates several kinds of mouse input events. Note that
35 * the relative (x,y) ARE MUTABLE: TWidget's onMouse() handlers perform that
36 * update during event dispatching.
37 */
38 public final class TMouseEvent extends TInputEvent {
39
40 /**
41 * The type of event generated.
42 */
43 public enum Type {
44 /**
45 * Mouse motion. X and Y will have screen coordinates.
46 */
47 MOUSE_MOTION,
48
49 /**
50 * Mouse button down. X and Y will have screen coordinates.
51 */
52 MOUSE_DOWN,
53
54 /**
55 * Mouse button up. X and Y will have screen coordinates.
56 */
57 MOUSE_UP
58 }
59
60 /**
61 * Type of event, one of MOUSE_MOTION, MOUSE_UP, or MOUSE_DOWN, or
62 * KEYPRESS.
63 */
64 private Type type;
65
66 /**
67 * Get type.
68 *
69 * @return type
70 */
71 public Type getType() {
72 return type;
73 }
74
75 /**
76 * Mouse X - relative coordinates.
77 */
78 private int x;
79
80 /**
81 * Get x.
82 *
83 * @return x
84 */
85 public int getX() {
86 return x;
87 }
88
89 /**
90 * Set x.
91 *
92 * @param x new relative X value
93 * @see jexer.TWidget#onMouseDown(TMouseEvent mouse)
94 * @see jexer.TWidget#onMouseDown(TMouseEvent mouse)
95 * @see jexer.TWidget#onMouseMotion(TMouseEvent mouse)
96 */
97 public void setX(final int x) {
98 this.x = x;
99 }
100
101 /**
102 * Mouse Y - relative coordinates.
103 */
104 private int y;
105
106 /**
107 * Get y.
108 *
109 * @return y
110 */
111 public int getY() {
112 return y;
113 }
114
115 /**
116 * Set y.
117 *
118 * @param y new relative Y value
119 * @see jexer.TWidget#onMouseDown(TMouseEvent mouse)
120 * @see jexer.TWidget#onMouseDown(TMouseEvent mouse)
121 * @see jexer.TWidget#onMouseMotion(TMouseEvent mouse)
122 */
123 public void setY(final int y) {
124 this.y = y;
125 }
126
127 /**
128 * Mouse X - absolute screen coordinates.
129 */
130 private int absoluteX;
131
132 /**
133 * Get absoluteX.
134 *
135 * @return absoluteX
136 */
137 public int getAbsoluteX() {
138 return absoluteX;
139 }
140
141 /**
142 * Mouse Y - absolute screen coordinate.
143 */
144 private int absoluteY;
145
146 /**
147 * Get absoluteY.
148 *
149 * @return absoluteY
150 */
151 public int getAbsoluteY() {
152 return absoluteY;
153 }
154
155 /**
156 * Mouse button 1 (left button).
157 */
158 private boolean mouse1;
159
160 /**
161 * Get mouse1.
162 *
163 * @return mouse1
164 */
165 public boolean getMouse1() {
166 return mouse1;
167 }
168
169 /**
170 * Mouse button 2 (right button).
171 */
172 private boolean mouse2;
173
174 /**
175 * Get mouse2.
176 *
177 * @return mouse2
178 */
179 public boolean getMouse2() {
180 return mouse2;
181 }
182
183 /**
184 * Mouse button 3 (middle button).
185 */
186 private boolean mouse3;
187
188 /**
189 * Get mouse3.
190 *
191 * @return mouse3
192 */
193 public boolean getMouse3() {
194 return mouse3;
195 }
196
197 /**
198 * Mouse wheel UP (button 4).
199 */
200 private boolean mouseWheelUp;
201
202 /**
203 * Get mouseWheelUp.
204 *
205 * @return mouseWheelUp
206 */
207 public boolean getMouseWheelUp() {
208 return mouseWheelUp;
209 }
210
211 /**
212 * Mouse wheel DOWN (button 5).
213 */
214 private boolean mouseWheelDown;
215
216 /**
217 * Get mouseWheelDown.
218 *
219 * @return mouseWheelDown
220 */
221 public boolean getMouseWheelDown() {
222 return mouseWheelDown;
223 }
224
225 /**
226 * Public contructor.
227 *
228 * @param type the type of event, MOUSE_MOTION, MOUSE_DOWN, or MOUSE_UP
229 * @param x relative column
230 * @param y relative row
231 * @param absoluteX absolute column
232 * @param absoluteY absolute row
233 * @param mouse1 if true, left button is down
234 * @param mouse2 if true, right button is down
235 * @param mouse3 if true, middle button is down
236 * @param mouseWheelUp if true, mouse wheel (button 4) is down
237 * @param mouseWheelDown if true, mouse wheel (button 5) is down
238 */
239 public TMouseEvent(final Type type, final int x, final int y,
240 final int absoluteX, final int absoluteY,
241 final boolean mouse1, final boolean mouse2, final boolean mouse3,
242 final boolean mouseWheelUp, final boolean mouseWheelDown) {
243
244 this.type = type;
245 this.x = x;
246 this.y = y;
247 this.absoluteX = absoluteX;
248 this.absoluteY = absoluteY;
249 this.mouse1 = mouse1;
250 this.mouse2 = mouse2;
251 this.mouse3 = mouse3;
252 this.mouseWheelUp = mouseWheelUp;
253 this.mouseWheelDown = mouseWheelDown;
254 }
255
256 /**
257 * Make human-readable description of this TMouseEvent.
258 *
259 * @return displayable String
260 */
261 @Override
262 public String toString() {
263 return String.format("Mouse: %s x %d y %d absoluteX %d absoluteY %d 1 %s 2 %s 3 %s DOWN %s UP %s",
264 type,
265 x, y,
266 absoluteX, absoluteY,
267 mouse1,
268 mouse2,
269 mouse3,
270 mouseWheelUp,
271 mouseWheelDown);
272 }
273
274 }