Searched defs:color (Results 1 - 10 of 10) sorted by relevance

/solaris-userland-s11u3/components/visual-panels/core/src/java/util/com/oracle/solaris/vp/util/swing/glass/
H A DQuickFillGlassPane.java43 public QuickFillGlassPane(Color color) { argument
44 setBackground(color);
/solaris-userland-s11u3/components/visual-panels/core/src/java/util/com/oracle/solaris/vp/util/swing/
H A DDottedBorder.java37 private Color color; field in class:DottedBorder
44 * Constructs a {@code DottedBorder} with the given color and width.
46 * @param color
47 * the color to paint the border, or {@code null} to use the
48 * foreground color of the {@code Component}
53 public DottedBorder(Color color, int width) { argument
54 this.color = color;
59 * Constructs a {@code DottedBorder} with the given color and default width
62 * @param color
66 DottedBorder(Color color) argument
[all...]
H A DRoundRecessedBorder.java43 private Color color; field in class:RoundRecessedBorder
54 public RoundRecessedBorder(Color color, int arc) { argument
55 this.color = color;
58 borderColor = ColorUtil.darker(color, .5f);
66 borderHighlight = ColorUtil.lighter(color, .4f);
69 public RoundRecessedBorder(Color color) { argument
70 this(color, _ARC);
122 return color;
H A DRoundRectBorder.java38 private Color color; field in class:RoundRectBorder
46 public RoundRectBorder(Color color, int thickness, int arc) { argument
47 this.color = color;
85 return color;
H A DArrowIcon.java63 private Color color; field in class:ArrowIcon
69 public ArrowIcon(Direction direction, int size, Color color) { argument
72 this.color = color;
90 Color color = getColor();
91 g.setColor(color != null ? color :
125 return color;
H A DHyperlinkLabel.java275 public void setColor(Color color) { argument
276 unvisitedColor = visitedColor = color;
H A DOverlayTable.java293 public void setOverlayBackground(Color color) { argument
294 contentPane.setBackground(color);
295 rendererPane.setBackground(color);
H A DSleekTabbedPaneUI.java39 // Default color of the border
42 // Default color of the selected tab
45 // Default color of the inactive tabs
79 private Color color = _COLOR; field in class:SleekTabbedPaneUI
180 Color color = getColor();
183 g2.setPaint(color);
191 x, y, color, x, y + h - 1, Color.white, false);
259 Color color = isSelected ? getColor() : getInactiveColor();
267 g2.setColor(color);
274 x, y, Color.WHITE, x, y + ((float)h / 2f), color, fals
360 setColor(Color color) argument
[all...]
/solaris-userland-s11u3/components/visual-panels/core/src/java/util/com/oracle/solaris/vp/util/swing/time/
H A DStarIcon.java52 private Color color = DEFAULT_COLOR; field in class:StarIcon
120 Color[] colors = {color, ColorUtil.alpha(color, 0)};
134 * Gets the color of the star.
139 return color;
152 * Sets the color of the star.
156 public void setColor(Color color) { argument
157 if (!this.color.equals(color)) {
158 this.color
[all...]
H A DAnalogClock.java456 Color color = Color.gray;
457 Color shadow = ColorUtil.darker(color, .25f);
570 protected void drawHand(Graphics2D g, Color color, float handWidth, argument
577 g.setColor(color);
583 protected Point drawHand(Graphics2D g, Color color, float handWidth, argument
605 drawHand(g, color, handWidth, new Point((int)radius, (int)radius), p);
731 * Gets the color at the AM end of the AM-PM gradient.
746 * Gets the color of the center dial of the clock.
753 * Gets the color of the face of the clock.
760 * Gets the color o
[all...]

Completed in 1648 milliseconds