Searched refs:highlight (Results 1 - 25 of 41) sorted by relevance

12

/openjdk7/jdk/src/share/classes/javax/swing/border/
H A DEtchedBorder.java36 * either be etched-in or etched-out. If no highlight/shadow
62 protected Color highlight; field in class:EtchedBorder
86 * Creates a lowered etched border with the specified highlight and
88 * @param highlight the color to use for the etched highlight
91 public EtchedBorder(Color highlight, Color shadow) { argument
92 this(LOWERED, highlight, shadow);
97 * highlight and shadow colors.
99 * @param highlight the color to use for the etched highlight
103 EtchedBorder(int etchType, Color highlight, Color shadow) argument
[all...]
H A DBevelBorder.java71 * Creates a bevel border with the specified type, highlight and
74 * @param highlight the color to use for the bevel highlight
77 public BevelBorder(int bevelType, Color highlight, Color shadow) { argument
78 this(bevelType, highlight.brighter(), highlight, shadow, shadow.brighter());
82 * Creates a bevel border with the specified type, highlight and
86 * @param highlightOuterColor the color to use for the bevel outer highlight
87 * @param highlightInnerColor the color to use for the bevel inner highlight
132 * Returns the outer highlight colo
[all...]
H A DSoftBevelBorder.java64 * Creates a bevel border with the specified type, highlight and
67 * @param highlight the color to use for the bevel highlight
70 public SoftBevelBorder(int bevelType, Color highlight, Color shadow) { argument
71 super(bevelType, highlight, shadow);
75 * Creates a bevel border with the specified type, highlight
78 * @param highlightOuterColor the color to use for the bevel outer highlight
79 * @param highlightInnerColor the color to use for the bevel inner highlight
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicBorders.java55 table.getColor("Button.highlight")),
67 table.getColor("RadioButton.highlight")),
79 table.getColor("ToggleButton.highlight")),
88 table.getColor("MenuBar.highlight")
96 table.getColor("SplitPane.highlight"),
108 table.getColor("SplitPane.highlight"),
119 table.getColor("TextField.highlight"));
150 Color highlight, Color lightHighlight) {
151 super(shadow, darkShadow, highlight, lightHighlight);
231 protected Color highlight; field in class:BasicBorders.ButtonBorder
149 RolloverButtonBorder(Color shadow, Color darkShadow, Color highlight, Color lightHighlight) argument
234 ButtonBorder(Color shadow, Color darkShadow, Color highlight, Color lightHighlight) argument
272 ToggleButtonBorder(Color shadow, Color darkShadow, Color highlight, Color lightHighlight) argument
293 RadioButtonBorder(Color shadow, Color darkShadow, Color highlight, Color lightHighlight) argument
329 private Color highlight; field in class:BasicBorders.MenuBarBorder
331 MenuBarBorder(Color shadow, Color highlight) argument
383 protected Color highlight; field in class:BasicBorders.FieldBorder
386 FieldBorder(Color shadow, Color darkShadow, Color highlight, Color lightHighlight) argument
422 Color highlight; field in class:BasicBorders.SplitPaneDividerBorder
425 SplitPaneDividerBorder(Color highlight, Color shadow) argument
504 protected Color highlight; field in class:BasicBorders.SplitPaneBorder
507 SplitPaneBorder(Color highlight, Color shadow) argument
[all...]
H A DBasicArrowButton.java59 private Color highlight; field in class:BasicArrowButton
72 * @param highlight the color of the highlight
76 Color darkShadow, Color highlight) {
83 this.highlight = highlight;
143 g.setColor(highlight); // inner 3D border
254 g.setColor(highlight);
261 g.setColor(highlight);
281 g.setColor(highlight);
75 BasicArrowButton(int direction, Color background, Color shadow, Color darkShadow, Color highlight) argument
[all...]
H A DBasicGraphicsUtils.java55 Color highlight, Color lightHighlight)
72 g.setColor(highlight);
93 Color shadow, Color highlight)
101 g.setColor(highlight);
126 Color highlight, Color lightHighlight)
138 shadow, darkShadow, highlight, lightHighlight);
147 g.setColor(highlight);
163 g.setColor(highlight);
181 Color highlight, Color lightHighlight) {
194 g.setColor(highlight);
53 drawEtchedRect(Graphics g, int x, int y, int w, int h, Color shadow, Color darkShadow, Color highlight, Color lightHighlight) argument
92 drawGroove(Graphics g, int x, int y, int w, int h, Color shadow, Color highlight) argument
123 drawBezel(Graphics g, int x, int y, int w, int h, boolean isPressed, boolean isDefault, Color shadow, Color darkShadow, Color highlight, Color lightHighlight) argument
179 drawLoweredBezel(Graphics g, int x, int y, int w, int h, Color shadow, Color darkShadow, Color highlight, Color lightHighlight) argument
[all...]
H A DBasicSeparatorUI.java49 protected Color highlight; field in class:BasicSeparatorUI
/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/motif/
H A DMotifTreeCellRenderer.java76 Color highlight; field in class:MotifTreeCellRenderer.TreeLeafIcon
81 highlight = UIManager.getColor("Tree.iconHighlight");
95 g.setColor(highlight);
H A DMotifTreeUI.java97 static Color highlight; field in class:MotifTreeUI.MotifExpandedIcon
103 highlight = UIManager.getColor("Tree.iconHighlight");
112 g.setColor(highlight);
H A DMotifInternalFrameTitlePane.java54 Color highlight; field in class:MotifInternalFrameTitlePane
152 highlight = h;
262 g.setColor(pressed ? shadow : highlight);
265 g.setColor(pressed ? highlight : shadow);
274 g.setColor(highlight);
288 g.setColor(isMaxed ? shadow : highlight);
291 g.setColor(isMaxed ? highlight : shadow);
303 g.setColor(highlight);
H A DMotifIconFactory.java99 private Color highlight = UIManager.getColor("controlHighlight"); field in class:MotifIconFactory.CheckBoxIcon
183 g.setColor(highlight); // inner 3D border
212 g.setColor(highlight);
220 g.setColor(highlight);
229 g.setColor(highlight);
237 g.setColor(highlight);
269 private Color highlight = UIManager.getColor("controlHighlight"); field in class:MotifIconFactory.RadioButtonIcon
309 g.setColor(highlight);
325 g.setColor(highlight);
381 private Color highlight field in class:MotifIconFactory.MenuArrowIcon
[all...]
H A DMotifBorders.java119 protected Color highlight = UIManager.getColor("Button.light"); field in class:MotifBorders.ButtonBorder
122 public ButtonBorder(Color shadow, Color highlight, Color darkShadow, Color focus) { argument
124 this.highlight = highlight;
158 g.setColor(highlight);
177 g.setColor(isPressed? shadow : highlight);
181 g.setColor(isPressed? highlight : shadow);
196 public ToggleButtonBorder(Color shadow, Color highlight, Color darkShadow, Color focus) { argument
197 super(shadow, highlight, darkShadow, focus);
209 b.isFocusPainted() && b.hasFocus(), shadow, highlight, darkShado
229 MenuBarBorder(Color shadow, Color highlight, Color darkShadow, Color focus) argument
567 drawBezel(Graphics g, int x, int y, int w, int h, boolean isPressed, boolean hasFocus, Color shadow, Color highlight, Color darkShadow, Color focus) argument
638 MotifPopupMenuBorder( Font titleFont, Color bgColor, Color fgColor, Color shadow, Color highlight) argument
[all...]
H A DMotifInternalFrameUI.java55 Color highlight; field in class:MotifInternalFrameUI
219 highlight = color.brighter();
221 titlePane.setColors(color, highlight, shadow);
/openjdk7/jdk/src/share/classes/javax/swing/plaf/
H A DBorderUIResource.java162 public BevelBorderUIResource(int bevelType, Color highlight, Color shadow) { argument
163 super(bevelType, highlight, shadow);
184 public EtchedBorderUIResource(Color highlight, Color shadow) { argument
185 super(highlight, shadow);
189 public EtchedBorderUIResource(int etchType, Color highlight, Color shadow) { argument
190 super(etchType, highlight, shadow);
/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/windows/
H A DWindowsBorders.java57 table.getColor("ProgressBar.highlight")),
73 table.getColor("ToolBar.highlight"));
95 table.getColor("Table.highlight")),
119 protected Color highlight; field in class:WindowsBorders.ProgressBarBorder
121 public ProgressBarBorder(Color shadow, Color highlight) { argument
122 this.highlight = highlight;
131 g.setColor(highlight);
149 protected Color highlight; field in class:WindowsBorders.ToolBarBorder
151 public ToolBarBorder(Color shadow, Color highlight) { argument
[all...]
H A DWindowsToolBarSeparatorUI.java105 Color highlight = table.getColor("ToolBar.highlight");
112 g.setColor(highlight);
118 g.setColor(highlight);
H A DWindowsMenuUI.java154 Color highlight = table.getColor("controlLtHighlight");
167 g.setColor(highlight);
186 g.setColor(highlight);
/openjdk7/jdk/src/share/classes/javax/swing/
H A DBorderFactory.java144 * the highlight color. The inner edge of the shadow area
150 * @param highlight a <code>Color</code> object for highlights
154 public static Border createBevelBorder(int type, Color highlight, Color shadow) { argument
155 return new BevelBorder(type, highlight, shadow);
160 * the specified colors for the inner and outer highlight
167 * outer edge of the highlight area
169 * inner edge of the highlight area
259 * The outer edge of the highlight area uses
260 * a brighter shade of the {@code highlight} color.
265 * @param highlight
272 createSoftBevelBorder(int type, Color highlight, Color shadow) argument
322 createEtchedBorder(Color highlight, Color shadow) argument
365 createEtchedBorder(int type, Color highlight, Color shadow) argument
[all...]
/openjdk7/jdk/src/windows/classes/sun/awt/windows/
H A DWInputMethod.java87 // Initialize highlight mapping table
413 static Map mapInputMethodHighlight(InputMethodHighlight highlight) { argument
415 int state = highlight.getState();
423 if (highlight.isSelected()) {
500 InputMethodHighlight highlight;
503 highlight = InputMethodHighlight.SELECTED_CONVERTED_TEXT_HIGHLIGHT;
506 highlight = InputMethodHighlight.UNSELECTED_CONVERTED_TEXT_HIGHLIGHT;
509 highlight = InputMethodHighlight.SELECTED_RAW_TEXT_HIGHLIGHT;
514 highlight = InputMethodHighlight.UNSELECTED_RAW_TEXT_HIGHLIGHT;
518 highlight,
[all...]
/openjdk7/jdk/src/solaris/classes/sun/awt/
H A DX11InputMethod.java136 // Initialize highlight mapping table
433 public static Map mapInputMethodHighlight(InputMethodHighlight highlight) { argument
435 int state = highlight.getState();
443 if (highlight.isSelected()) {
590 * information. The XIM highlight attributes are translated via
979 * Performs mapping from an XIM visible feedback value to Java IM highlight.
980 * @return Java input method highlight
983 InputMethodHighlight highlight;
987 highlight = InputMethodHighlight.UNSELECTED_CONVERTED_TEXT_HIGHLIGHT;
990 highlight
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/plaf/metal/
H A DMetalBorders.java197 Color highlight;
202 highlight = MetalLookAndFeel.getPrimaryControlShadow();
206 highlight = MetalLookAndFeel.getControlShadow();
224 g.setColor(highlight);
225 // Draw the Long highlight lines
258 Color highlight;
264 highlight = MetalLookAndFeel.getPrimaryControlShadow();
268 highlight = MetalLookAndFeel.getControlShadow();
285 g.setColor(highlight);
286 // Draw the Long highlight line
[all...]
H A DMetalTabbedPaneUI.java242 g.setColor( isSelected ? selectHighlight : highlight );
255 // paint highlight in the gap on tab behind this one
265 g.setColor( highlight );
388 g.setColor( isSelected ? selectHighlight : highlight );
404 g.setColor(ocean ? MetalLookAndFeel.getWhite() : highlight);
588 g.setColor( isSelected ? selectHighlight : highlight );
598 // paint highlight in the gap on tab behind this one
608 g.setColor( highlight );
657 g.setColor( isSelected ? selectHighlight : highlight );
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXFramePeer.java424 Color highlight = bg.brighter();
436 if (highlight.equals(Color.white)) {
440 g.setColor(highlight);
446 // if (highlight.equals(Color.white)) {
450 // g.setColor(highlight);
456 g.setColor(highlight);
462 // g.setColor(highlight);
577 // upper-left horiz (highlight)
578 g.setColor(highlight);
581 // upper-left vert (highlight)
[all...]
H A DXComponentPeer.java1013 Color highlight = bg.brighter();
1015 g.setColor(raised ? highlight : shadow);
1017 g.setColor(raised ? shadow : highlight);
1027 Color highlight = bg.brighter();
1029 g.setColor(raised ? highlight : shadow);
1032 g.setColor(raised ? shadow : highlight);
1105 Color highlight = bg.brighter();
1108 g.setColor(highlight);
/openjdk7/jdk/src/macosx/classes/sun/lwawt/macosx/
H A DCInputMethod.java52 // Intitalize highlight mapping table and its mapper.
308 public static Map mapInputMethodHighlight(InputMethodHighlight highlight) { argument
310 int state = highlight.getState();
318 if (highlight.isSelected()) {
453 * Convert Cocoa text highlight attributes into Java input method highlighting.

Completed in 71 milliseconds

12