1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341
|
/*
* Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
* This code 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
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import javax.swing.event.*;
/**
* @test
* @bug 4245587 4474813 4425878 4767478 8015599
* @key headful
* @author Mark Davidson
* @summary Tests the location of the heavy weight popup portion of JComboBox,
* JMenu and JPopupMenu.
* @library ../regtesthelpers
* @build Util
* @run main TaskbarPositionTest
*/
public class TaskbarPositionTest extends JFrame implements ActionListener {
private boolean done;
private Throwable error;
private static TaskbarPositionTest test;
private static JPopupMenu popupMenu;
private static JPanel panel;
private static JComboBox<String> combo1;
private static JComboBox<String> combo2;
private static JMenuBar menubar;
private static JMenu menu1;
private static JMenu menu2;
private static Rectangle fullScreenBounds;
// The usable desktop space: screen size - screen insets.
private static Rectangle screenBounds;
private static String[] numData = {
"One", "Two", "Three", "Four", "Five", "Six", "Seven"
};
private static String[] dayData = {
"Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday", "Sunday"
};
private static char[] mnDayData = {
'M', 'T', 'W', 'R', 'F', 'S', 'U'
};
public TaskbarPositionTest() {
super("Use CTRL-down to show a JPopupMenu");
setContentPane(panel = createContentPane());
setJMenuBar(createMenuBar("1 - First Menu", true));
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
// CTRL-down will show the popup.
panel.getInputMap().put(KeyStroke.getKeyStroke(
KeyEvent.VK_DOWN, InputEvent.CTRL_MASK), "OPEN_POPUP");
panel.getActionMap().put("OPEN_POPUP", new PopupHandler());
pack();
Toolkit toolkit = Toolkit.getDefaultToolkit();
fullScreenBounds = new Rectangle(new Point(), toolkit.getScreenSize());
screenBounds = new Rectangle(new Point(), toolkit.getScreenSize());
// Place the frame near the bottom. This is a pretty wild guess.
this.setLocation(0, (int) screenBounds.getHeight() - 2 * this.getHeight());
// Reduce the screen bounds by the insets.
GraphicsConfiguration gc = this.getGraphicsConfiguration();
if (gc != null) {
Insets screenInsets = toolkit.getScreenInsets(gc);
screenBounds = gc.getBounds();
screenBounds.width -= (screenInsets.left + screenInsets.right);
screenBounds.height -= (screenInsets.top + screenInsets.bottom);
screenBounds.x += screenInsets.left;
screenBounds.y += screenInsets.top;
}
setVisible(true);
}
public static class ComboPopupCheckListener implements PopupMenuListener {
public void popupMenuCanceled(PopupMenuEvent ev) {
}
public void popupMenuWillBecomeVisible(PopupMenuEvent ev) {
}
public void popupMenuWillBecomeInvisible(PopupMenuEvent ev) {
Point cpos = combo1.getLocation();
SwingUtilities.convertPointToScreen(cpos, panel);
JPopupMenu pm = (JPopupMenu) combo1.getUI().getAccessibleChild(combo1, 0);
if (pm != null) {
Point p = pm.getLocation();
SwingUtilities.convertPointToScreen(p, pm);
if (p.y < cpos.y) {
throw new RuntimeException("ComboBox popup is wrongly aligned");
} // check that popup was opened down
}
}
}
private class PopupHandler extends AbstractAction {
public void actionPerformed(ActionEvent e) {
if (!popupMenu.isVisible()) {
popupMenu.show((Component) e.getSource(), 40, 40);
}
isPopupOnScreen(popupMenu, fullScreenBounds);
}
}
class PopupListener extends MouseAdapter {
private JPopupMenu popup;
public PopupListener(JPopupMenu popup) {
this.popup = popup;
}
public void mousePressed(MouseEvent e) {
maybeShowPopup(e);
}
public void mouseReleased(MouseEvent e) {
maybeShowPopup(e);
}
private void maybeShowPopup(MouseEvent e) {
if (e.isPopupTrigger()) {
popup.show(e.getComponent(), e.getX(), e.getY());
isPopupOnScreen(popup, fullScreenBounds);
}
}
}
/**
* Tests if the popup is on the screen.
*/
public static void isPopupOnScreen(JPopupMenu popup, Rectangle checkBounds) {
Dimension dim = popup.getSize();
Point pt = new Point();
SwingUtilities.convertPointToScreen(pt, popup);
Rectangle bounds = new Rectangle(pt, dim);
if (!SwingUtilities.isRectangleContainingRectangle(checkBounds, bounds)) {
throw new RuntimeException("We do not match! " + checkBounds + " / " + bounds);
}
}
private JPanel createContentPane() {
JPanel panel = new JPanel();
combo1 = new JComboBox<>(numData);
panel.add(combo1);
combo2 = new JComboBox<>(dayData);
combo2.setEditable(true);
panel.add(combo2);
panel.setSize(300, 200);
popupMenu = new JPopupMenu();
JMenuItem item;
for (int i = 0; i < dayData.length; i++) {
item = popupMenu.add(new JMenuItem(dayData[i], mnDayData[i]));
item.addActionListener(this);
}
panel.addMouseListener(new PopupListener(popupMenu));
JTextField field = new JTextField("CTRL+down for Popup");
// CTRL-down will show the popup.
field.getInputMap().put(KeyStroke.getKeyStroke(
KeyEvent.VK_DOWN, InputEvent.CTRL_MASK), "OPEN_POPUP");
field.getActionMap().put("OPEN_POPUP", new PopupHandler());
panel.add(field);
return panel;
}
/**
* @param str name of Menu
* @param bFlag set mnemonics on menu items
*/
private JMenuBar createMenuBar(String str, boolean bFlag) {
menubar = new JMenuBar();
menu1 = new JMenu(str);
menu1.setMnemonic(str.charAt(0));
menu1.addActionListener(this);
menubar.add(menu1);
for (int i = 0; i < 8; i++) {
JMenuItem menuitem = new JMenuItem("1 JMenuItem" + i);
menuitem.addActionListener(this);
if (bFlag) {
menuitem.setMnemonic('0' + i);
}
menu1.add(menuitem);
}
// second menu
menu2 = new JMenu("2 - Second Menu");
menu2.addActionListener(this);
menu2.setMnemonic('2');
menubar.add(menu2);
for (int i = 0; i < 5; i++) {
JMenuItem menuitem = new JMenuItem("2 JMenuItem" + i);
menuitem.addActionListener(this);
if (bFlag) {
menuitem.setMnemonic('0' + i);
}
menu2.add(menuitem);
}
JMenu submenu = new JMenu("Sub Menu");
submenu.setMnemonic('S');
submenu.addActionListener(this);
for (int i = 0; i < 5; i++) {
JMenuItem menuitem = new JMenuItem("S JMenuItem" + i);
menuitem.addActionListener(this);
if (bFlag) {
menuitem.setMnemonic('0' + i);
}
submenu.add(menuitem);
}
menu2.add(new JSeparator());
menu2.add(submenu);
return menubar;
}
public void actionPerformed(ActionEvent evt) {
Object obj = evt.getSource();
if (obj instanceof JMenuItem) {
// put the focus on the noneditable combo.
combo1.requestFocus();
}
}
public static void main(String[] args) throws Throwable {
SwingUtilities.invokeAndWait(new Runnable() {
public void run() {
test = new TaskbarPositionTest();
}
});
// Use Robot to automate the test
Robot robot;
robot = new Robot();
robot.setAutoDelay(125);
// 1 - menu
Util.hitMnemonics(robot, KeyEvent.VK_1);
robot.waitForIdle();
isPopupOnScreen(menu1.getPopupMenu(), screenBounds);
// 2 menu with sub menu
robot.keyPress(KeyEvent.VK_RIGHT);
robot.keyRelease(KeyEvent.VK_RIGHT);
Util.hitMnemonics(robot, KeyEvent.VK_S);
robot.waitForIdle();
isPopupOnScreen(menu2.getPopupMenu(), screenBounds);
robot.keyPress(KeyEvent.VK_ENTER);
robot.keyRelease(KeyEvent.VK_ENTER);
// Focus should go to non editable combo box
robot.waitForIdle();
Thread.sleep(500);
robot.keyPress(KeyEvent.VK_DOWN);
// How do we check combo boxes?
// Editable combo box
robot.keyPress(KeyEvent.VK_TAB);
robot.keyRelease(KeyEvent.VK_TAB);
robot.keyPress(KeyEvent.VK_DOWN);
robot.keyRelease(KeyEvent.VK_DOWN);
// combo1.getUI();
// Popup from Text field
robot.keyPress(KeyEvent.VK_TAB);
robot.keyRelease(KeyEvent.VK_TAB);
robot.keyPress(KeyEvent.VK_CONTROL);
robot.keyPress(KeyEvent.VK_DOWN);
robot.keyRelease(KeyEvent.VK_DOWN);
robot.keyRelease(KeyEvent.VK_CONTROL);
// Popup from a mouse click.
Point pt = new Point(2, 2);
SwingUtilities.convertPointToScreen(pt, panel);
robot.mouseMove((int) pt.getX(), (int) pt.getY());
robot.mousePress(InputEvent.BUTTON3_MASK);
robot.mouseRelease(InputEvent.BUTTON3_MASK);
robot.waitForIdle();
SwingUtilities.invokeAndWait(new Runnable() {
public void run() {
test.setLocation(-30, 100);
combo1.addPopupMenuListener(new ComboPopupCheckListener());
combo1.requestFocus();
}
});
robot.keyPress(KeyEvent.VK_DOWN);
robot.keyRelease(KeyEvent.VK_DOWN);
robot.keyPress(KeyEvent.VK_ESCAPE);
robot.keyRelease(KeyEvent.VK_ESCAPE);
robot.waitForIdle();
Thread.sleep(500);
}
}
|