Available Methods
- invokeLaterIfNeeded ( )
- isUnderDarcula ( )
- invokeAndWaitIfNeeded ( )
- drawLine ( )
- createImage ( )
- getLabelFont ( )
- isUnderNimbusLookAndFeel ( )
- setLineStyleAngled ( )
- getParentOfType ( )
- isUnderAquaLookAndFeel ( )
- isUnderGTKLookAndFeel ( )
- getClientProperty ( )
- dispatchAllInvocationEvents ( )
- drawDottedRectangle ( )
- findComponentOfType ( )
- getWindow ( )
- isRetina ( )
- isUnderIntelliJLaF ( )
- isFullRowSelectionLAF ( )
- getPanelBackground ( )
- getListForeground ( )
- putClientProperty ( )
- getTreeSelectionBackground ( )
- isUnderAquaBasedLookAndFeel ( )
- drawImage ( )
- getListSelectionBackground ( )
- HTML_MIME
- drawBoldDottedLine ( )
- setEnabled ( )
- getTreeSelectionForeground ( )
- isClientPropertyTrue ( )
- ComponentStyle ( )
- getListBackground ( )
- getInactiveTextColor ( )
- DEFAULT_VGAP
- isControlKeyDown ( )
- isFocusAncestor ( )
- findComponentsOfType ( )
- isJreHiDPI ( )
- getWarningIcon ( )
- drawSearchMatch ( )
- getTableBackground ( )
- changeBackGround ( )
- mergeComponentsWithAnchor ( )
- MNEMONIC
- getLabelBackground ( )
- findUltimateParent ( )
- getLabelForeground ( )
- isMurrineBasedTheme ( )
- uiTraverser ( )
- isReallyTypedEvent ( )
- isJreHiDPIEnabled ( )
- removeMnemonic ( )
- getInformationIcon ( )
- getBorderColor ( )
- TRANSPARENT_COLOR
Related Classes
- java.awt.image.BufferedImage
- javax.annotation.Nullable
- java.awt.event.ActionEvent
- java.awt.event.ActionListener
- javax.annotation.Nonnull
- java.awt.event.MouseEvent
- org.jetbrains.annotations.NotNull
- java.awt.event.KeyEvent
- java.awt.event.MouseAdapter
- org.jetbrains.annotations.Nullable
- javax.swing.border.EmptyBorder
- java.awt.event.KeyAdapter
- javax.swing.border.Border
- javax.swing.tree.TreePath
- com.intellij.openapi.project.Project
- com.intellij.openapi.vfs.VirtualFile
- com.intellij.openapi.actionSystem.AnAction
- com.intellij.openapi.application.ApplicationManager
- com.intellij.openapi.editor.Editor
- com.intellij.openapi.editor.Document
- com.intellij.openapi.util.text.StringUtil
- com.intellij.openapi.ui.Messages
- com.intellij.openapi.progress.ProgressIndicator
- com.intellij.icons.AllIcons
- com.intellij.openapi.util.Pair
Java Code Examples for com.intellij.util.ui.UIUtil#getBorderColor()
The following examples show how to use
com.intellij.util.ui.UIUtil#getBorderColor() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: ArrangementColorsProviderImpl.java From consulo with Apache License 2.0 | 5 votes |
public ArrangementColorsProviderImpl(@Nullable ArrangementColorsAware colorsAware) { myColorsAware = colorsAware; // Default settings. myDefaultNormalAttributes.setForegroundColor(UIUtil.getTreeTextForeground()); myDefaultNormalAttributes.setBackgroundColor(UIUtil.getPanelBackground()); myDefaultSelectedAttributes.setForegroundColor(UIUtil.getTreeSelectionForeground()); myDefaultSelectedAttributes.setBackgroundColor(UIUtil.getTreeSelectionBackground()); myDefaultNormalBorderColor = UIUtil.getBorderColor(); Color selectionBorderColor = UIUtil.getTreeSelectionBorderColor(); if (selectionBorderColor == null) { selectionBorderColor = JBColor.black; } myDefaultSelectedBorderColor = selectionBorderColor; }
Example 2
Source File: JBColor.java From consulo with Apache License 2.0 | 5 votes |
public static Color border() { return new JBColor(new NotNullProducer<Color>() { @Nonnull @Override public Color produce() { return UIUtil.getBorderColor(); } }); }
Example 3
Source File: EdgeBorder.java From consulo with Apache License 2.0 | 4 votes |
public EdgeBorder(int i) { super(UIUtil.getBorderColor(), i); }
Example 4
Source File: CustomLineBorder.java From consulo with Apache License 2.0 | 4 votes |
public CustomLineBorder(@Nonnull Insets insets) { this(UIUtil.getBorderColor(), insets); }