Searched defs:selectionForeground (Results 1 - 6 of 6) sorted by relevance

/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 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 93 milliseconds