/* * Copyright (c) 2013, 2022, 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.
*/
public TaskbarPositionTest() {
frame = new JFrame("Use CTRL-down to show a JPopupMenu");
frame.setContentPane(panel = createContentPane());
frame.setJMenuBar(createMenuBar("1 - First Menu", true));
frame.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());
frame.pack();
Toolkit toolkit = Toolkit.getDefaultToolkit();
fullScreenBounds = new Rectangle(new Point(), toolkit.getScreenSize());
screenBounds = new Rectangle(new Point(), toolkit.getScreenSize());
if (pm != null) {
Point p = pm.getLocation();
SwingUtilities.convertPointToScreen(p, pm); if (p.y+1 < cpos.y) {
System.out.println("p.y " + p.y + " cpos.y " + cpos.y); thrownew RuntimeException("ComboBox popup is wrongly aligned");
} // check that popup was opened down
}
}
}
/** * Tests if the popup is on the screen.
*/ publicstaticvoid 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)) { thrownew 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;
}
publicvoid actionPerformed(ActionEvent evt) {
Object obj = evt.getSource(); if (obj instanceof JMenuItem) { // put the focus on the noneditable combo.
combo1.requestFocus();
}
}
// 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(pt.x, pt.y);
robot.mousePress(InputEvent.BUTTON3_MASK);
robot.mouseRelease(InputEvent.BUTTON3_MASK);
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.