调整表格列的大小以填充所有可用空间

时间:2012-02-09 12:47:34

标签: java eclipse swt

我在Eclipse SWT中有这个表,有5列。我调整了窗口的大小,并与整个表格一起调整大小,但是列不会调整大小以填充所有可用空间。

是否有一种布局方法可以使列调整大小以填充所有可用空间?我找到了一些代码,当客户端空间调整大小时,会调整列的大小,但这对我来说似乎是个小问题。

通过使用布局本身肯定必须有一种不错的优雅方式。

2 个答案:

答案 0 :(得分:5)

这可能会派上用场:

Composite tableComposite = new Composite(parent, SWT.NONE);
TableViewer xslTable = new TableViewer(tableComposite, SWT.SINGLE | SWT.FULL_SELECTION | SWT.H_SCROLL | SWT.V_SCROLL);
xslTable.getTable().setLinesVisible(true);
xslTable.getTable().setHeaderVisible(true);
TableViewerColumn stylesheetColumn = new TableViewerColumn(xslTable, SWT.NONE);
stylesheetColumn.getColumn().setText(COLUMN_NAMES[0]);
stylesheetColumn.getColumn().setResizable(false);
TableViewerColumn conceptColumn = new TableViewerColumn(xslTable, SWT.NONE);
conceptColumn.getColumn().setText(COLUMN_NAMES[1]);
conceptColumn.getColumn().setResizable(false);
TableColumnLayout tableLayout = new TableColumnLayout();
tableComposite.setLayout(tableLayout);

layoutTableColumns();

layoutTableColumns方法

  /**
   * Resize table columns so the concept column is packed and the stylesheet column takes the rest of the space
   */
  private void layoutTableColumns()
  {
    // Resize the columns to fit the contents
    conceptColumn.getColumn().pack();
    stylesheetColumn.getColumn().pack();
    // Use the packed widths as the minimum widths
    int stylesheetWidth = stylesheetColumn.getColumn().getWidth();
    int conceptWidth = conceptColumn.getColumn().getWidth();
    // Set stylesheet column to fill 100% and concept column to fit 0%, but with their packed widths as minimums
    tableLayout.setColumnData(stylesheetColumn.getColumn(), new ColumnWeightData(100, stylesheetWidth));
    tableLayout.setColumnData(conceptColumn.getColumn(), new ColumnWeightData(0, conceptWidth));
  }

答案 1 :(得分:1)

这就是我尝试过的,它运作良好。

viewer.getControl().addControlListener(new ControlListener() {

        @Override
        public void controlResized(ControlEvent arg0) {
            Rectangle rect = viewer.getTable().getClientArea();
            if(rect.width>0){
                int extraSpace=rect.width/4;
                col1.getColumn().setWidth(extraSpace);
                col2.getColumn().setWidth(extraSpace);
                col3.getColumn().setWidth(extraSpace);
                col4.getColumn().setWidth(extraSpace);
            }
        }

        @Override
        public void controlMoved(ControlEvent arg0) {
            // TODO Auto-generated method stub

        }
    });