Swing/RubberBanding のバックアップ(No.12)
- バックアップ一覧
- 差分 を表示
- 現在との差分 を表示
- 現在との差分 - Visual を表示
- ソース を表示
- Swing/RubberBanding へ行く。
- 1 (2006-08-14 (月) 01:35:31)
- 2 (2006-08-14 (月) 12:51:39)
- 3 (2006-09-12 (火) 16:15:49)
- 4 (2006-09-12 (火) 17:24:39)
- 5 (2007-03-08 (木) 15:13:08)
- 6 (2007-03-14 (水) 11:24:19)
- 7 (2007-03-26 (月) 20:45:32)
- 8 (2007-03-27 (火) 04:52:47)
- 9 (2007-10-03 (水) 23:40:42)
- 10 (2007-11-14 (水) 13:17:00)
- 11 (2008-08-01 (金) 16:24:28)
- 12 (2008-10-06 (月) 21:23:36)
- 13 (2009-03-16 (月) 17:08:07)
- 14 (2011-04-15 (金) 12:03:40)
- 15 (2013-02-24 (日) 22:33:12)
- 16 (2013-08-23 (金) 15:16:44)
- 17 (2014-03-18 (火) 18:56:11)
- 18 (2014-09-30 (火) 01:01:30)
- 19 (2014-11-25 (火) 03:03:31)
- 20 (2014-11-28 (金) 16:28:45)
- 21 (2015-06-02 (火) 18:11:29)
- 22 (2015-06-02 (火) 21:40:40)
- 23 (2016-02-09 (火) 02:54:42)
- 24 (2017-07-06 (木) 13:53:57)
- 25 (2018-02-24 (土) 19:51:30)
- 26 (2018-07-05 (木) 15:56:24)
- 27 (2018-10-30 (火) 16:35:34)
- 28 (2020-10-28 (水) 01:39:44)
- 29 (2022-08-17 (水) 14:32:17)
TITLE:JListのアイテムを範囲指定で選択
JListのアイテムを範囲指定で選択
Posted by terai at 2006-08-14
概要
JListのアイテムをラバーバンドで範囲指定して選択します。
- &jnlp;
- &jar;
- &zip;
#screenshot
サンプルコード
class MyList extends JList {
private final Color rcolor;
private final Color pcolor;
private final AlphaComposite alcomp
private final Polygon polygon = new Polygon();
private final Line2D line = new Line2D.Double();
private Point srcPoint = null;
public MyList(ListModel model) {
super(model);
rcolor = SystemColor.activeCaption;
pcolor = makeColor(rcolor);
alcomp = AlphaComposite.getInstance(AlphaComposite.SRC_OVER, 0.1f);
setLayoutOrientation(JList.HORIZONTAL_WRAP);
setVisibleRowCount(0);
setFixedCellWidth(62);
setFixedCellHeight(62);
setBorder(BorderFactory.createEmptyBorder(5,5,5,5));
setCellRenderer(new ListCellRenderer() {
public Component getListCellRendererComponent(
JList list, Object value, int index, boolean isSelected,
boolean cellHasFocus) {
MyIcon icon = (MyIcon)getModel().getElementAt(index);
icon.setSelected(isSelected);
icon.setFocused(cellHasFocus);
return icon;
}
});
addMouseMotionListener(new MouseMotionAdapter() {
public void mouseDragged(MouseEvent e){
if(srcPoint==null) srcPoint = e.getPoint();
Point destPoint = e.getPoint();
polygon.reset();
polygon.addPoint(srcPoint.x, srcPoint.y);
polygon.addPoint(destPoint.x, srcPoint.y);
polygon.addPoint(destPoint.x, destPoint.y);
polygon.addPoint(srcPoint.x, destPoint.y);
if(srcPoint.getX()==destPoint.getX() ||
srcPoint.getY()==destPoint.getY()) {
line.setLine(srcPoint.getX(),srcPoint.getY(),
destPoint.getX(),destPoint.getY());
setSelectedIndices(getIntersectsIcons(line));
}else{
setSelectedIndices(getIntersectsIcons(polygon));
}
repaint();
}
});
addMouseListener(new MouseAdapter() {
public void mouseReleased(MouseEvent e) {
srcPoint = null;
repaint();
}
public void mousePressed(MouseEvent e) {
if(locationToIndex(e.getPoint())<0) {
clearSelection();
repaint();
}else{
int index = locationToIndex(e.getPoint());
MyIcon icon = (MyIcon)getModel().getElementAt(index);
Rectangle rect = getCellBounds(index,index);
if(!rect.contains(e.getPoint())) {
clearSelection();
repaint();
}
}
}
});
}
public void paintComponent(Graphics g) {
super.paintComponent(g);
if(srcPoint==null) return;
Graphics2D g2d = (Graphics2D) g;
g2d.setPaint(rcolor);
g2d.drawPolygon(polygon);
g2d.setComposite(alcomp);
g2d.setPaint(pcolor);
g2d.fillPolygon(polygon);
}
private int[] getIntersectsIcons(Shape p) {
ListModel model = getModel();
Vector list = new Vector(model.getSize());
for(int i=0;i<model.getSize();i++) {
Rectangle r = MyList.this.getCellBounds(i,i);
if(p.intersects(r)) {
list.add(i);
}
}
int[] il = new int[list.size()];
for(int i=0;i<list.size();i++) {
il[i] = list.get(i);
}
return il;
}
private Color makeColor(Color c) {
int r = c.getRed();
int g = c.getGreen();
int b = c.getBlue();
if(r>g) return (r>b)?new Color(r,0,0):new Color(0,0,b);
else return (g>b)?new Color(0,g,0):new Color(0,0,b);
}
}
解説
上記のサンプルでは、JListにマウスリスナーを設定して、ドラッグに応じた矩形が描画されるようになっています。
この矩形の内部にアイテムアイコンが重なる場合は、それを選択状態に変更しています。選択範囲が矩形にならずに直線になっている場合は、別途その直線と交差するアイテムを選択するようにしています。
JList内のアイテムの配置は、JList#setLayoutOrientation(JList.HORIZONTAL_WRAP)メソッドを使っているため、水平方向に整列されます。
参考リンク
- Swing - Can someone optimise the following code ?
- XP Style Icons - Windows Application Icon, Software XP Icons
コメント
- 点線のアニメーション: プログラマメモ2: java ラバーバンドを表現するためのした調べ -- terai