author | hseigel |
Wed, 01 Mar 2017 08:00:02 -0500 | |
changeset 46194 | 5596e6f63072 |
parent 5506 | 202f599c92aa |
permissions | -rw-r--r-- |
1275
748883f48403
6718965: Swing color chooser tests should be open source
malenkov
parents:
diff
changeset
|
1 |
/* |
5506 | 2 |
* Copyright (c) 2003, 2008, Oracle and/or its affiliates. All rights reserved. |
1275
748883f48403
6718965: Swing color chooser tests should be open source
malenkov
parents:
diff
changeset
|
3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
748883f48403
6718965: Swing color chooser tests should be open source
malenkov
parents:
diff
changeset
|
4 |
* |
748883f48403
6718965: Swing color chooser tests should be open source
malenkov
parents:
diff
changeset
|
5 |
* This code is free software; you can redistribute it and/or modify it |
748883f48403
6718965: Swing color chooser tests should be open source
malenkov
parents:
diff
changeset
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
748883f48403
6718965: Swing color chooser tests should be open source
malenkov
parents:
diff
changeset
|
7 |
* published by the Free Software Foundation. |
748883f48403
6718965: Swing color chooser tests should be open source
malenkov
parents:
diff
changeset
|
8 |
* |
748883f48403
6718965: Swing color chooser tests should be open source
malenkov
parents:
diff
changeset
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
748883f48403
6718965: Swing color chooser tests should be open source
malenkov
parents:
diff
changeset
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
748883f48403
6718965: Swing color chooser tests should be open source
malenkov
parents:
diff
changeset
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
748883f48403
6718965: Swing color chooser tests should be open source
malenkov
parents:
diff
changeset
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
748883f48403
6718965: Swing color chooser tests should be open source
malenkov
parents:
diff
changeset
|
13 |
* accompanied this code). |
748883f48403
6718965: Swing color chooser tests should be open source
malenkov
parents:
diff
changeset
|
14 |
* |
748883f48403
6718965: Swing color chooser tests should be open source
malenkov
parents:
diff
changeset
|
15 |
* You should have received a copy of the GNU General Public License version |
748883f48403
6718965: Swing color chooser tests should be open source
malenkov
parents:
diff
changeset
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
748883f48403
6718965: Swing color chooser tests should be open source
malenkov
parents:
diff
changeset
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
748883f48403
6718965: Swing color chooser tests should be open source
malenkov
parents:
diff
changeset
|
18 |
* |
5506 | 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. |
|
1275
748883f48403
6718965: Swing color chooser tests should be open source
malenkov
parents:
diff
changeset
|
22 |
*/ |
748883f48403
6718965: Swing color chooser tests should be open source
malenkov
parents:
diff
changeset
|
23 |
|
748883f48403
6718965: Swing color chooser tests should be open source
malenkov
parents:
diff
changeset
|
24 |
/* |
748883f48403
6718965: Swing color chooser tests should be open source
malenkov
parents:
diff
changeset
|
25 |
* @test |
748883f48403
6718965: Swing color chooser tests should be open source
malenkov
parents:
diff
changeset
|
26 |
* @bug 4759934 |
748883f48403
6718965: Swing color chooser tests should be open source
malenkov
parents:
diff
changeset
|
27 |
* @summary Tests windows activation problem |
748883f48403
6718965: Swing color chooser tests should be open source
malenkov
parents:
diff
changeset
|
28 |
* @author Andrey Pikalev |
748883f48403
6718965: Swing color chooser tests should be open source
malenkov
parents:
diff
changeset
|
29 |
* @run applet/manual=yesno Test4759934.html |
748883f48403
6718965: Swing color chooser tests should be open source
malenkov
parents:
diff
changeset
|
30 |
*/ |
748883f48403
6718965: Swing color chooser tests should be open source
malenkov
parents:
diff
changeset
|
31 |
|
748883f48403
6718965: Swing color chooser tests should be open source
malenkov
parents:
diff
changeset
|
32 |
import java.awt.Color; |
748883f48403
6718965: Swing color chooser tests should be open source
malenkov
parents:
diff
changeset
|
33 |
import java.awt.Component; |
748883f48403
6718965: Swing color chooser tests should be open source
malenkov
parents:
diff
changeset
|
34 |
import java.awt.Window; |
748883f48403
6718965: Swing color chooser tests should be open source
malenkov
parents:
diff
changeset
|
35 |
import java.awt.event.ActionEvent; |
748883f48403
6718965: Swing color chooser tests should be open source
malenkov
parents:
diff
changeset
|
36 |
import java.awt.event.ActionListener; |
748883f48403
6718965: Swing color chooser tests should be open source
malenkov
parents:
diff
changeset
|
37 |
import javax.swing.JApplet; |
748883f48403
6718965: Swing color chooser tests should be open source
malenkov
parents:
diff
changeset
|
38 |
import javax.swing.JButton; |
748883f48403
6718965: Swing color chooser tests should be open source
malenkov
parents:
diff
changeset
|
39 |
import javax.swing.JColorChooser; |
748883f48403
6718965: Swing color chooser tests should be open source
malenkov
parents:
diff
changeset
|
40 |
import javax.swing.JDialog; |
748883f48403
6718965: Swing color chooser tests should be open source
malenkov
parents:
diff
changeset
|
41 |
import javax.swing.JFrame; |
748883f48403
6718965: Swing color chooser tests should be open source
malenkov
parents:
diff
changeset
|
42 |
|
748883f48403
6718965: Swing color chooser tests should be open source
malenkov
parents:
diff
changeset
|
43 |
public class Test4759934 extends JApplet implements ActionListener { |
748883f48403
6718965: Swing color chooser tests should be open source
malenkov
parents:
diff
changeset
|
44 |
private static final String CMD_DIALOG = "Show Dialog"; // NON-NLS: first button |
748883f48403
6718965: Swing color chooser tests should be open source
malenkov
parents:
diff
changeset
|
45 |
private static final String CMD_CHOOSER = "Show ColorChooser"; // NON-NLS: second button |
748883f48403
6718965: Swing color chooser tests should be open source
malenkov
parents:
diff
changeset
|
46 |
|
748883f48403
6718965: Swing color chooser tests should be open source
malenkov
parents:
diff
changeset
|
47 |
private final JFrame frame = new JFrame("Test"); // NON-NLS: frame title |
748883f48403
6718965: Swing color chooser tests should be open source
malenkov
parents:
diff
changeset
|
48 |
|
748883f48403
6718965: Swing color chooser tests should be open source
malenkov
parents:
diff
changeset
|
49 |
public void init() { |
748883f48403
6718965: Swing color chooser tests should be open source
malenkov
parents:
diff
changeset
|
50 |
show(this.frame, CMD_DIALOG); |
748883f48403
6718965: Swing color chooser tests should be open source
malenkov
parents:
diff
changeset
|
51 |
} |
748883f48403
6718965: Swing color chooser tests should be open source
malenkov
parents:
diff
changeset
|
52 |
|
748883f48403
6718965: Swing color chooser tests should be open source
malenkov
parents:
diff
changeset
|
53 |
public void actionPerformed(ActionEvent event) { |
748883f48403
6718965: Swing color chooser tests should be open source
malenkov
parents:
diff
changeset
|
54 |
String command = event.getActionCommand(); |
748883f48403
6718965: Swing color chooser tests should be open source
malenkov
parents:
diff
changeset
|
55 |
if (CMD_DIALOG.equals(command)) { |
748883f48403
6718965: Swing color chooser tests should be open source
malenkov
parents:
diff
changeset
|
56 |
JDialog dialog = new JDialog(this.frame, "Dialog"); // NON-NLS: dialog title |
748883f48403
6718965: Swing color chooser tests should be open source
malenkov
parents:
diff
changeset
|
57 |
dialog.setLocation(200, 0); |
748883f48403
6718965: Swing color chooser tests should be open source
malenkov
parents:
diff
changeset
|
58 |
show(dialog, CMD_CHOOSER); |
748883f48403
6718965: Swing color chooser tests should be open source
malenkov
parents:
diff
changeset
|
59 |
} |
748883f48403
6718965: Swing color chooser tests should be open source
malenkov
parents:
diff
changeset
|
60 |
else if (CMD_CHOOSER.equals(command)) { |
748883f48403
6718965: Swing color chooser tests should be open source
malenkov
parents:
diff
changeset
|
61 |
Object source = event.getSource(); |
748883f48403
6718965: Swing color chooser tests should be open source
malenkov
parents:
diff
changeset
|
62 |
Component component = (source instanceof Component) |
748883f48403
6718965: Swing color chooser tests should be open source
malenkov
parents:
diff
changeset
|
63 |
? (Component) source |
748883f48403
6718965: Swing color chooser tests should be open source
malenkov
parents:
diff
changeset
|
64 |
: null; |
748883f48403
6718965: Swing color chooser tests should be open source
malenkov
parents:
diff
changeset
|
65 |
|
748883f48403
6718965: Swing color chooser tests should be open source
malenkov
parents:
diff
changeset
|
66 |
JColorChooser.showDialog(component, "ColorChooser", Color.BLUE); // NON-NLS: title |
748883f48403
6718965: Swing color chooser tests should be open source
malenkov
parents:
diff
changeset
|
67 |
} |
748883f48403
6718965: Swing color chooser tests should be open source
malenkov
parents:
diff
changeset
|
68 |
} |
748883f48403
6718965: Swing color chooser tests should be open source
malenkov
parents:
diff
changeset
|
69 |
|
748883f48403
6718965: Swing color chooser tests should be open source
malenkov
parents:
diff
changeset
|
70 |
private void show(Window window, String command) { |
748883f48403
6718965: Swing color chooser tests should be open source
malenkov
parents:
diff
changeset
|
71 |
JButton button = new JButton(command); |
748883f48403
6718965: Swing color chooser tests should be open source
malenkov
parents:
diff
changeset
|
72 |
button.setActionCommand(command); |
748883f48403
6718965: Swing color chooser tests should be open source
malenkov
parents:
diff
changeset
|
73 |
button.addActionListener(this); |
748883f48403
6718965: Swing color chooser tests should be open source
malenkov
parents:
diff
changeset
|
74 |
button.setFont(button.getFont().deriveFont(64.0f)); |
748883f48403
6718965: Swing color chooser tests should be open source
malenkov
parents:
diff
changeset
|
75 |
|
748883f48403
6718965: Swing color chooser tests should be open source
malenkov
parents:
diff
changeset
|
76 |
window.add(button); |
748883f48403
6718965: Swing color chooser tests should be open source
malenkov
parents:
diff
changeset
|
77 |
window.pack(); |
748883f48403
6718965: Swing color chooser tests should be open source
malenkov
parents:
diff
changeset
|
78 |
window.setVisible(true); |
748883f48403
6718965: Swing color chooser tests should be open source
malenkov
parents:
diff
changeset
|
79 |
} |
748883f48403
6718965: Swing color chooser tests should be open source
malenkov
parents:
diff
changeset
|
80 |
} |