Searched refs:selectionForeground (Results 1 - 13 of 13) sorted by relevance

/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/windows/
H A DWindowsCheckBoxMenuItemUI.java97 g.setColor(selectionForeground); // Uses protected field.
H A DWindowsRadioButtonMenuItemUI.java96 g.setColor(selectionForeground); // Uses protected field.
H A DWindowsMenuItemUI.java91 g.setColor(selectionForeground); // Uses protected field.
H A DWindowsMenuUI.java236 g.setColor(selectionForeground); // Uses protected field.
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaProgressBarUI.java63 protected Color selectionForeground; field in class:AquaProgressBarUI
96 selectionForeground = UIManager.getColor("ProgressBar.selectionForeground");
206 g2.setColor(selectionForeground);
216 g2.setColor(selectionForeground);
H A DAquaLookAndFeel.java336 final Color selectionForeground = AquaImageFactory.getSelectionForegroundColorUIResource();
431 "CheckBoxMenuItem.selectionForeground", menuSelectedForegroundColor,
451 "ComboBox.selectionForeground", menuSelectedForegroundColor,
467 "EditorPane.selectionForeground", textHighlightText,
508 "FormattedTextField.selectionForeground", textHighlightText,
587 "List.selectionForeground", selectionForeground,
612 "Menu.selectionForeground", menuSelectedForegroundColor,
633 "MenuBar.selectionForeground", menuSelectedForegroundColor,
644 "MenuItem.selectionForeground", menuSelectedForegroundColo
[all...]
H A DAquaMenuUI.java55 AquaMenuPainter.instance().paintMenuItem(this, g, c, localCheckIcon, localArrowIcon, background, foreground, disabledForeground, selectionForeground, localDefaultTextIconGap, acceleratorFont);
H A DAquaMenuItemUI.java103 AquaMenuPainter.instance().paintMenuItem(this, g, c, localCheckIcon, localArrowIcon, background, foreground, disabledForeground, selectionForeground, localDefaultTextIconGap, acceleratorFont);
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
231 g.setColor(selectionForeground);
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicMenuItemUI.java52 protected Color selectionForeground; field in class:BasicMenuItemUI
154 if (selectionForeground == null ||
155 selectionForeground instanceof UIResource) {
156 selectionForeground =
157 UIManager.getColor(prefix + ".selectionForeground");
476 selectionBackground, selectionForeground,
697 g.setColor(selectionForeground); // Uses protected field.
H A DBasicProgressBarUI.java49 // The "selectionForeground" is the color of the text when it is painted
52 private Color selectionForeground, selectionBackground; field in class:BasicProgressBarUI
163 selectionForeground = UIManager.getColor("ProgressBar.selectionForeground");
313 * The "selectionForeground" is the color of the text when it is painted
317 return selectionForeground;
/openjdk7/jdk/src/share/classes/javax/swing/
H A DJList.java319 private Color selectionForeground; field in class:JList
797 return selectionForeground;
813 * @param selectionForeground the {@code Color} to use in the foreground
826 public void setSelectionForeground(Color selectionForeground) { argument
827 Color oldValue = this.selectionForeground;
828 this.selectionForeground = selectionForeground;
829 firePropertyChange("selectionForeground", oldValue, selectionForeground);
2832 String selectionForegroundString = (selectionForeground !
[all...]
H A DJTable.java371 protected Color selectionForeground; field in class:JTable
2479 return selectionForeground;
2492 * @param selectionForeground the <code>Color</code> to use in the foreground
2503 public void setSelectionForeground(Color selectionForeground) { argument
2504 Color old = this.selectionForeground;
2505 this.selectionForeground = selectionForeground;
2506 firePropertyChange("selectionForeground", old, selectionForeground);
5917 String selectionForegroundString = (selectionForeground !
[all...]

Completed in 86 milliseconds