本文整理汇总了Java中java.awt.SystemColor.textHighlightText方法的典型用法代码示例。如果您正苦于以下问题:Java SystemColor.textHighlightText方法的具体用法?Java SystemColor.textHighlightText怎么用?Java SystemColor.textHighlightText使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类java.awt.SystemColor
的用法示例。
在下文中一共展示了SystemColor.textHighlightText方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: getTreeCellRendererComponent
import java.awt.SystemColor; //导入方法依赖的package包/类
public Component getTreeCellRendererComponent(JTree tree, Object value, boolean sel, boolean expanded,
boolean leaf, int row, boolean hasFocus) {
super.getTreeCellRendererComponent(tree, value, sel, expanded, leaf, row, hasFocus);
Color colorForeground;
Color colorBackground;
if (sel) {
if (tree.hasFocus()) {
colorBackground = SystemColor.textHighlight;
colorForeground = SystemColor.textHighlightText;
}
else {
colorForeground = SystemColor.controlText;
colorBackground = SystemColor.control;
}
setBackgroundSelectionColor(colorBackground);
}
else {
colorForeground = tree.getForeground();
colorBackground = tree.getBackground();
setBackgroundNonSelectionColor(colorBackground);
}
setForeground(colorForeground);
return this;
}
示例2: determineSelectionForeground
import java.awt.SystemColor; //导入方法依赖的package包/类
private Color determineSelectionForeground() {
Color c = UIManager.getColor("List.selectionForeground");
if (c==null) {
c = UIManager.getColor("nimbusSelectedText");
if (c==null) { // Not Nimbus, but still need a value - fallback
c = UIManager.getColor("textHighlightText");
if (c==null) {
c = SystemColor.textHighlightText;
}
}
}
// Nimbus unfortunately requires Color, not ColorUIResource, and "c"
// may actually be a ColorUIResource
return new Color(c.getRGB());
}
示例3: getDefaultSelectionFG
import java.awt.SystemColor; //导入方法依赖的package包/类
/**
* Returns the default "selected text" color to use if "default" is
* specified in a theme.
*
* @return The default selection foreground color to use.
* @see #getDefaultSelectionBG()
*/
private static Color getDefaultSelectionFG() {
Color c = UIManager.getColor("TextArea.selectionForeground");
if (c==null) {
c = UIManager.getColor("textHighlightText");
if (c==null) {
c = UIManager.getColor("nimbusSelectedText");
if (c==null) {
c = new ColorUIResource(SystemColor.textHighlightText);
}
}
}
return c;
}
示例4: getBasicSystemColors
import java.awt.SystemColor; //导入方法依赖的package包/类
private Object[] getBasicSystemColors() {
Object[] basicSystemColors = {"desktop", SystemColor.desktop,
"activeCaption", SystemColor.activeCaption,
"activeCaptionText", SystemColor.activeCaptionText,
"activeCaptionBorder", SystemColor.activeCaptionBorder,
"inactiveCaption", SystemColor.inactiveCaption,
"inactiveCaptionText", SystemColor.inactiveCaptionText,
"inactiveCaptionBorder", SystemColor.inactiveCaptionBorder,
"window", SystemColor.window,
"windowBorder", SystemColor.windowBorder,
"windowText", SystemColor.windowText,
"menu", SystemColor.menu,
"menuText", SystemColor.menuText,
"text", SystemColor.text,
"textText", SystemColor.textText,
"textHighlight", SystemColor.textHighlight,
"textHighlightText", SystemColor.textHighlightText,
"textInactiveText", SystemColor.textInactiveText,
"control", SystemColor.control,
"controlText", SystemColor.controlText,
"controlHighlight", SystemColor.controlHighlight,
"controlLtHighlight", SystemColor.controlLtHighlight,
"controlShadow", SystemColor.controlShadow,
"controlDkShadow", SystemColor.controlDkShadow,
"scrollbar", SystemColor.scrollbar,
"info", SystemColor.info,
"infoText", SystemColor.infoText };
return basicSystemColors;
}