2
|
1 |
/*
|
5506
|
2 |
* Copyright (c) 2002, 2003, Oracle and/or its affiliates. All rights reserved.
|
2
|
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
|
5506
|
7 |
* published by the Free Software Foundation. Oracle designates this
|
2
|
8 |
* particular file as subject to the "Classpath" exception as provided
|
5506
|
9 |
* by Oracle in the LICENSE file that accompanied this code.
|
2
|
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 |
*
|
5506
|
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.
|
2
|
24 |
*/
|
|
25 |
|
|
26 |
package javax.swing.plaf.synth;
|
|
27 |
|
2658
|
28 |
import java.awt.Graphics;
|
|
29 |
import javax.swing.AbstractButton;
|
|
30 |
import javax.swing.JComponent;
|
|
31 |
import javax.swing.plaf.ComponentUI;
|
2
|
32 |
|
|
33 |
/**
|
4394
|
34 |
* Provides the Synth L&F UI delegate for
|
|
35 |
* {@link javax.swing.JToggleButton}.
|
|
36 |
*
|
2
|
37 |
* @author Jeff Dinkins
|
4394
|
38 |
* @since 1.7
|
2
|
39 |
*/
|
4394
|
40 |
public class SynthToggleButtonUI extends SynthButtonUI {
|
2
|
41 |
// ********************************
|
|
42 |
// Create PLAF
|
|
43 |
// ********************************
|
4394
|
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 |
*/
|
2
|
51 |
public static ComponentUI createUI(JComponent b) {
|
|
52 |
return new SynthToggleButtonUI();
|
|
53 |
}
|
|
54 |
|
4394
|
55 |
/**
|
|
56 |
* @inheritDoc
|
|
57 |
*/
|
2658
|
58 |
@Override
|
2
|
59 |
protected String getPropertyPrefix() {
|
|
60 |
return "ToggleButton.";
|
|
61 |
}
|
|
62 |
|
2658
|
63 |
@Override
|
2
|
64 |
void paintBackground(SynthContext context, Graphics g, JComponent c) {
|
2658
|
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 |
}
|
2
|
70 |
}
|
|
71 |
|
4394
|
72 |
/**
|
|
73 |
* @inheritDoc
|
|
74 |
*/
|
2658
|
75 |
@Override
|
2
|
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 |
}
|