javax.swing.JTabbedPane.getBackground()方法的使用及代码示例

x33g5p2x  于2022-01-21 转载在 其他  
字(3.6k)|赞(0)|评价(0)|浏览(87)

本文整理了Java中javax.swing.JTabbedPane.getBackground()方法的一些代码示例,展示了JTabbedPane.getBackground()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。JTabbedPane.getBackground()方法的具体详情如下:
包路径:javax.swing.JTabbedPane
类名称:JTabbedPane
方法名:getBackground

JTabbedPane.getBackground介绍

暂无

代码示例

代码示例来源:origin: atarw/material-ui-swing

@Override
protected void paintTabBackground (Graphics g, int tabPlacement, int tabIndex, int x, int y, int w, int h, boolean isSelected) {
  g.setColor (isSelected ? lightHighlight : tabPane.getBackground ());
  g.fillRect (x, y, w, h);
}

代码示例来源:origin: UNIVALI-LITE/Portugol-Studio

bg = bg != null ? bg : tabPane.getBackground ();
g2d.setPaint ( new GradientPaint ( topPoint.x, topPoint.y, selectedTopBg, bottomPoint.x, bottomPoint.y, bg ) );

代码示例来源:origin: com.eas.platypus/platypus-js-forms

@ScriptFunction(jsDoc = BACKGROUND_JSDOC)
@Override
public Color getBackground() {
  return super.getBackground();
}

代码示例来源:origin: UNIVALI-LITE/Portugol-Studio

g2d.setPaint ( bg != null ? bg : tabPane.getBackground () );
g2d.fill ( bs );
g2d.setPaint ( bg != null ? bg : tabPane.getBackground () );
g2d.fill ( bs );

代码示例来源:origin: net.sf.ingenias/editor

protected void installDefaults()
{
  super.installDefaults();
  tabAreaInsets.left = 4;
  selectedTabPadInsets = new Insets(0, 0, 0, 0);
  tabInsets = selectedTabPadInsets;
  Color background = tabPane.getBackground();
  fillColor = background.darker();
  boldFont = tabPane.getFont().deriveFont(Font.BOLD);
  boldFontMetrics = tabPane.getFontMetrics(boldFont);
}

代码示例来源:origin: violetumleditor/violetumleditor

@Override
protected void configure()
{
  this.defaultGridColor = new Color(250, 250, 250);
  JMenuBar menuBar = new JMenuBar();
  this.basicMenubarBackground = menuBar.getBackground();
  this.basicMenubarForeground = menuBar.getForeground();
  this.basicMenubarFont = menuBar.getFont();
  JMenu menu = new JMenu();
  this.basicMenuBackground = menu.getBackground();
  this.basicMenuForeground = menu.getForeground();
  this.basicMenuFont = menu.getFont();
  JTextField textArea = new JTextField();
  this.basicWhite = textArea.getBackground();
  this.basicBlack = textArea.getForeground();
  JFrame frame = new JFrame();
  this.basicFrameBackground = frame.getBackground();
  frame.dispose();
  JProgressBar progressBar = new JProgressBar();
  this.basicProgressbarForeground = progressBar.getForeground();
  JTabbedPane pane = new JTabbedPane();
  this.basicTabbedPaneBackground = pane.getBackground();
}

代码示例来源:origin: locationtech/jts

tabFunctions.setBackground(jTabbedPane1.getBackground());
tabFunctions.add(spatialFunctionPanel,  "Geometry Functions");
tabFunctions.add(scalarFunctionPanel,   "Scalar Functions");

代码示例来源:origin: net.sf.ingenias/editor

protected void paintTabBackground(Graphics g, int tabPlacement, int tabIndex, int x, int y, int w, int h, boolean isSelected)
{
  Polygon shape = new Polygon();
  shape.addPoint(x, y + h);
  shape.addPoint(x, y);
  shape.addPoint(x + w - (h / 2), y);
  if (isSelected || (tabIndex == (rects.length - 1)))
  {
    shape.addPoint(x + w + (h / 2), y + h);
  }
  else
  {
    shape.addPoint(x + w, y + (h / 2));
    shape.addPoint(x + w, y + h);
  }
  g.setColor(tabPane.getBackground());
  g.fillPolygon(shape);
}

代码示例来源:origin: com.jtattoo/JTattoo

int wt = tabPlacement == LEFT || tabPlacement == RIGHT ? w - tabAreaWidth : w;
int ht = tabPlacement == TOP || tabPlacement == BOTTOM ? h - tabAreaHeight : h;
g.setColor(tabPane.getBackground());
g.fillRect(xt, yt, wt, ht);

代码示例来源:origin: com.github.arnabk/pgslookandfeel

g.setColor(color);
} else if (selectedColor == null) {
  g.setColor(tabPane.getBackground());
} else {
  g.setColor(selectedColor);

代码示例来源:origin: net.sf.squirrel-sql.thirdparty-non-maven/toniclf

g.setColor(tabPane.getBackground());

代码示例来源:origin: org.opentcs.thirdparty.jhotdraw/jhotdraw

g.setColor(color);
} else if (selectedColor == null || selectedIndex == -1) {
  g.setColor(tabPane.getBackground());
} else {
  g.setColor(selectedColor);

相关文章

JTabbedPane类方法