Swing/PointInsidePrefSize のバックアップ(No.1)
- バックアップ一覧
- 差分 を表示
- 現在との差分 を表示
- 現在との差分 - Visual を表示
- ソース を表示
- Swing/PointInsidePrefSize へ行く。
- 1 (2011-08-30 (火) 19:48:45)
- 2 (2011-09-16 (金) 18:45:29)
- 3 (2011-09-18 (日) 04:59:20)
- 4 (2012-01-27 (金) 17:13:57)
- 5 (2012-12-19 (水) 01:52:58)
- 6 (2014-11-29 (土) 01:50:26)
- 7 (2015-02-17 (火) 22:27:32)
- 8 (2016-12-16 (金) 14:23:39)
- 9 (2017-07-28 (金) 18:22:23)
- 10 (2018-02-24 (土) 19:51:30)
- 11 (2018-07-31 (火) 14:01:16)
- 12 (2020-08-04 (火) 21:01:25)
- 13 (2021-12-26 (日) 07:54:12)
TITLE:JTableのセル内でリンクだけHover可能にする
Posted by aterai at 2011-08-29
JTableのセル内でリンクだけHover可能にする
JTableのセル内ではなく、内部のリンク上にカーソルがきた場合だけHoverするように設定します。
- &jnlp;
- &jar;
- &zip;
サンプルコード
//@see SwingUtilities2.pointOutsidePrefSize(...)
private static boolean pointInsidePrefSize(JTable table, Point p) {
int row = table.rowAtPoint(p);
int col = table.columnAtPoint(p);
TableCellRenderer tcr = table.getCellRenderer(row, col);
Object value = table.getValueAt(row, col);
Component cell = tcr.getTableCellRendererComponent(
table, value, false, false, row, col);
Dimension itemSize = cell.getPreferredSize();
Rectangle cellBounds = table.getCellRect(row, col, false);
cellBounds.width = itemSize.width;
return cellBounds.contains(p);
}
@Override public void mouseMoved(MouseEvent e) {
JTable table = (JTable)e.getSource();
Point pt = e.getPoint();
if(pointInsidePrefSize(table, pt)) {
row = table.rowAtPoint(pt);
col = table.columnAtPoint(pt);
}else{
row = -1;
col = -1;
}
table.repaint();
}
@Override public void mouseExited(MouseEvent e) {
JTable table = (JTable)e.getSource();
row = -1;
col = -1;
table.repaint();
}
@Override public void mouseClicked(MouseEvent e) {
JTable table = (JTable)e.getSource();
Point pt = e.getPoint();
if(pointInsidePrefSize(table, pt)) {
int crow = table.rowAtPoint(pt);
int ccol = table.columnAtPoint(pt);
if(table.getColumnClass(ccol).equals(URL.class)) {
URL url = (URL)table.getValueAt(crow, ccol);
System.out.println(url);
//try{
// Desktop.getDesktop().browse(url.toURI());
//}catch(Exception ex) {
// ex.printStackTrace();
//}
}
}
}
解説
SwingUtilities2.pointOutsidePrefSize(...)を参考にして、セルの表示に使用するコンポーネント(JLabel)の標準サイズ(幅)内にカーソルがあるかどうかを比較するメソッドを作成しています。JTableに追加したMouseListenerでこれを使用し、URLの文字列をHoverするか、それがクリックされたかを判断しています。