Swing/CheckBoxCellList のバックアップ(No.1)
- バックアップ一覧
- 差分 を表示
- 現在との差分 を表示
- 現在との差分 - Visual を表示
- ソース を表示
- Swing/CheckBoxCellList へ行く。
- 1 (2012-05-29 (火) 14:32:45)
- 2 (2012-06-22 (金) 01:52:01)
- 3 (2012-12-22 (土) 16:09:37)
- 4 (2013-09-03 (火) 13:06:56)
- 5 (2013-09-03 (火) 14:11:14)
- 6 (2013-10-01 (火) 00:20:57)
- 7 (2013-10-01 (火) 05:15:35)
- 8 (2013-10-09 (水) 04:48:10)
- 9 (2013-10-15 (火) 00:01:11)
- 10 (2013-10-15 (火) 08:23:58)
- 11 (2013-10-15 (火) 11:52:31)
- 12 (2013-10-21 (月) 10:23:25)
- 13 (2013-10-21 (月) 15:03:31)
- 14 (2013-10-28 (月) 10:11:18)
- 15 (2013-10-28 (月) 15:00:16)
- 16 (2014-02-18 (火) 15:20:20)
- 17 (2014-02-19 (水) 02:29:31)
- 18 (2014-06-26 (木) 16:19:19)
- 19 (2014-09-04 (木) 14:20:47)
- 20 (2014-10-07 (火) 17:55:53)
- 21 (2014-11-22 (土) 03:57:24)
- 22 (2015-08-24 (月) 02:47:47)
- 23 (2015-08-25 (火) 19:37:30)
- 24 (2017-04-06 (木) 20:42:32)
- 25 (2018-02-24 (土) 19:51:30)
- 26 (2018-03-22 (木) 14:13:29)
- 27 (2019-05-22 (水) 19:35:38)
- 28 (2020-03-22 (日) 01:45:30)
- 29 (2021-09-28 (火) 13:11:02)
- 30 (2021-11-25 (木) 05:36:48)
TITLE:JListのセルにJCheckBoxを使用する
Posted by aterai at 2011-03-28
JListのセルにJCheckBoxを使用する
JListのセルにJCheckBoxを使用して、チェックボックスの一覧を作成します。
- &jnlp;
- &jar;
- &zip;
サンプルコード
class CheckBoxCellRenderer extends JCheckBox
implements ListCellRenderer, MouseListener, MouseMotionListener {
@Override public Component getListCellRendererComponent(
JList list,
Object value,
int index,
boolean isSelected,
boolean cellHasFocus) {
this.setOpaque(true);
if(isSelected) {
this.setBackground(list.getSelectionBackground());
this.setForeground(list.getSelectionForeground());
}else{
this.setBackground(list.getBackground());
this.setForeground(list.getForeground());
}
if(value instanceof CheckBoxNode) {
this.setSelected(((CheckBoxNode)value).selected);
if(index==pressedRowIndex) {
this.getModel().setArmed(true);
this.getModel().setPressed(true);
}else{
this.getModel().setRollover(index==rollOverRowIndex);
this.getModel().setArmed(false);
this.getModel().setPressed(false);
}
}
this.setText(value.toString());
return this;
}
private int rollOverRowIndex = -1;
private int pressedRowIndex = -3;
@Override public void mouseExited(MouseEvent e) {
rollOverRowIndex = -1;
JList c = (JList)e.getSource();
c.repaint();
}
@Override public void mouseClicked(MouseEvent e) {
if(e.getButton()==MouseEvent.BUTTON1) {
JList t = (JList)e.getComponent();
DefaultListModel m = (DefaultListModel)t.getModel();
Point p = e.getPoint();
int index = t.locationToIndex(p);
CheckBoxNode n = (CheckBoxNode)m.get(index);
Component c = t.getCellRenderer().getListCellRendererComponent(
t, n, index, false, false);
Dimension d = c.getPreferredSize();
if(d.width>=p.x) {
m.set(index, new CheckBoxNode(n.text, !n.selected));
t.repaint();
t.repaint(t.getCellBounds(index, index));
}
}
}
@Override public void mouseEntered(MouseEvent e) {}
private int pressStartIndex = -1;
@Override public void mousePressed(MouseEvent e) {
if(e.getButton()==MouseEvent.BUTTON1) {
JList c = (JList)e.getSource();
int row = c.locationToIndex(e.getPoint());
pressStartIndex = row;
if(row != pressedRowIndex) {
pressedRowIndex = row;
c.repaint();
}
}
}
@Override public void mouseReleased(MouseEvent e) {
pressedRowIndex = -1;
pressStartIndex = -1;
}
@Override public void mouseDragged(MouseEvent e) {
JList c = (JList)e.getSource();
int row = c.locationToIndex(e.getPoint());
if(row != rollOverRowIndex) {
rollOverRowIndex = -1;
}
if(row != pressedRowIndex) {
pressedRowIndex = -1;
}
if(row == pressStartIndex) {
pressedRowIndex = row;
}
c.repaint();
}
@Override public void mouseMoved(MouseEvent e) {
JList c = (JList)e.getSource();
int row = c.locationToIndex(e.getPoint());
if(row != rollOverRowIndex) {
rollOverRowIndex = row;
c.repaint();
}
}
}
解説
- 左: "JCheckBox Cell in JList"
- JCheckBoxを継承するListCellRendererを設定
- チェックボックスのロールオーバーなどは、JListにマウスリスナーを設定して表示
- JList#putClientProperty("List.isFileList", Boolean.TRUE);で、クリックが有効になる領域をチェックボックスの幅に制限
- 右: "JCheckBox in Box"
- Box.createVerticalBox()にJCheckBoxを追加
- JCheckBox#setAlignmentX(Component.LEFT_ALIGNMENT);で左揃えに設定
JTreeの葉ノードをJCheckBoxにするのセルレンダラーを使ったJTreeに、JTree#setRootVisible(false)を設定しても、ほぼ同様のチェックボックスの一覧を作成することができます。