本文整理匯總了Java中org.eclipse.swt.widgets.TableColumn.getWidth方法的典型用法代碼示例。如果您正苦於以下問題:Java TableColumn.getWidth方法的具體用法?Java TableColumn.getWidth怎麽用?Java TableColumn.getWidth使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類org.eclipse.swt.widgets.TableColumn
的用法示例。
在下文中一共展示了TableColumn.getWidth方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: handleEvent
import org.eclipse.swt.widgets.TableColumn; //導入方法依賴的package包/類
public static void handleEvent(Event event) {
Table table = (Table) event.widget;
int columnCount = table.getColumnCount();
if (columnCount == 0)
return;
Rectangle area = table.getClientArea();
int totalAreaWdith = area.width;
int lineWidth = table.getGridLineWidth();
int totalGridLineWidth = (columnCount - 1) * lineWidth;
int totalColumnWidth = 0;
for (TableColumn column : table.getColumns()) {
totalColumnWidth = totalColumnWidth + column.getWidth();
}
int diff = totalAreaWdith - (totalColumnWidth + totalGridLineWidth);
TableColumn lastCol = table.getColumns()[columnCount - 1];
lastCol.setWidth(diff + lastCol.getWidth());
}
示例2: adjustWidth
import org.eclipse.swt.widgets.TableColumn; //導入方法依賴的package包/類
protected int adjustWidth(TableColumn column, int defaultWidth){
column.pack();
int width = column.getWidth();
if( width < defaultWidth ){
width = defaultWidth;
column.setWidth( width );
}
return width;
}
示例3: controlResized
import org.eclipse.swt.widgets.TableColumn; //導入方法依賴的package包/類
@Override
public void controlResized(final ControlEvent e) {
final TableColumn column = (TableColumn) e.widget;
final int columnIndex = column.getParent().indexOf(column);
tableColumnWidths[columnIndex] = column.getWidth();
}