< prev index next >

test/jdk/java/awt/WMSpecificTests/Metacity/FullscreenDialogModality.java

Print this page
rev 59106 : imported patch client


   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 8012586
  27  * @summary verify that modal dialog will appeared above fullscreen window under Metacity WM.
  28  * @requires (os.family == "linux" | os.family == "solaris")
  29  * @modules java.desktop/sun.awt.X11
  30  * @library ../../regtesthelpers
  31  * @build Util
  32  * @run main FullscreenDialogModality
  33  * @run main/othervm FullscreenDialogModality
  34  * @author vkravets
  35  */
  36 
  37 import test.java.awt.regtesthelpers.Util;
  38 
  39 import java.awt.*;
  40 import java.lang.reflect.InvocationTargetException;
  41 
  42 public class FullscreenDialogModality extends Frame {
  43 
  44     static Robot robot = null;
  45 
  46     public void enterFS() {
  47         GraphicsDevice gd = getGraphicsConfiguration().getDevice();
  48         final boolean fs = gd.isFullScreenSupported();




   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 8012586
  27  * @summary verify that modal dialog will appeared above fullscreen window under Metacity WM.
  28  * @requires os.family == "linux"
  29  * @modules java.desktop/sun.awt.X11
  30  * @library ../../regtesthelpers
  31  * @build Util
  32  * @run main FullscreenDialogModality
  33  * @run main/othervm FullscreenDialogModality
  34  * @author vkravets
  35  */
  36 
  37 import test.java.awt.regtesthelpers.Util;
  38 
  39 import java.awt.*;
  40 import java.lang.reflect.InvocationTargetException;
  41 
  42 public class FullscreenDialogModality extends Frame {
  43 
  44     static Robot robot = null;
  45 
  46     public void enterFS() {
  47         GraphicsDevice gd = getGraphicsConfiguration().getDevice();
  48         final boolean fs = gd.isFullScreenSupported();


< prev index next >