< prev index next >

test/jdk/java/awt/Focus/ModalBlockedStealsFocusTest/ModalBlockedStealsFocusTest.java

Print this page




   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 /*
  25   test

  26   @bug       6426132
  27   @summary   Modal blocked window shouldn't steal focus when shown, or brought to front.
  28   @author    anton.tarasov@...: area=awt.focus
  29   @run       applet ModalBlockedStealsFocusTest.html

  30 */
  31 
  32 import java.awt.*;
  33 import java.awt.event.*;
  34 import java.applet.Applet;
  35 import java.util.concurrent.atomic.AtomicBoolean;
  36 import java.lang.reflect.InvocationTargetException;
  37 import test.java.awt.regtesthelpers.Util;
  38 
  39 public class ModalBlockedStealsFocusTest extends Applet {
  40     Frame frame = new Frame("Blocked Frame");
  41     Dialog dialog = new Dialog(frame, "Modal Dialog", Dialog.ModalityType.TOOLKIT_MODAL);
  42     AtomicBoolean lostFocus = new AtomicBoolean(false);
  43 
  44     public static void main(String[] args) {
  45         ModalBlockedStealsFocusTest app = new ModalBlockedStealsFocusTest();
  46         app.init();
  47         app.start();
  48     }
  49 
  50     public void init() {
  51         // Create instructions for the user here, as well as set up
  52         // the environment -- set the layout manager, add buttons,
  53         // etc.
  54         this.setLayout (new BorderLayout ());
  55     }
  56 
  57     public void start() {
  58         if ("sun.awt.motif.MToolkit".equals(Toolkit.getDefaultToolkit().getClass().getName())) {
  59             System.out.println("The test is not for MToolkit.");
  60             return;
  61         }
  62 
  63         dialog.setBounds(800, 0, 200, 100);
  64         frame.setBounds(800, 150, 200, 100);
  65 
  66         dialog.addWindowFocusListener(new WindowAdapter() {
  67                 public void windowLostFocus(WindowEvent e) {
  68                     System.out.println(e.toString());
  69                     synchronized (lostFocus) {
  70                         lostFocus.set(true);
  71                         lostFocus.notifyAll();
  72                     }
  73                 }
  74             });
  75 
  76         new Thread(new Runnable() {




   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 /*
  25   @test
  26   @key headful
  27   @bug        6426132
  28   @summary    Modal blocked window shouldn't steal focus when shown, or brought to front.
  29   @library    ../../regtesthelpers
  30   @build      Util
  31   @run        main ModalBlockedStealsFocusTest
  32 */
  33 
  34 import java.awt.*;
  35 import java.awt.event.*;

  36 import java.util.concurrent.atomic.AtomicBoolean;

  37 import test.java.awt.regtesthelpers.Util;
  38 
  39 public class ModalBlockedStealsFocusTest {
  40     Frame frame = new Frame("Blocked Frame");
  41     Dialog dialog = new Dialog(frame, "Modal Dialog", Dialog.ModalityType.TOOLKIT_MODAL);
  42     AtomicBoolean lostFocus = new AtomicBoolean(false);
  43 
  44     public static void main(String[] args) {
  45         ModalBlockedStealsFocusTest app = new ModalBlockedStealsFocusTest();

  46         app.start();
  47     }
  48 







  49     public void start() {
  50         if ("sun.awt.motif.MToolkit".equals(Toolkit.getDefaultToolkit().getClass().getName())) {
  51             System.out.println("The test is not for MToolkit.");
  52             return;
  53         }
  54 
  55         dialog.setBounds(800, 0, 200, 100);
  56         frame.setBounds(800, 150, 200, 100);
  57 
  58         dialog.addWindowFocusListener(new WindowAdapter() {
  59                 public void windowLostFocus(WindowEvent e) {
  60                     System.out.println(e.toString());
  61                     synchronized (lostFocus) {
  62                         lostFocus.set(true);
  63                         lostFocus.notifyAll();
  64                     }
  65                 }
  66             });
  67 
  68         new Thread(new Runnable() {


< prev index next >