1 /*
2  * Copyright (c) 2008, 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 /* @test
25  * @bug 6742358
26  * @summary MetalSliderUI paint wrong vertical disabled filled JSlider for DefaultMetalTheme
27  * @author Pavel Porvatov
28  * @run applet/manual=done bug6742358.html
29  */
30 
31 import javax.swing.*;
32 import javax.swing.plaf.metal.DefaultMetalTheme;
33 import javax.swing.plaf.metal.MetalLookAndFeel;
34 
35 public class bug6742358 extends JApplet {
main(String[] args)36     public static void main(String[] args) {
37         MetalLookAndFeel.setCurrentTheme(new DefaultMetalTheme());
38 
39         JFrame frame = new JFrame();
40 
41         frame.setContentPane(new TestPanel());
42         frame.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
43         frame.pack();
44         frame.setLocationRelativeTo(null);
45 
46         frame.setVisible(true);
47     }
48 
init()49     public void init() {
50         MetalLookAndFeel.setCurrentTheme(new DefaultMetalTheme());
51 
52         TestPanel panel = new TestPanel();
53 
54         setContentPane(panel);
55     }
56 
57     private static class TestPanel extends JPanel {
58 
TestPanel()59         private TestPanel() {
60             JPanel pnVertical = new JPanel();
61 
62             pnVertical.setLayout(new BoxLayout(pnVertical, BoxLayout.Y_AXIS));
63 
64             for (int i = 0; i < 8; i++) {
65                 pnVertical.add(createSlider(false, (i & 4) == 0, (i & 2) == 0, (i & 1) == 0));
66             }
67 
68             JPanel pnHorizontal = new JPanel();
69 
70             pnHorizontal.setLayout(new BoxLayout(pnHorizontal, BoxLayout.X_AXIS));
71 
72             for (int i = 0; i < 8; i++) {
73                 pnHorizontal.add(createSlider(true, (i & 4) == 0, (i & 2) == 0, (i & 1) == 0));
74             }
75 
76             add(pnHorizontal);
77             add(pnVertical);
78         }
79     }
80 
createSlider(boolean vertical, boolean enabled, boolean filled, boolean inverted)81     private static JSlider createSlider(boolean vertical, boolean enabled, boolean filled, boolean inverted) {
82         JSlider result = new JSlider(vertical ? SwingConstants.VERTICAL : SwingConstants.HORIZONTAL, 0, 10, 5);
83 
84         result.setEnabled(enabled);
85         result.putClientProperty("JSlider.isFilled", filled);
86         result.setInverted(inverted);
87         result.setToolTipText("<html>vertical = " + vertical + "<br>enabled = " + enabled + "<br>filled = " + filled +
88                 "<br>inverted = " + inverted + "</html>");
89 
90         return result;
91     }
92 }
93