I'm coloring some of the columns of a tree with columns (which looks like a Table). On Windows systems it looks good but on Linux/Mac it doesn't because they use alternating background coloring (white, blue, white, blue,...).
I would like to remove the alternating background coloring for the tree. Any ideas if it's possible? I tried to forbid tree.setLinesVisible(true) on these systems, but it also won't draw vertical lines, which I need.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|||
|
|
|
I think you can do this using owner draw. Use this snippet as starting point, and exchange the
Should work on GTK (which is the linux window manager SWT uses) and with Since owner draw is expensive I strongly suggest to add such a event handler for GTK:
But the whole point of SWT is having native drawing. This improves the user acceptance of your software, because users feel "at home". Maybe you can design a way, where you don't have to take away the alternating background for GTK users. |
|||
|