Swing/HeaderRatio のバックアップ(No.11)
- バックアップ一覧
- 差分 を表示
- 現在との差分 を表示
- 現在との差分 - Visual を表示
- ソース を表示
- Swing/HeaderRatio へ行く。
- 1 (2005-11-28 (月) 18:26:47)
- 2 (2005-12-06 (火) 12:36:48)
- 3 (2005-12-16 (金) 17:21:37)
- 4 (2006-01-12 (木) 17:48:28)
- 5 (2006-02-27 (月) 16:00:42)
- 6 (2006-02-28 (火) 11:42:21)
- 7 (2006-03-24 (金) 23:10:19)
- 8 (2006-06-20 (火) 20:35:58)
- 9 (2006-11-10 (金) 12:52:29)
- 10 (2007-03-16 (金) 00:35:03)
- 11 (2007-05-10 (木) 10:37:27)
- 12 (2011-01-11 (火) 01:44:45)
- 13 (2011-03-02 (水) 18:21:40)
- 14 (2013-03-21 (木) 16:02:10)
- 15 (2013-04-06 (土) 05:04:24)
- 16 (2013-04-06 (土) 20:09:54)
- 17 (2014-09-27 (土) 02:18:41)
- 18 (2014-11-19 (水) 01:54:27)
- 19 (2015-03-09 (月) 14:46:02)
- 20 (2015-03-16 (月) 17:28:33)
- 21 (2015-03-18 (水) 18:49:18)
- 22 (2016-01-12 (火) 17:58:03)
- 23 (2017-06-23 (金) 12:48:24)
- 24 (2018-06-26 (火) 13:10:05)
- 25 (2020-06-11 (木) 22:57:37)
- 26 (2021-11-27 (土) 13:30:44)
TITLE:TableColumnの幅を比率で設定
TableColumnの幅を比率で設定
編集者:Terai Atsuhiro
作成日:2005-11-28
更新日:2021-11-27 (土) 13:30:44
概要
TableColumnの幅を比率で設定します。
#screenshot
サンプルコード
private void setRaito() {
int[] list = getWidthRaitoArray();
int total = getTotalColumnWidth(table);
int raito = total/getRaitoTotal(table, list);
for(int i=0;i<table.getColumnModel().getColumnCount()-1;i++) {
TableColumn col = table.getColumnModel().getColumn(i);
int colwidth = list[i]*raito;
col.setMaxWidth(colwidth);
total = total - colwidth;
}
//最後のカラムで誤差で誤差を吸収
table.getColumnModel().getColumn(
table.getColumnModel().getColumnCount()-1).setMaxWidth(total);
table.revalidate();
}
- &jnlp;
- &jar;
- &zip;
解説
上記のサンプルでは、テキストフィールドにコロン区切りで入力した比率に従って、ヘッダカラムの幅を調整するようになっています。
JScrollPaneにComponentListenerを追加して、リサイズ毎に初期化しているので、フレームのサイズを変更してもカラムの比率は保持されます。
TableColumn#setMaxWidthメソッドでカラムの幅を指定しているので、マウスのドラッグによるサイズの変更はできません。
起動時だけ比率を設定したい場合は、以下のようにTableColumn#setPreferredWidthメソッドを使用することで、マウスのドラッグによるサイズが可能になります。またComponentListenerを追加して初期化しなくても、フレームサイズ変更時には現在のカラム幅の比率などから適当に*1リサイズしてくれます*2。
int[] list = getWidthRaitoArray();
int total = table.getColumnModel().getTotalColumnWidth();;
int raito = total/getRaitoTotal(table, list);
for(int i=0;i<table.getColumnModel().getColumnCount()-1;i++) {
TableColumn col = table.getColumnModel().getColumn(i);
int colwidth = list[i]*raito;
// - table.getColumnModel().getColumnMargin();
col.setPreferredWidth(colwidth);
total = total - colwidth;
}
table.getColumnModel().getColumn(
table.getColumnModel().getColumnCount()-1).setPreferredWidth(total);
table.revalidate();