2

SWT/JFace を使用して Java プロジェクトに取り組んでいます。をTable使用している がありTableViewerます。テーブルには 0 個または 1 個のアイテムしかありません (表示しているデータによって異なります...)。このテーブルを聞いて、アイテムが含まれているかどうかを確認する方法はありますか? これまでビューアで使用してきISelectionChangedListenerましたが、ユーザーが項目をクリックして変更を登録する必要があるため、完全には機能しません。理想的には、アイテムがテーブルに置かれたりテーブルから削除されたりするたびに、リスナーがトリガーされます。周りを見回しましたが、必要なものが見つかりません。

私が探しているものを知っている人はいますか?

4

1 に答える 1

1

これに厳密に基づいて、「テーブルには 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確認してください。windowProcTable

于 2013-04-24T17:14:22.987 に答える