< prev index next >

test/javax/swing/JWindow/ShapedAndTranslucentWindows/PerPixelTranslucentSwing.java

Print this page
rev 14836 : 8159690: [TESTBUG] Mark headful tests with @key headful.
   1 /*
   2  * Copyright (c) 2010, 2014, 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 javax.swing.*;
  25 import java.awt.*;
  26 
  27 /*
  28  * @test

  29  * @summary Check if a per-pixel translucent window shows only the area having
  30  *          opaque pixels
  31  * Test Description: Check if PERPIXEL_TRANSLUCENT Translucency type is supported
  32  *      on the current platform. Proceed if it is supported. Create a swing window
  33  *      with some swing components in it and a transparent background (alpha 0.0).
  34  *      Bring this window on top of a known background. Do this test for JFrame,
  35  *      JWindow and JDialog
  36  * Expected Result: Only the components present in the window must be shown. Other
  37  *      areas of the window must be transparent so that the background shows
  38  * @author mrkam
  39  * @library ../../../../lib/testlibrary
  40  * @build Common ExtendedRobot
  41  * @run main PerPixelTranslucentSwing
  42  */
  43 
  44 public class PerPixelTranslucentSwing extends Common {
  45 
  46     JButton north;
  47 
  48     public static void main(String[] ignored) throws Exception {


   1 /*
   2  * Copyright (c) 2010, 2016, 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 javax.swing.*;
  25 import java.awt.*;
  26 
  27 /*
  28  * @test
  29  * @key headful
  30  * @summary Check if a per-pixel translucent window shows only the area having
  31  *          opaque pixels
  32  * Test Description: Check if PERPIXEL_TRANSLUCENT Translucency type is supported
  33  *      on the current platform. Proceed if it is supported. Create a swing window
  34  *      with some swing components in it and a transparent background (alpha 0.0).
  35  *      Bring this window on top of a known background. Do this test for JFrame,
  36  *      JWindow and JDialog
  37  * Expected Result: Only the components present in the window must be shown. Other
  38  *      areas of the window must be transparent so that the background shows
  39  * @author mrkam
  40  * @library ../../../../lib/testlibrary
  41  * @build Common ExtendedRobot
  42  * @run main PerPixelTranslucentSwing
  43  */
  44 
  45 public class PerPixelTranslucentSwing extends Common {
  46 
  47     JButton north;
  48 
  49     public static void main(String[] ignored) throws Exception {


< prev index next >