SynthRadioButtonUIpublic class SynthRadioButtonUI extends SynthToggleButtonUI
Methods Summary |
---|
public static javax.swing.plaf.ComponentUI | createUI(javax.swing.JComponent b)
return new SynthRadioButtonUI();
| protected java.lang.String | getPropertyPrefix()
return "RadioButton.";
| protected javax.swing.Icon | getSizingIcon(javax.swing.AbstractButton b)Returns the Icon used in calculating the pref/min/max size.
return getIcon(b);
| void | paintBackground(javax.swing.plaf.synth.SynthContext context, java.awt.Graphics g, javax.swing.JComponent c)
context.getPainter().paintRadioButtonBackground(context, g, 0, 0,
c.getWidth(), c.getHeight());
| public void | paintBorder(javax.swing.plaf.synth.SynthContext context, java.awt.Graphics g, int x, int y, int w, int h)
context.getPainter().paintRadioButtonBorder(context, g, x, y, w, h);
|
|