我用树列着一些树的一些列(看起来像一个表)。在Windows系统上它看起来不错,但在Linux / Mac上却没有,因为它们使用交替的背景颜色(白色,蓝色,白色,蓝色......)。
我想删除树的交替背景颜色。任何想法,如果可能的话?我试图在这些系统上禁止tree.setLinesVisible(true)
,但它也不会绘制我需要的垂直线。
答案 0 :(得分:0)
我认为你可以使用所有者抽奖来做到这一点。使用this snippet作为起点,并将EraseItem
事件处理程序与此交换:
public void handleEvent( Event event ) {
event.detail &= ~SWT.HOT;
GC gc = event.gc;
Rectangle area = table.getClientArea();
/*
* If you wish to paint the selection beyond the end of
* last column, you must change the clipping region.
*/
int columnCount = table.getColumnCount();
if ( event.index == columnCount - 1 || columnCount == 0 ) {
int width = area.x + area.width - event.x;
if ( width > 0 ) {
Region region = new Region();
gc.getClipping(region);
region.add(event.x, event.y, width, event.height);
gc.setClipping(region);
region.dispose();
}
}
gc.setAdvanced(true);
if ( gc.getAdvanced() ) gc.setAlpha(127);
Rectangle rect = event.getBounds();
Color background = gc.getBackground();
gc.setBackground(display.getSystemColor(SWT.COLOR_RED));
gc.fillRectangle(0, rect.y, 500, rect.height);
// restore colors for subsequent drawing
gc.setBackground(background);
}
应该在GTK(这是SWT使用的linux窗口管理器)和Trees
上工作,但是还没有尝试过。
由于所有者抽奖很昂贵,我强烈建议为GTK添加这样的事件处理程序:
if(SWT.getPlatform().equals("gtk")){ ... }
但是,SWT的重点在于本土绘图。这提高了用户对软件的接受度,因为用户感觉“在家”。也许你可以设计一种方式,你不必为GTK用户带走交替的背景。