我有一个相对简单的问题 - 但我无法在任何地方找到任何答案。
我在我的应用程序中使用了一个简单的 SWT 表格小部件,它只在单元格中显示文本。我有一个增量搜索功能,如果它们匹配,我想突出显示所有单元格中的文本片段。
所以当输入“a”时,所有的“a”都应该被突出显示。
为此,我添加了一个SWT.EraseItem
监听器来干扰背景绘图。如果当前单元格的文本包含搜索字符串,我会使用 -easy 找到位置并计算文本内的相对 x 坐标event.gc.stringExtent
。
有了它,我只是在事件“后面”绘制矩形。
现在,这有一个缺陷。表格不会绘制没有边距的文本,所以我的 x 坐标并不真正匹配 - 它稍微偏离了几个像素!但是有多少??我在哪里检索表格自己的绘图将使用的单元格的文本边距?没有线索。找不到任何东西。
额外的问题:表格的绘制方法也会缩短文本并添加“...”如果它不适合单元格。唔。我的事件查找器获取 TableItem 的文本,因此还尝试标记实际上不可见的事件,因为它们被“...”消耗。如何在 EraseItem 绘制处理程序中获取缩短的文本而不是“真实”文本?
@Override
public void handleEvent( final Event event ) {
final TableItem ti = (TableItem) event.item;
final int index = event.index;
final GC gc = event.gc;
if( ti == null || currentSwyt.isEmpty() ) {
return;
}
final String text = ti.getText( index );
if( !text.contains( currentSwyt ) ) {
return;
}
// search text is contained
final String[] parts = text.split( currentSwyt );
final int swytWidth = gc.stringExtent( currentSwyt ).x;
// calculate positions, must be relative to the text's start
int x = event.x; // THIS IS THE PROBLEM: event.x is not enough!
final int[] pos = new int[parts.length - 1];
for( int i = 0; i < parts.length - 1; i++ ) {
x += gc.stringExtent( parts[i] ).x;
pos[i] = x;
}
final Color red = event.display.getSystemColor( SWT.COLOR_RED );
final Color oldBackground = gc.getBackground();
gc.setBackground( red );
for( int j = 0; j < pos.length; j++ ) {
gc.fillRectangle( pos[j], event.y, swytWidth, event.height );
}
gc.setBackground( oldBackground );
event.detail &= ~SWT.BACKGROUND;
}