|
| 1 | +/* |
| 2 | + * Copyright (c) 2005, 2024, Oracle and/or its affiliates. All rights reserved. |
| 3 | + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
| 4 | + * |
| 5 | + * This code is free software; you can redistribute it and/or modify it |
| 6 | + * under the terms of the GNU General Public License version 2 only, as |
| 7 | + * published by the Free Software Foundation. |
| 8 | + * |
| 9 | + * This code is distributed in the hope that it will be useful, but WITHOUT |
| 10 | + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
| 11 | + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
| 12 | + * version 2 for more details (a copy is included in the LICENSE file that |
| 13 | + * accompanied this code). |
| 14 | + * |
| 15 | + * You should have received a copy of the GNU General Public License version |
| 16 | + * 2 along with this work; if not, write to the Free Software Foundation, |
| 17 | + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
| 18 | + * |
| 19 | + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
| 20 | + * or visit www.oracle.com if you need additional information or have any |
| 21 | + * questions. |
| 22 | + */ |
| 23 | + |
| 24 | +import java.awt.AWTException; |
| 25 | +import java.awt.BorderLayout; |
| 26 | +import java.awt.Color; |
| 27 | +import java.awt.EventQueue; |
| 28 | +import java.awt.Frame; |
| 29 | +import java.awt.Graphics2D; |
| 30 | +import java.awt.RenderingHints; |
| 31 | +import java.awt.SystemTray; |
| 32 | +import java.awt.TextArea; |
| 33 | +import java.awt.TrayIcon; |
| 34 | +import java.awt.event.FocusAdapter; |
| 35 | +import java.awt.event.FocusEvent; |
| 36 | +import java.awt.image.BufferedImage; |
| 37 | + |
| 38 | +import jtreg.SkippedException; |
| 39 | + |
| 40 | +/* |
| 41 | + * @test |
| 42 | + * @bug 6269309 |
| 43 | + * @library /java/awt/regtesthelpers /test/lib |
| 44 | + * @build PassFailJFrame jtreg.SkippedException |
| 45 | + * @summary Tests that focus is transferred properly back |
| 46 | + * to toplevel after clicking on a tray icon. |
| 47 | + * @run main/manual FocusLostAfterTrayTest |
| 48 | + */ |
| 49 | + |
| 50 | +public class FocusLostAfterTrayTest { |
| 51 | + private static SystemTray tray; |
| 52 | + private static TrayIcon icon; |
| 53 | + |
| 54 | + private static final String INSTRUCTIONS = """ |
| 55 | + This test checks that focus is transferred properly back |
| 56 | + to top-level after clicking on a tray icon. |
| 57 | +
|
| 58 | + When the test starts, a Frame with a text area & a RED tray icon |
| 59 | + are shown. If you don't see a tray icon please make sure that |
| 60 | + the tray area (also called Taskbar Status Area on MS Windows |
| 61 | + Notification Area on Gnome or System Tray on KDE) is visible. |
| 62 | +
|
| 63 | + Click with a mouse inside a text area and make sure that it has |
| 64 | + received input focus. Then click on the tray icon and then back |
| 65 | + on the text area and verify that it has input focus again. Repeat |
| 66 | + the last step several times. Ensure that the text area always |
| 67 | + has the input focus and there are no "FOCUS LOST" event |
| 68 | + for text area in the log section. |
| 69 | +
|
| 70 | + If above is true, Press PASS, else FAIL. |
| 71 | + """; |
| 72 | + |
| 73 | + public static void main(String[] args) throws Exception { |
| 74 | + if (!SystemTray.isSupported()) { |
| 75 | + throw new SkippedException("Test not applicable as" |
| 76 | + + " System Tray not supported"); |
| 77 | + } |
| 78 | + |
| 79 | + try { |
| 80 | + PassFailJFrame.builder() |
| 81 | + .title("FocusLostAfterTrayTest Instructions") |
| 82 | + .instructions(INSTRUCTIONS) |
| 83 | + .columns(40) |
| 84 | + .testUI(FocusLostAfterTrayTest::createAndShowTrayIcon) |
| 85 | + .logArea() |
| 86 | + .build() |
| 87 | + .awaitAndCheck(); |
| 88 | + } finally { |
| 89 | + EventQueue.invokeAndWait(() -> { |
| 90 | + if (tray != null) { |
| 91 | + tray.remove(icon); |
| 92 | + } |
| 93 | + }); |
| 94 | + } |
| 95 | + } |
| 96 | + |
| 97 | + private static Frame createAndShowTrayIcon() { |
| 98 | + Frame frame = new Frame("FocusLostAfterTrayTest"); |
| 99 | + frame.setBounds(100, 300, 200, 200); |
| 100 | + frame.setLayout(new BorderLayout()); |
| 101 | + TextArea ta = new TextArea(); |
| 102 | + ta.addFocusListener(new FocusAdapter() { |
| 103 | + @Override |
| 104 | + public void focusGained(FocusEvent e) { |
| 105 | + PassFailJFrame.log("FOCUS GAINED: " |
| 106 | + + e.getComponent().getClass().toString()); |
| 107 | + } |
| 108 | + @Override |
| 109 | + public void focusLost(FocusEvent e) { |
| 110 | + PassFailJFrame.log("FOCUS LOST !! " |
| 111 | + + e.getComponent().getClass().toString()); |
| 112 | + } |
| 113 | + }); |
| 114 | + frame.add(ta); |
| 115 | + |
| 116 | + BufferedImage image = new BufferedImage(16, 16, |
| 117 | + BufferedImage.TYPE_INT_ARGB); |
| 118 | + Graphics2D g = image.createGraphics(); |
| 119 | + g.setRenderingHint(RenderingHints.KEY_TEXT_ANTIALIASING, |
| 120 | + RenderingHints.VALUE_TEXT_ANTIALIAS_ON); |
| 121 | + g.setColor(Color.RED); |
| 122 | + g.fillRect(0, 0, 16, 16); |
| 123 | + g.dispose(); |
| 124 | + tray = SystemTray.getSystemTray(); |
| 125 | + icon = new TrayIcon(image); |
| 126 | + icon.setImageAutoSize(true); |
| 127 | + |
| 128 | + try { |
| 129 | + tray.add(icon); |
| 130 | + } catch (AWTException e) { |
| 131 | + throw new RuntimeException("Error while adding" |
| 132 | + + " icon to system tray", e); |
| 133 | + } |
| 134 | + return frame; |
| 135 | + } |
| 136 | +} |
0 commit comments