Skip to content

Commit 435671e

Browse files
Tom Schindlkevinrushforth
Tom Schindl
authored andcommittedMay 12, 2020
8202296: Monocle MouseInput doesn't send keyboard modifiers in events.
Reviewed-by: kcr
1 parent c14cc44 commit 435671e

File tree

2 files changed

+74
-6
lines changed
  • modules/javafx.graphics/src/main/java/com/sun/glass/ui/monocle
  • tests/system/src/test/java/test/robot/com/sun/glass/ui/monocle

2 files changed

+74
-6
lines changed
 

‎modules/javafx.graphics/src/main/java/com/sun/glass/ui/monocle/MouseInput.java

+20-6
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,9 @@ void setState(MouseState newState, boolean synthesized) {
105105
MonocleView oldView = (MonocleView) oldWindow.getView();
106106
if (oldView != null) {
107107
// send exit event
108-
int modifiers = state.getModifiers(); // TODO: include key modifiers
108+
KeyState keyState = new KeyState();
109+
KeyInput.getInstance().getState(keyState);
110+
int modifiers = state.getModifiers() | keyState.getModifiers();
109111
int button = state.getButton();
110112
boolean isPopupTrigger = false; // TODO
111113
int oldX = state.getX();
@@ -145,7 +147,9 @@ void setState(MouseState newState, boolean synthesized) {
145147
int relY = y - window.getY();
146148
// send enter event
147149
if (oldWindow != window && view != null) {
148-
int modifiers = state.getModifiers(); // TODO: include key modifiers
150+
KeyState keyState = new KeyState();
151+
KeyInput.getInstance().getState(keyState);
152+
int modifiers = state.getModifiers() | keyState.getModifiers();
149153
int button = state.getButton();
150154
boolean isPopupTrigger = false; // TODO
151155
postMouseEvent(view, MouseEvent.ENTER, button,
@@ -156,7 +160,9 @@ void setState(MouseState newState, boolean synthesized) {
156160
if (oldWindow != window | newAbsoluteLocation) {
157161
boolean isDrag = !state.getButtonsPressed().isEmpty();
158162
int eventType = isDrag ? MouseEvent.DRAG : MouseEvent.MOVE;
159-
int modifiers = state.getModifiers(); // TODO: include key modifiers
163+
KeyState keyState = new KeyState();
164+
KeyInput.getInstance().getState(keyState);
165+
int modifiers = state.getModifiers() | keyState.getModifiers();
160166
int button = state.getButton();
161167
boolean isPopupTrigger = false; // TODO
162168
postMouseEvent(view, eventType, button,
@@ -172,11 +178,14 @@ void setState(MouseState newState, boolean synthesized) {
172178
for (int i = 0; i < buttons.size(); i++) {
173179
int button = buttons.get(i);
174180
pressState.pressButton(button);
181+
KeyState keyState = new KeyState();
182+
KeyInput.getInstance().getState(keyState);
183+
int modifiers = pressState.getModifiers() | keyState.getModifiers();
175184
// send press event
176185
boolean isPopupTrigger = false; // TODO
177186
postMouseEvent(view, MouseEvent.DOWN, button,
178187
relX, relY, x, y,
179-
pressState.getModifiers(), isPopupTrigger,
188+
modifiers, isPopupTrigger,
180189
synthesized);
181190
}
182191
}
@@ -190,11 +199,14 @@ void setState(MouseState newState, boolean synthesized) {
190199
for (int i = 0; i < buttons.size(); i++) {
191200
int button = buttons.get(i);
192201
releaseState.releaseButton(button);
202+
KeyState keyState = new KeyState();
203+
KeyInput.getInstance().getState(keyState);
204+
int modifiers = releaseState.getModifiers() | keyState.getModifiers();
193205
// send release event
194206
boolean isPopupTrigger = false; // TODO
195207
postMouseEvent(view, MouseEvent.UP, button,
196208
relX, relY, x, y,
197-
releaseState.getModifiers(), isPopupTrigger,
209+
modifiers, isPopupTrigger,
198210
synthesized);
199211
}
200212
}
@@ -208,7 +220,9 @@ void setState(MouseState newState, boolean synthesized) {
208220
default: dY = 0.0; break;
209221
}
210222
if (dY != 0.0) {
211-
int modifiers = newState.getModifiers();
223+
KeyState keyState = new KeyState();
224+
KeyInput.getInstance().getState(keyState);
225+
int modifiers = newState.getModifiers() | keyState.getModifiers();
212226
RunnableProcessor.runLater(() -> {
213227
view.notifyScroll(relX, relY, x, y, 0.0, dY,
214228
modifiers, 1, 0, 0, 0, 1.0, 1.0);

‎tests/system/src/test/java/test/robot/com/sun/glass/ui/monocle/RobotTest.java

+54
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030
import javafx.geometry.Point2D;
3131
import javafx.scene.input.KeyCode;
3232
import javafx.scene.input.MouseButton;
33+
import javafx.scene.input.MouseEvent;
3334
import javafx.scene.robot.Robot;
3435

3536
import org.junit.Before;
@@ -38,6 +39,13 @@
3839
import org.junit.rules.TestName;
3940

4041
import static org.junit.Assert.assertEquals;
42+
import static org.junit.Assert.assertTrue;
43+
import static org.junit.Assert.fail;
44+
45+
import java.util.ArrayList;
46+
import java.util.List;
47+
import java.util.function.Consumer;
48+
import java.util.stream.Collectors;
4149

4250
/**
4351
* This is a generic test for Glass robot. It is in the monocle.input package
@@ -54,6 +62,52 @@ public void setUpScreen() throws Exception {
5462
TestApplication.showFullScreenScene();
5563
}
5664

65+
@Test
66+
public void clickKeyModifierTest() throws Exception {
67+
runWithKeyPress(KeyCode.CONTROL, MouseButton.PRIMARY, "Clicked at 300, 400 with modifier 'CTRL'", evt -> {
68+
assertTrue("Ctrl should be down",evt.isControlDown());
69+
});
70+
runWithKeyPress(KeyCode.SHIFT, MouseButton.PRIMARY, "Clicked at 300, 400 with modifier 'SHIFT'", evt -> {
71+
assertTrue("Shift should be down",evt.isShiftDown());
72+
});
73+
runWithKeyPress(KeyCode.ALT, MouseButton.PRIMARY, "Clicked at 300, 400 with modifier 'ALT'", evt -> {
74+
assertTrue("Alt should be down",evt.isAltDown());
75+
});
76+
}
77+
78+
private void runWithKeyPress(KeyCode code, MouseButton button, String message, Consumer<MouseEvent> test) throws Exception {
79+
TestApplication.getStage().getScene().setOnMouseClicked(
80+
(e) -> {
81+
test.accept(e);
82+
TestLogShim.format("Clicked at %.0f, %.0f with modifier '%s'", e.getScreenX(), e.getScreenY(), modifierString(e));
83+
}
84+
);
85+
86+
Platform.runLater(() -> {
87+
Robot robot = new Robot();
88+
robot.mouseMove(300, 400);
89+
robot.keyPress(code);
90+
robot.mousePress(button);
91+
robot.mouseRelease(button);
92+
robot.keyRelease(code);
93+
});
94+
TestLogShim.waitForLog(message);
95+
}
96+
97+
private static String modifierString(MouseEvent evt) {
98+
List<String> modifiers = new ArrayList<>();
99+
if(evt.isAltDown()) {
100+
modifiers.add("ALT");
101+
}
102+
if(evt.isControlDown()) {
103+
modifiers.add("CTRL");
104+
}
105+
if(evt.isShiftDown()) {
106+
modifiers.add("SHIFT");
107+
}
108+
return modifiers.stream().collect(Collectors.joining(", "));
109+
}
110+
57111
@Test
58112
public void clickTest() throws Exception {
59113
TestApplication.getStage().getScene().setOnMouseClicked(

0 commit comments

Comments
 (0)
Please sign in to comment.