本文整理汇总了Java中javax.swing.tree.DefaultTreeCellRenderer.getTextNonSelectionColor方法的典型用法代码示例。如果您正苦于以下问题:Java DefaultTreeCellRenderer.getTextNonSelectionColor方法的具体用法?Java DefaultTreeCellRenderer.getTextNonSelectionColor怎么用?Java DefaultTreeCellRenderer.getTextNonSelectionColor使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类javax.swing.tree.DefaultTreeCellRenderer
的用法示例。
在下文中一共展示了DefaultTreeCellRenderer.getTextNonSelectionColor方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: AssertionTreeNodeRenderer
import javax.swing.tree.DefaultTreeCellRenderer; //导入方法依赖的package包/类
public AssertionTreeNodeRenderer() {
DefaultTreeCellRenderer renderer = new DefaultTreeCellRenderer();
fgSel = renderer.getTextSelectionColor();
fgNonSel = renderer.getTextNonSelectionColor();
bgSel = renderer.getBackgroundSelectionColor();
bgNonSel = renderer.getBackgroundNonSelectionColor();
valueStyle = new SimpleAttributeSet();
StyleConstants.setForeground(valueStyle, valueForegroundColor);
propertyStyle = new SimpleAttributeSet();
if (fgNonSel != null) {
StyleConstants.setForeground(propertyStyle, fgNonSel);
}
}
示例2: configureRenderer
import javax.swing.tree.DefaultTreeCellRenderer; //导入方法依赖的package包/类
private void configureRenderer(SynthContext context) {
TreeCellRenderer renderer = tree.getCellRenderer();
if (renderer instanceof DefaultTreeCellRenderer) {
DefaultTreeCellRenderer r = (DefaultTreeCellRenderer)renderer;
SynthStyle style = context.getStyle();
context.setComponentState(ENABLED | SELECTED);
Color color = r.getTextSelectionColor();
if (color == null || (color instanceof UIResource)) {
r.setTextSelectionColor(style.getColor(
context, ColorType.TEXT_FOREGROUND));
}
color = r.getBackgroundSelectionColor();
if (color == null || (color instanceof UIResource)) {
r.setBackgroundSelectionColor(style.getColor(
context, ColorType.TEXT_BACKGROUND));
}
context.setComponentState(ENABLED);
color = r.getTextNonSelectionColor();
if (color == null || color instanceof UIResource) {
r.setTextNonSelectionColor(style.getColorForState(
context, ColorType.TEXT_FOREGROUND));
}
color = r.getBackgroundNonSelectionColor();
if (color == null || color instanceof UIResource) {
r.setBackgroundNonSelectionColor(style.getColorForState(
context, ColorType.TEXT_BACKGROUND));
}
}
}
示例3: RepositorySelectorRenderer
import javax.swing.tree.DefaultTreeCellRenderer; //导入方法依赖的package包/类
public RepositorySelectorRenderer() {
DefaultTreeCellRenderer defaultRenderer = new DefaultTreeCellRenderer();
repositoryItem = new RepositoryItem();
loadingItem =
new ResourceSelectorLoadingItem(
defaultRenderer.getBackgroundNonSelectionColor(),
defaultRenderer.getTextNonSelectionColor());
emptyItem = new ResourceSelectorEmptyItem();
errorItem = new ResourceSelectorErrorItem(JBColor.RED);
}
示例4: configureRenderer
import javax.swing.tree.DefaultTreeCellRenderer; //导入方法依赖的package包/类
private void configureRenderer(SeaGlassContext context) {
TreeCellRenderer renderer = tree.getCellRenderer();
if (renderer instanceof DefaultTreeCellRenderer) {
DefaultTreeCellRenderer r = (DefaultTreeCellRenderer) renderer;
SeaGlassStyle style = (SeaGlassStyle)context.getStyle();
context.setComponentState(ENABLED | SELECTED);
Color color = r.getTextSelectionColor();
if (color == null || (color instanceof UIResource)) {
r.setTextSelectionColor(style.getColor(context, ColorType.TEXT_FOREGROUND));
}
color = r.getBackgroundSelectionColor();
if (color == null || (color instanceof UIResource)) {
r.setBackgroundSelectionColor(style.getColor(context, ColorType.TEXT_BACKGROUND));
}
context.setComponentState(ENABLED);
color = r.getTextNonSelectionColor();
if (color == null || color instanceof UIResource) {
r.setTextNonSelectionColor(style.getColorForState(context, ColorType.TEXT_FOREGROUND));
}
color = r.getBackgroundNonSelectionColor();
if (color == null || color instanceof UIResource) {
r.setBackgroundNonSelectionColor(style.getColorForState(context, ColorType.TEXT_BACKGROUND));
}
}
}