当前位置: 首页>>代码示例>>Java>>正文


Java JBColor.black方法代码示例

本文整理汇总了Java中com.intellij.ui.JBColor.black方法的典型用法代码示例。如果您正苦于以下问题:Java JBColor.black方法的具体用法?Java JBColor.black怎么用?Java JBColor.black使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在com.intellij.ui.JBColor的用法示例。


在下文中一共展示了JBColor.black方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: lookAndFeelChanged

import com.intellij.ui.JBColor; //导入方法依赖的package包/类
@Override
public void lookAndFeelChanged(LafManager source) {
    final Color background = UIUtil.isUnderDarcula()
            ? JBColor.background()
            : JBColor.black;

    inputTerminal.setBackground(background);
    // TODO: Upstream fix for Kahlua
    outputTerminal.setBackground(background);

    // Find the panes we are looking for
    JScrollPane scrollPane = (JScrollPane) outputTerminal.getComponent(0);
    JPanel panel1 = (JPanel) scrollPane.getViewport().getView();
    JPanel panel2 = (JPanel) panel1.getComponent(0);

    // Set the background onto the panes directly
    JPanel panel3 = (JPanel) panel2.getComponent(0);
    panel3.setBackground(background);
    JEditorPane editorPane = (JEditorPane) panel2.getComponent(1);
    editorPane.setBackground(background);
}
 
开发者ID:internetisalie,项目名称:lua-for-idea,代码行数:22,代码来源:LuaJInterpreter.java

示例2: addTransparencyIfNeeded

import com.intellij.ui.JBColor; //导入方法依赖的package包/类
public static SimpleTextAttributes addTransparencyIfNeeded(@NotNull final SimpleTextAttributes baseStyle, boolean isActive) {
  if (isActive) return baseStyle;
  Color color = baseStyle.getFgColor();
  if (color == null) {
    color = JBColor.black;
  }
  //noinspection UseJBColor
  return new SimpleTextAttributes(baseStyle.getStyle(),
                                  new Color(color.getRed(), color.getGreen(), color.getBlue(), 85));
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:11,代码来源:PushLogTreeUtil.java

示例3: getRecordTitleColor

import com.intellij.ui.JBColor; //导入方法依赖的package包/类
@Nullable
private Color getRecordTitleColor(@NotNull DiffChange change) {
  TextDiffType type = getDiffType(change);
  if (type == TextDiffType.INSERTED) return FileStatus.ADDED.getColor();
  if (type == TextDiffType.DELETED) return FileStatus.DELETED.getColor();
  if (type == TextDiffType.MODIFIED) return FileStatus.MODIFIED.getColor();
  return JBColor.black; // unchanged
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:9,代码来源:SvnPropertiesDiffViewer.java

示例4: getOutlineColor

import com.intellij.ui.JBColor; //导入方法依赖的package包/类
@Override
public Color getOutlineColor(boolean isActive) {
  ColorKey key = isActive ? EditorColors.SELECTED_TEARLINE_COLOR : EditorColors.TEARLINE_COLOR;
  Color color = myEditor.getColorsScheme().getColor(key);
  return color != null ? color : JBColor.black;
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:7,代码来源:EditorGutterComponentImpl.java


注:本文中的com.intellij.ui.JBColor.black方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。