a4b9ae8bb3
Reviewed-by: serb
66 lines
2.6 KiB
Java
66 lines
2.6 KiB
Java
/*
|
|
* Copyright (c) 2010, 2016, 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.
|
|
*/
|
|
|
|
import java.awt.*;
|
|
|
|
/*
|
|
* @test
|
|
* @bug 8164811
|
|
* @key headful
|
|
* @summary Check if a per-pixel translucent window is dragged and resized
|
|
* by mouse correctly.
|
|
* Test Description: Check if PERPIXEL_TRANSLUCENT translucency type is supported
|
|
* on the current platform. Proceed if they are supported. Create a window
|
|
* with some components in it, make window undecorated, apply translucent
|
|
* background of 0.5. Drag and resize the window using AWT Robot and verify
|
|
* that translucency is correctly applied with pixels checking. Make the
|
|
* window appear on top of a known background. Repeat this for JWindow,
|
|
* JDialog, JFrame.
|
|
* Expected Result: If PERPIXEL_TRANSLUCENT translucency type is supported, the
|
|
* window should appear with the translucency. Only window background
|
|
* should be translucent, all the controls should be opaque.
|
|
* @author mrkam
|
|
* @library /lib/client
|
|
* @build Common ExtendedRobot
|
|
* @run main PerPixelTranslucent
|
|
* @run main/othervm -Dsun.java2d.uiScale=1.5 PerPixelTranslucent
|
|
*/
|
|
|
|
public class PerPixelTranslucent extends Common {
|
|
|
|
public static void main(String[] ignored) throws Exception {
|
|
if (checkTranslucencyMode(GraphicsDevice.WindowTranslucency.PERPIXEL_TRANSLUCENT))
|
|
for (Class<Window> windowClass: WINDOWS_TO_TEST)
|
|
new PerPixelTranslucent(windowClass).doTest();
|
|
}
|
|
|
|
public PerPixelTranslucent(Class windowClass) throws Exception {
|
|
super(windowClass, 1.0f, 0.5f, false);
|
|
}
|
|
|
|
public void doTest() throws Exception {
|
|
robot.waitForIdle(delay);
|
|
checkTranslucent();
|
|
}
|
|
}
|