0N/A/*
2362N/A * Copyright (c) 2007, Oracle and/or its affiliates. All rights reserved.
0N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
0N/A *
0N/A * This code is free software; you can redistribute it and/or modify it
0N/A * under the terms of the GNU General Public License version 2 only, as
0N/A * published by the Free Software Foundation.
0N/A *
0N/A * This code is distributed in the hope that it will be useful, but WITHOUT
0N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
0N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
0N/A * version 2 for more details (a copy is included in the LICENSE file that
0N/A * accompanied this code).
0N/A *
0N/A * You should have received a copy of the GNU General Public License version
0N/A * 2 along with this work; if not, write to the Free Software Foundation,
0N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
0N/A *
2362N/A * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
2362N/A * or visit www.oracle.com if you need additional information or have any
2362N/A * questions.
0N/A */
0N/A
0N/A/*
0N/A * @test
0N/A * @bug 6396526
0N/A * @summary Verify below-the-spot IM in the swing L&F JFrame.
0N/A * Although the swing component is decorated with L&F
0N/A * the IM window should have no decoration.
0N/A * @author yuriko.yamasaki
0N/A */
0N/A
0N/Aimport java.awt.*;
0N/Aimport javax.swing.*;
0N/A
0N/Apublic class IMLookAndFeel {
0N/A /**
0N/A * Create the GUI and show it. For thread safety,
0N/A * this method should be invoked from the
0N/A * event-dispatching thread.
0N/A */
0N/A private static void createAndShowGUI() {
0N/A //Suggest that the L&F (rather than the system)
0N/A //decorate all windows. This must be invoked before
0N/A //creating the JFrame. Native look and feels will
0N/A //ignore this hint.
0N/A //Create and set up the window.
0N/A
0N/A JFrame.setDefaultLookAndFeelDecorated(true);
0N/A JFrame frame = new JFrame("IM with L&F");
0N/A //frame.setUndecorated( true );
0N/A
0N/A frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
0N/A JTextArea description = new JTextArea("Please try typing using below-the-spot IM.\n\n eg. Use City IM with the following arguement:\n -Djava.awt.im.style=below-the-spot");
0N/A description.setPreferredSize(new Dimension(250, 70));
0N/A description.setEditable(false);
0N/A frame.getContentPane().add(description, BorderLayout.NORTH);
0N/A
0N/A JTextField textField = new JTextField();
0N/A textField.setPreferredSize(new Dimension(275, 50));
0N/A frame.getContentPane().add(textField, BorderLayout.CENTER);
0N/A
0N/A //Display the window.
0N/A frame.pack();
0N/A frame.setVisible(true);
0N/A }
0N/A
0N/A public static void main(String[] args) {
0N/A //Schedule a job for the event-dispatching thread:
0N/A //creating and showing this application's GUI.
0N/A javax.swing.SwingUtilities.invokeLater(new Runnable() {
0N/A public void run() {
0N/A createAndShowGUI();
0N/A }
0N/A });
0N/A }
0N/A}