TableColumnの幅を比率で設定
Total: 15225
, Today: 1
, Yesterday: 0
Posted by aterai at
Last-modified:
概要
列幅調整がデフォルトのJTable
で、ヘッダの各TableColumn
が指定した比率の幅になるように設定します。
Screenshot
Advertisement
サンプルコード
private void setTableHeaderColumnRaito() {
TableColumnModel m = table.getColumnModel();
List<Integer> list = getWidthRaitoArray();
int total = table.getSize().width;
double raito = total / (double) getRaitoTotal(list);
for (int i = 0; i < m.getColumnCount() - 1; i++) {
TableColumn col = m.getColumn(i);
int colwidth = (int) (.5 + list.get(i) * raito);
col.setPreferredWidth(colwidth);
total -= colwidth;
}
// 最後のカラムで余りを解消
m.getColumn(m.getColumnCount() - 1).setPreferredWidth(total);
table.revalidate();
}
View in GitHub: Java, Kotlin解説
上記のサンプルでは、JTextField
にコロン区切りで入力した比率に従って各カラムヘッダの幅を調整しています。
ComponentListener#componentResized(...)
がチェックされている場合:JScrollPane
に追加したComponentListener
でリサイズが実行されると全ての列幅を設定し直すのでフレームのサイズを変更してもカラムの比率は保持される
ComponentListener#componentResized(...)
がチェックされていない場合:- 列幅調整が
AUTO_RESIZE_SUBSEQUENT_COLUMNS
(デフォルト)なので、フレームをリサイズするとその幅の変更(デルタ)がリサイズ可能なすべての列に分散して加算減算される- このため入力されている比率とは異なる列幅になる
TableColumn#setMaxWidth
メソッドでカラムの幅を指定する場合、マウスのドラッグによるリサイズは不可
- 列幅調整が