これに厳密に基づいて、「テーブルには 0 個または 1 個のアイテムしかありません」。簡単な回避策は を使用することPaintListener
です。これは、ウィンドウが他のウィンドウの後ろに隠れていても機能します。主な欠点は、コンテンツが UI に表示されない場合 (TableItem
スクロールでアクセスできる場合など)、機能しないことです。このソリューションは、Win7 および Eclipse 3.7.2 で動作します。
import org.eclipse.swt.SWT;
import org.eclipse.swt.events.PaintEvent;
import org.eclipse.swt.events.PaintListener;
import org.eclipse.swt.events.SelectionAdapter;
import org.eclipse.swt.events.SelectionEvent;
import org.eclipse.swt.layout.GridData;
import org.eclipse.swt.layout.GridLayout;
import org.eclipse.swt.widgets.Button;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Shell;
import org.eclipse.swt.widgets.Table;
import org.eclipse.swt.widgets.TableColumn;
import org.eclipse.swt.widgets.TableItem;
public class TableTest {
static int counter = 0;
public static void main(String[] args) {
final Display display = new Display();
Shell shell = new Shell(display);
shell.setLayout(new GridLayout(1, false));
shell.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true));
final Table table = new Table(shell, SWT.BORDER);
table.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true));
table.setHeaderVisible(true);
table.setLinesVisible(true);
table.addPaintListener(new PaintListener() {
public void paintControl(PaintEvent e) {
System.out.println(((Table)e.widget).getItemCount() > 0);
}
});
TableColumn column = new TableColumn(table, SWT.LEFT);
column.setWidth(180);
column.setText("Test Column");
Button button = new Button(shell, SWT.PUSH);
button.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, false));
button.setText("Add item");
button.addSelectionListener(new SelectionAdapter() {
public void widgetSelected(SelectionEvent e) {
TableItem item = new TableItem(table, SWT.NONE);
item.setText("" + counter++);
if(counter > 10) {
table.clearAll();
counter = 0;
}
}
});
display.timerExec(1000, new Runnable() {
public void run() {
if(table.isDisposed()) return;
TableItem item = new TableItem(table, SWT.NONE);
item.setText("" + counter++);
if(counter > 10) {
table.clearAll();
counter = 0;
}
display.timerExec(1000, this);
}
});
shell.setSize(220, 300);
shell.open();
while (!shell.isDisposed()) {
if (!display.readAndDispatch())
display.sleep();
}
display.dispose();
}
}
注: LVN_INSERTITEMは SWTウィジェットではサポートされていません。ウィジェットでメソッドをTable
確認してください。windowProc
Table