Searched defs:disabledForeground (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicMenuItemUI.java53 protected Color disabledForeground; field in class:BasicMenuItemUI
159 if (disabledForeground == null ||
160 disabledForeground instanceof UIResource) {
161 disabledForeground =
162 UIManager.getColor(prefix + ".disabledForeground");
564 if (disabledForeground != null) {
565 g.setColor(disabledForeground);
681 if ( UIManager.get("MenuItem.disabledForeground") instanceof Color ) {
682 g.setColor( UIManager.getColor("MenuItem.disabledForeground") );
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaMenuPainter.java156 protected void paintMenuItem(final Client client, final Graphics g, final JComponent c, final Icon checkIcon, final Icon arrowIcon, final Color background, final Color foreground, final Color disabledForeground, final Color selectionForeground, final int defaultTextIconGap, final Font acceleratorFont) { argument
227 g.setColor(disabledForeground);

Completed in 35 milliseconds