Searched refs:selectionBackground (Results 1 - 6 of 6) sorted by relevance

/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaLookAndFeel.java335 final Color selectionBackground = AquaImageFactory.getSelectionBackgroundColorUIResource();
430 "CheckBoxMenuItem.selectionBackground", menuSelectedBackgroundColor,
450 "ComboBox.selectionBackground", menuSelectedBackgroundColor,
466 "EditorPane.selectionBackground", textHighlight,
507 "FormattedTextField.selectionBackground", textHighlight,
586 "List.selectionBackground", selectionBackground,
611 "Menu.selectionBackground", menuSelectedBackgroundColor,
632 "MenuBar.selectionBackground", menuSelectedBackgroundColor, // not a menu item, is selected
643 "MenuItem.selectionBackground", menuSelectedBackgroundColo
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/
H A DJList.java320 private Color selectionBackground; field in class:JList
844 return selectionBackground;
860 * @param selectionBackground the {@code Color} to use for the
873 public void setSelectionBackground(Color selectionBackground) { argument
874 Color oldValue = this.selectionBackground;
875 this.selectionBackground = selectionBackground;
876 firePropertyChange("selectionBackground", oldValue, selectionBackground);
2835 String selectionBackgroundString = (selectionBackground !
[all...]
H A DJTable.java374 protected Color selectionBackground; field in class:JTable
2518 return selectionBackground;
2530 * @param selectionBackground the <code>Color</code> to use for the background
2541 public void setSelectionBackground(Color selectionBackground) { argument
2542 Color old = this.selectionBackground;
2543 this.selectionBackground = selectionBackground;
2544 firePropertyChange("selectionBackground", old, selectionBackground);
5920 String selectionBackgroundString = (selectionBackground !
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicMenuItemUI.java51 protected Color selectionBackground; field in class:BasicMenuItemUI
149 if (selectionBackground == null ||
150 selectionBackground instanceof UIResource) {
151 selectionBackground =
152 UIManager.getColor(prefix + ".selectionBackground");
476 selectionBackground, selectionForeground,
H A DBasicProgressBarUI.java50 // over a filled area of the progress bar. The "selectionBackground"
52 private Color selectionForeground, selectionBackground; field in class:BasicProgressBarUI
164 selectionBackground = UIManager.getColor("ProgressBar.selectionBackground");
321 * The "selectionBackground" is the color of the text when it is painted
325 return selectionBackground;
/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/windows/
H A DWindowsMenuUI.java182 g.setColor(selectionBackground); // Uses protected field.

Completed in 62 milliseconds