1
1
/*
2
- * Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
2
+ * Copyright (c) 2017, 2023, Oracle and/or its affiliates. All rights reserved.
3
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
4
*
5
5
* This code is free software; you can redistribute it and/or modify it
33
33
import java .awt .Robot ;
34
34
import java .awt .Toolkit ;
35
35
import java .awt .event .InputEvent ;
36
+ import java .awt .event .MouseAdapter ;
36
37
import java .awt .event .MouseEvent ;
37
- import java .awt .event .*;
38
+ import java .io .File ;
39
+ import java .util .stream .IntStream ;
40
+ import javax .imageio .ImageIO ;
38
41
39
- /**
42
+ /*
40
43
* @test
41
44
* @key headful
42
45
* @bug 8160270
@@ -47,43 +50,59 @@ public final class PopupMenuLocation {
47
50
private static final int SIZE = 350 ;
48
51
public static final String TEXT =
49
52
"Long-long-long-long-long-long-long text in the item-" ;
53
+ public static final int OFFSET = 50 ;
50
54
private static volatile boolean action = false ;
55
+ private static Robot robot ;
56
+ private static Frame frame ;
57
+ private static Rectangle screenBounds ;
58
+
51
59
52
60
public static void main (final String [] args ) throws Exception {
61
+ robot = new Robot ();
62
+ robot .setAutoDelay (200 );
53
63
GraphicsEnvironment ge =
54
64
GraphicsEnvironment .getLocalGraphicsEnvironment ();
55
65
GraphicsDevice [] sds = ge .getScreenDevices ();
56
66
for (GraphicsDevice sd : sds ) {
57
67
GraphicsConfiguration gc = sd .getDefaultConfiguration ();
58
- Rectangle bounds = gc .getBounds ();
59
- Point point = new Point (bounds .x , bounds .y );
68
+ screenBounds = gc .getBounds ();
60
69
Insets insets = Toolkit .getDefaultToolkit ().getScreenInsets (gc );
61
- while (point .y < bounds .y + bounds .height - insets .bottom - SIZE ) {
62
- while (point .x
63
- < bounds .x + bounds .width - insets .right - SIZE ) {
70
+ Point point = new Point (screenBounds .x + insets .left ,
71
+ screenBounds .y + insets .top );
72
+ final int yBound = screenBounds .y + screenBounds .height
73
+ - insets .bottom - SIZE ;
74
+ final int xBound = screenBounds .x + screenBounds .width
75
+ - insets .right - SIZE ;
76
+ while (point .y < yBound ) {
77
+ while (point .x < xBound ) {
64
78
test (point );
65
- point .translate (bounds .width / 5 , 0 );
79
+ point .translate (screenBounds .width / 5 , 0 );
66
80
}
67
- point .setLocation (bounds .x , point .y + bounds .height / 5 );
81
+ point .setLocation (screenBounds .x ,
82
+ point .y + screenBounds .height / 5 );
68
83
}
69
84
}
70
85
}
71
86
72
- private static void test (final Point tmp ) throws Exception {
87
+ private static void test (final Point loc ) {
88
+ frame = new Frame ();
73
89
PopupMenu pm = new PopupMenu ();
74
- for (int i = 1 ; i < 7 ; i ++) {
75
- pm .add (TEXT + i );
76
- }
77
- pm .addActionListener (e -> action = true );
78
- Frame frame = new Frame ();
90
+ IntStream .rangeClosed (1 , 6 ).forEach (i -> pm .add (TEXT + i ));
91
+ pm .addActionListener (e -> {
92
+ action = true ;
93
+ System .out .println (" Got action event " + e );
94
+ });
95
+
79
96
try {
97
+ frame .setUndecorated (true );
80
98
frame .setAlwaysOnTop (true );
81
99
frame .setLayout (new FlowLayout ());
82
100
frame .add (pm );
83
101
frame .pack ();
84
102
frame .setSize (SIZE , SIZE );
103
+ frame .setLocation (loc );
85
104
frame .setVisible (true );
86
- frame . setLocation ( tmp . x , tmp . y );
105
+
87
106
frame .addMouseListener (new MouseAdapter () {
88
107
public void mousePressed (MouseEvent e ) {
89
108
show (e );
@@ -105,23 +124,37 @@ private void show(MouseEvent e) {
105
124
}
106
125
}
107
126
108
- private static void openPopup (final Frame frame ) throws Exception {
109
- Robot robot = new Robot ();
110
- robot .setAutoDelay (200 );
127
+ private static void openPopup (final Frame frame ) {
111
128
robot .waitForIdle ();
112
129
Point pt = frame .getLocationOnScreen ();
113
- robot .mouseMove (pt .x + frame .getWidth () / 2 , pt .y + 50 );
130
+ int x = pt .x + frame .getWidth () / 2 ;
131
+ int y = pt .y + OFFSET ;
132
+ robot .mouseMove (x , y );
114
133
robot .mousePress (InputEvent .BUTTON3_DOWN_MASK );
115
134
robot .mouseRelease (InputEvent .BUTTON3_DOWN_MASK );
116
- int x = pt . x + frame . getWidth () / 2 ;
117
- int y = pt . y + 130 ;
135
+ robot . delay ( 200 ) ;
136
+ y += OFFSET ;
118
137
robot .mouseMove (x , y );
119
138
robot .mousePress (InputEvent .BUTTON1_DOWN_MASK );
120
139
robot .mouseRelease (InputEvent .BUTTON1_DOWN_MASK );
121
140
robot .waitForIdle ();
122
141
if (!action ) {
123
- throw new RuntimeException ();
142
+ captureScreen ();
143
+ throw new RuntimeException (
144
+ "Failed, didn't receive the PopupMenu ActionEvent on " +
145
+ "frame= " + frame + ", isFocused = " + frame .isFocused ());
124
146
}
125
147
action = false ;
126
148
}
149
+
150
+ private static void captureScreen () {
151
+ try {
152
+ ImageIO .write (robot .createScreenCapture (screenBounds ),
153
+ "png" ,
154
+ new File ("screen.png" ));
155
+ } catch (Exception e ) {
156
+ e .printStackTrace ();
157
+ }
158
+ }
159
+
127
160
}
0 commit comments