我想更改活动CTabItem下划线的颜色。线是黑色的,我想要另一种颜色,见下图。
答案 0 :(得分:1)
我同意@ greg-449,通常你不应该混淆CTabFolderRenderer
但在某些情况下你必须这样做。幸运的是,您不必再次写入整个渲染器。这是绘制线条的原始SWT渲染器中的代码:
// draw a Focus rectangle
if (parent.isFocusControl()) {
Display display = parent.getDisplay();
if (parent.simple || parent.single) {
gc.setBackground(display.getSystemColor(SWT.COLOR_BLACK));
gc.setForeground(display.getSystemColor(SWT.COLOR_WHITE));
gc.drawFocus(xDraw-1, textY-1, extent.x+2, extent.y+2);
} else {
gc.setForeground(display.getSystemColor(BUTTON_BORDER));
gc.drawLine(xDraw, textY+extent.y+1, xDraw+extent.x+1, textY+extent.y+1);
}
}
这里有趣的部分是gc.drawLine(...)
。您可以让原始渲染器绘制所有内容,然后您可以在其上绘制您拥有不同颜色的线条。
我刚刚重新计算了这些论点。我确实剪了一些角,当文字使用省略号时这不起作用,但它可以是一个很好的起点。
注意:此代码可能会破坏与下一版本的SWT。每次更新SWT时都必须更新它。
以下是项目具有不同颜色的代码段:
public static void main(String[] args) {
final Display display = new Display();
final Shell shell = new Shell(display);
shell.setLayout(new FillLayout());
final int tabFolderStyle = SWT.NONE;
final CTabFolder tabFolder = new CTabFolder(shell, SWT.NONE);
tabFolder.setSimple(false);
final CTabItem tabItem1 = new CTabItem(tabFolder, SWT.NONE);
tabItem1.setText("Tab1");
tabItem1.setData("color", display.getSystemColor(SWT.COLOR_CYAN));
final CTabItem tabItem2 = new CTabItem(tabFolder, SWT.NONE);
tabItem2.setText("Tab2");
tabItem2.setData("color", display.getSystemColor(SWT.COLOR_YELLOW));
tabFolder.setRenderer(new org.eclipse.swt.custom.CTabFolderRenderer(tabFolder){
protected void draw (int part, int state, Rectangle bounds, GC gc) {
super.draw(part, state, bounds, gc);
if (part >= 0 && part == tabFolder.getSelectionIndex()) {
int itemIndex = part;
CTabItem item = parent.getItem(itemIndex);
int x = bounds.x;
int y = bounds.y;
int height = bounds.height;
int width = bounds.width;
boolean onBottom = (tabFolderStyle & SWT.BOTTOM) != 0;
Point extent = gc.textExtent(item.getText(), SWT.DRAW_TRANSPARENT | SWT.DRAW_MNEMONIC);
int textY = y + (height - extent.y) / 2;
textY += onBottom ? -1 : 1;
Rectangle trim = computeTrim(itemIndex, SWT.NONE, 0, 0, 0, 0);
int xDraw = x - trim.x;
gc.setForeground((Color) item.getData("color"));
gc.drawLine(xDraw, textY+extent.y+1, xDraw+extent.x+1, textY+extent.y+1);
}
}
});
shell.open();
while (!shell.isDisposed()) {
if (!display.readAndDispatch()) {
display.sleep();
}
}
display.dispose();
}
答案 1 :(得分:0)
标准制表符文件夹渲染器org.eclipse.swt.custom.CTabFolderRenderer
不支持更改此颜色。
您可以编写自己的渲染器并使用CTabFolder.setRenderer
进行安装,但这非常困难。
我认为只有当标签本身具有焦点时才显示此行,使标签中的控件有焦点停止绘制。