/[classpath]/classpath/javax/swing/plaf/basic/BasicLookAndFeel.java
ViewVC logotype

Diff of /classpath/javax/swing/plaf/basic/BasicLookAndFeel.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.38 by rabbit78, Wed Jul 20 15:25:55 2005 UTC revision 1.39 by rabbit78, Thu Jul 21 12:07:06 2005 UTC
# Line 286  public abstract class BasicLookAndFeel e Line 286  public abstract class BasicLookAndFeel e
286        }),        }),
287        "CheckBox.font", new FontUIResource("Dialog", Font.PLAIN, 12),        "CheckBox.font", new FontUIResource("Dialog", Font.PLAIN, 12),
288        "CheckBox.foreground", new ColorUIResource(darkShadow),        "CheckBox.foreground", new ColorUIResource(darkShadow),
289        "CheckBox.icon", BasicIconFactory.getCheckBoxIcon(),        "CheckBox.icon",
290          new UIDefaults.LazyValue()
291          {
292            public Object createValue(UIDefaults def)
293            {
294              return BasicIconFactory.getCheckBoxIcon();
295            }
296          },
297        "CheckBox.margin",new InsetsUIResource(2, 2, 2, 2),        "CheckBox.margin",new InsetsUIResource(2, 2, 2, 2),
298        "CheckBox.textIconGap", new Integer(4),        "CheckBox.textIconGap", new Integer(4),
299        "CheckBox.textShiftOffset", new Integer(0),        "CheckBox.textShiftOffset", new Integer(0),
# Line 657  public abstract class BasicLookAndFeel e Line 664  public abstract class BasicLookAndFeel e
664        "RadioButton.font", new FontUIResource("Dialog", Font.PLAIN, 12),        "RadioButton.font", new FontUIResource("Dialog", Font.PLAIN, 12),
665        "RadioButton.foreground", new ColorUIResource(darkShadow),        "RadioButton.foreground", new ColorUIResource(darkShadow),
666        "RadioButton.highlight", new ColorUIResource(highLight),        "RadioButton.highlight", new ColorUIResource(highLight),
667        "RadioButton.icon", BasicIconFactory.getRadioButtonIcon(),        "RadioButton.icon",
668          new UIDefaults.LazyValue()
669          {
670            public Object createValue(UIDefaults def)
671            {
672              return BasicIconFactory.getRadioButtonIcon();
673            }
674          },
675        "RadioButton.light", new ColorUIResource(highLight),        "RadioButton.light", new ColorUIResource(highLight),
676        "RadioButton.margin", new InsetsUIResource(2, 2, 2, 2),        "RadioButton.margin", new InsetsUIResource(2, 2, 2, 2),
677        "RadioButton.shadow", new ColorUIResource(shadow),        "RadioButton.shadow", new ColorUIResource(shadow),

Legend:
Removed from v.1.38  
changed lines
  Added in v.1.39

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26