2

テーブル (org.eclipse.swt.widgets.Table) を作成し、TableEditor を使用して各 TableItem (行) に 2 つのチェックボックスを追加しました。

TableItem tableItem = new TableItem(tableClientes, SWT.NONE);
TableEditor editor = new TableEditor(tableClientes);

Button checkEnviar = new Button(tableClientes, SWT.CHECK);
checkEnviar.pack();

editor.minimumWidth = checkEnviar.getSize().x + 5;
editor.horizontalAlignment = SWT.CENTER;
editor.setEditor(checkEnviar, tableItem, 0);

editor = new TableEditor(tableClientes);

Button checkMarcar = new Button(tableClientes, SWT.CHECK);
checkMarcar.pack();

editor.minimumWidth = checkMarcar.getSize().x;
editor.horizontalAlignment = SWT.CENTER;
editor.setEditor(checkMarcar, tableItem, 1);

各行の各チェックボックスの状態を読み取る必要がありますが、その方法がわかりません。

私はこの方法で TableItem を取得しようとしました:

tableClientes.getItem(x)

しかし、その内容では、チェックボックスの状態を取得したり操作したりすることはできません。これを行う方法はありますか?

4

1 に答える 1

2

簡単な解決策は、クラスsetData()のメソッドを使用することです。Widgetたとえば、以下のコードを参照してください (特に最後のボタンの選択リスナーですが、有効なウィジェット インスタンスをテストしてください)。

import org.eclipse.swt.SWT;
import org.eclipse.swt.custom.TableEditor;
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 TableItemTest {
    public static void main(String[] args) {
        Display display = new Display();
        Shell shell = new Shell(display);
        shell.setLayout(new GridLayout(1, false));
        GridData gridData = new GridData(SWT.FILL, SWT.FILL, true, true);
        shell.setLayoutData(gridData);

        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.setBounds(new org.eclipse.swt.graphics.Rectangle(47,67,190,70));

        TableColumn tableColumn = new TableColumn(table, SWT.NONE);
        tableColumn.setWidth(180);
        tableColumn.setText("Check Column"); 

        for(int i=0; i<10; i++){
            Button checkButton = new Button(table, SWT.CHECK); 
            checkButton.pack();

            TableItem tableItem=new TableItem(table,SWT.NONE);
            TableEditor editor = new TableEditor (table);

            editor.minimumWidth = checkButton.getSize ().x;
            editor.horizontalAlignment = SWT.CENTER;
            editor.setEditor(checkButton, tableItem, 0);
            tableItem.setData("CHECK_BOX", checkButton); //Point to notice
        }

        Button checkState = new Button(shell, SWT.PUSH);
        checkState.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, false));
        checkState.setText("Check State");
        checkState.addSelectionListener(new SelectionAdapter() {
            public void widgetSelected(SelectionEvent e) {
                TableItem[] items = table.getItems();
                for (int i = 0; i < items.length; i++) {
                    Object data = items[i].getData("CHECK_BOX");
                    if(data != null){
                        Button checkButton = (Button)data;
                        if(!checkButton.isDisposed())
                            System.out.println("For row " + (i+1) + " check status is " + checkButton.getSelection());
                    }
                }
            }
        });

        shell.setSize(220, 400);
        shell.open();
        while (!shell.isDisposed()) {
            if (!display.readAndDispatch())
                display.sleep();
        }
        display.dispose();
    }
}
于 2013-04-24T03:59:57.570 に答える