gpt4 book ai didi

java - 具有列 : Remove alternating background coloring for rows on Linux/Mac 的 SWT 树

转载 作者:太空宇宙 更新时间:2023-11-04 04:28:33 25 4
gpt4 key购买 nike


我正在用列(看起来像表格)对树的一些列进行着色。在 Windows 系统上看起来不错,但在 Linux/Mac 上则不然,因为它们使用交替的背景颜色(白色、蓝色、白色、蓝色……)。
我想删除树的交替背景颜色。如果可能的话有什么想法吗?我尝试在这些系统上禁止 tree.setLinesVisible(true),但它也不会绘制我需要的垂直线。

最佳答案

我认为你可以使用所有者抽奖来做到这一点。使用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 的重点在于具有 native 绘图功能。这提高了用户对软件的接受度,因为用户感觉“宾至如归”。也许你可以设计一种方法,不必取消 GTK 用户的交替背景。

关于java - 具有列 : Remove alternating background coloring for rows on Linux/Mac 的 SWT 树,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6136851/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com