• 追加された行はこの色です。
  • 削除された行はこの色です。
TITLE:TransferHandlerを使ったJListのドラック&ドロップによる並べ替え
#navi(../)
RIGHT:Posted by [[terai]] at 2008-09-29
*TransferHandlerを使ったJListのドラック&ドロップによる並べ替え [#t227e219]
JListのアイテムを複数選択し、ドラック&ドロップで並べ替えを可能にするTransferHandlerを作成します。

-&jnlp;
-&jar;
-&zip;

#screenshot

**サンプルコード [#p71d9322]
#code{{
class ListItemTransferHandler extends TransferHandler {
  private final DataFlavor localObjectFlavor;
  private Object[] transferedObjects = null;
  public ListItemTransferHandler() {
    localObjectFlavor = new ActivationDataFlavor(
      Object[].class, DataFlavor.javaJVMLocalObjectMimeType, "Array of items");
  }
  @Override
  protected Transferable createTransferable(JComponent c) {
    JList list = (JList) c;
    indices = list.getSelectedIndices();
    transferedObjects = list.getSelectedValues();
    return new DataHandler(transferedObjects, localObjectFlavor.getMimeType());
  }
  @Override
  public boolean canImport(TransferHandler.TransferSupport info) {
    if (!info.isDrop() || !info.isDataFlavorSupported(localObjectFlavor)) {
      return false;
    }
    return true;
  }
  @Override
  public int getSourceActions(JComponent c) {
    return TransferHandler.COPY_OR_MOVE;
    return TransferHandler.MOVE; //TransferHandler.COPY_OR_MOVE;
  }
  @Override
  public boolean importData(TransferHandler.TransferSupport info) {
    if (!canImport(info)) {
      return false;
    }
    JList target = (JList)info.getComponent();
    JList.DropLocation dl = (JList.DropLocation)info.getDropLocation();
    DefaultListModel listModel = (DefaultListModel)target.getModel();
    int index = dl.getIndex();
    //boolean insert = dl.isInsert();
    int max = listModel.getSize();
    if(index<0 || index>max) {
      index = max;
    }
    addIndex = index;

    try {
      Object[] values = (Object[])info.getTransferable().getTransferData(localObjectFlavor);
      addCount = values.length;
      for(int i=0;i<values.length;i++) {
        int idx = index++;
        listModel.add(idx, values[i]);
        target.addSelectionInterval(idx, idx);
      }
      return true;
    }catch(UnsupportedFlavorException ufe) {
      ufe.printStackTrace();
    }catch(java.io.IOException ioe) {
      ioe.printStackTrace();
    }
    return false;
  }
  @Override
  protected void exportDone(JComponent c, Transferable data, int action) {
    cleanup(c, action == TransferHandler.MOVE);
  }
  private void cleanup(JComponent c, boolean remove) {
    if(remove && indices != null) {
      JList source = (JList)c;
      DefaultListModel model  = (DefaultListModel)source.getModel();
      if(addCount > 0) {
        for(int i=0;i<indices.length;i++) {
          if(indices[i]>=addIndex) {
            indices[i] += addCount;
          }
        }
      }
      for(int i=indices.length-1;i>=0;i--) {
        model.remove(indices[i]);
      }
    }
    indices  = null;
    addCount = 0;
    addIndex = -1;
  }
  private int[] indices = null;
  private int addIndex  = -1; //Location where items were added
  private int addCount  = 0;  //Number of items added.
}
}}

**解説 [#mebd4560]
上記のサンプルのTransferHandler((JDK 6 で導入されたTransferHandler#canImport メソッドなどを使用しています。))は、主に[[Drag and Drop and Data Transfer: Examples (The Java™ Tutorials > Creating a GUI with JFC/Swing > Drag and Drop and Data Transfer)>http://java.sun.com/docs/books/tutorial/uiswing/examples/dnd/index.html#BasicDnD]]の[[ListTransferHandler.java>http://java.sun.com/docs/books/tutorial/uiswing/examples/dnd/DropDemoProject/src/dnd/ListTransferHandler.java]]を参考にして作成しています。

#code{{
JList list = new JList(listModel);
list.getSelectionModel().setSelectionMode(ListSelectionModel.MULTIPLE_INTERVAL_SELECTION);
list.setTransferHandler(new ListItemTransferHandler());
list.setDropMode(DropMode.INSERT);
list.setDragEnabled(true);
}}

----
[[JListの項目をドラッグ&ドロップ>Swing/DnDList]]とは異なり、複数アイテムを選択してDrag&Dropによる移動が可能になっています。

**参考リンク [#qf7f31ba]
-[[Drag and Drop and Data Transfer: Examples (The Java™ Tutorials > Creating a GUI with JFC/Swing > Drag and Drop and Data Transfer)>http://java.sun.com/docs/books/tutorial/uiswing/examples/dnd/index.html#BasicDnD]]
--[[ListTransferHandler.java>http://java.sun.com/docs/books/tutorial/uiswing/examples/dnd/DropDemoProject/src/dnd/ListTransferHandler.java]]
-[[JListの項目をドラッグ&ドロップ>Swing/DnDList]]
-[[JListのアイテムをラバーバンドで複数選択、ドラック&ドロップで並べ替え>Swing/DragSelectDropReordering]]

**コメント [#x063bcab]
- 複数選択して選択されたアイテムのインデックスに移動した場合、複写されるバグ?を修正。 -- [[terai]] &new{2008-10-10 (金) 21:44:34};

#comment