forked from openjdk/jdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
8342096: Popup menus that request focus are not shown on Linux with W…
…ayland
- Loading branch information
Showing
3 changed files
with
129 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
104 changes: 104 additions & 0 deletions
104
test/jdk/javax/swing/JPopupMenu/NestedFocusablePopupTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,104 @@ | ||
/* | ||
* Copyright (c) 2024, 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. | ||
*/ | ||
|
||
/* | ||
* @test | ||
* @summary tests if nested menu is displayed on Wayland | ||
* @key headful | ||
* @bug 8342096 | ||
* @requires (os.family == "linux") | ||
*/ | ||
|
||
import javax.swing.JButton; | ||
import javax.swing.JFrame; | ||
import javax.swing.JMenu; | ||
import javax.swing.JPanel; | ||
import javax.swing.JPopupMenu; | ||
import javax.swing.SwingUtilities; | ||
import java.awt.Dimension; | ||
import java.awt.Point; | ||
import java.awt.Robot; | ||
import java.awt.event.InputEvent; | ||
|
||
public class NestedFocusablePopupTest { | ||
|
||
static volatile JMenu menu; | ||
static volatile JPopupMenu popupMenu; | ||
static volatile JFrame frame; | ||
|
||
public static void main(String[] args) throws Exception { | ||
if (System.getenv("WAYLAND_DISPLAY") == null) { | ||
//test is valid only when running on Wayland. | ||
return; | ||
} | ||
|
||
Robot robot = new Robot(); | ||
robot.setAutoDelay(50); | ||
|
||
try { | ||
SwingUtilities.invokeAndWait(NestedFocusablePopupTest::initAndShowGui); | ||
robot.waitForIdle(); | ||
robot.delay(500); | ||
|
||
Point frameLocation = frame.getLocationOnScreen(); | ||
robot.mouseMove(frameLocation.x + frame.getWidth() / 2, | ||
frameLocation.y + frame.getHeight() / 2); | ||
|
||
robot.mousePress(InputEvent.BUTTON3_DOWN_MASK); | ||
robot.mouseRelease(InputEvent.BUTTON3_DOWN_MASK); | ||
|
||
robot.waitForIdle(); | ||
robot.delay(100); | ||
|
||
Point menuLocation = menu.getLocationOnScreen(); | ||
robot.mouseMove(menuLocation.x + 5, menuLocation.y + 5); | ||
robot.waitForIdle(); | ||
robot.delay(200); | ||
|
||
if (!popupMenu.isVisible()) { | ||
throw new RuntimeException("Popup is not visible"); | ||
} | ||
} finally { | ||
SwingUtilities.invokeAndWait(frame::dispose); | ||
} | ||
} | ||
|
||
|
||
private static void initAndShowGui() { | ||
frame = new JFrame("NestedFocusablePopupTest"); | ||
JPanel panel = new JPanel(); | ||
panel.setPreferredSize(new Dimension(200,180)); | ||
|
||
|
||
popupMenu = new JPopupMenu(); | ||
menu = new JMenu("menu to hover"); | ||
menu.add(new JButton("JButton")); | ||
popupMenu.add(menu); | ||
|
||
panel.setComponentPopupMenu(popupMenu); | ||
frame.add(panel); | ||
frame.pack(); | ||
frame.setLocationRelativeTo(null); | ||
frame.setVisible(true); | ||
} | ||
} |