1/*
2 * Copyright (c) 2002, 2013, 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.  Oracle designates this
8 * particular file as subject to the "Classpath" exception as provided
9 * by Oracle in the LICENSE file that accompanied this code.
10 *
11 * This code is distributed in the hope that it will be useful, but WITHOUT
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
14 * version 2 for more details (a copy is included in the LICENSE file that
15 * accompanied this code).
16 *
17 * You should have received a copy of the GNU General Public License version
18 * 2 along with this work; if not, write to the Free Software Foundation,
19 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20 *
21 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
22 * or visit www.oracle.com if you need additional information or have any
23 * questions.
24 */
25
26package javax.swing.plaf.synth;
27
28import java.awt.Graphics;
29import javax.swing.AbstractButton;
30import javax.swing.JComponent;
31import javax.swing.plaf.ComponentUI;
32
33/**
34 * Provides the Synth L&F UI delegate for
35 * {@link javax.swing.JToggleButton}.
36 *
37 * @author Jeff Dinkins
38 * @since 1.7
39 */
40public class SynthToggleButtonUI extends SynthButtonUI {
41    // ********************************
42    //          Create PLAF
43    // ********************************
44
45    /**
46     * Creates a new UI object for the given component.
47     *
48     * @param b component to create UI object for
49     * @return the UI object
50     */
51    public static ComponentUI createUI(JComponent b) {
52        return new SynthToggleButtonUI();
53    }
54
55    /**
56     * {@inheritDoc}
57     */
58    @Override
59    protected String getPropertyPrefix() {
60        return "ToggleButton.";
61    }
62
63    @Override
64    void paintBackground(SynthContext context, Graphics g, JComponent c) {
65        if (((AbstractButton) c).isContentAreaFilled()) {
66            int x = 0, y = 0, w = c.getWidth(), h = c.getHeight();
67            SynthPainter painter = context.getPainter();
68            painter.paintToggleButtonBackground(context, g, x, y, w, h);
69        }
70    }
71
72    /**
73     * {@inheritDoc}
74     */
75    @Override
76    public void paintBorder(SynthContext context, Graphics g, int x,
77                            int y, int w, int h) {
78        context.getPainter().paintToggleButtonBorder(context, g, x, y, w, h);
79    }
80}
81