1 /*******************************************************************************
 
   2  * Copyright (c) 2000, 2003 IBM Corporation and others.
 
   3  * All rights reserved. This program and the accompanying materials 
 
   4  * are made available under the terms of the Common Public License v1.0
 
   5  * which accompanies this distribution, and is available at
 
   6  * http://www.eclipse.org/legal/cpl-v10.html
 
   9  *     IBM Corporation - initial API and implementation
 
  10  *******************************************************************************/
 
  11 package net.sourceforge.phpdt.internal.ui.dnd;
 
  13 import org.eclipse.swt.dnd.DND;
 
  14 import org.eclipse.swt.dnd.DragSourceAdapter;
 
  15 import org.eclipse.swt.dnd.DragSourceEvent;
 
  16 import org.eclipse.swt.dnd.Transfer;
 
  18 import org.eclipse.jface.util.Assert;
 
  19 import org.eclipse.jface.viewers.ISelection;
 
  20 import org.eclipse.jface.viewers.ISelectionProvider;
 
  22 public class BasicSelectionTransferDragAdapter extends DragSourceAdapter implements TransferDragSourceListener {
 
  24         private ISelectionProvider fProvider;
 
  26         public BasicSelectionTransferDragAdapter(ISelectionProvider provider) {
 
  27                 Assert.isNotNull(provider);
 
  32          * @see TransferDragSourceListener#getTransfer
 
  34         public Transfer getTransfer() {
 
  35                 return LocalSelectionTransfer.getInstance();
 
  39          * @see org.eclipse.swt.dnd.DragSourceListener#dragStart
 
  41         public void dragStart(DragSourceEvent event) {
 
  42                 ISelection selection= fProvider.getSelection();
 
  43                 LocalSelectionTransfer.getInstance().setSelection(selection);
 
  44                 LocalSelectionTransfer.getInstance().setSelectionSetTime(event.time);
 
  45                 event.doit= isDragable(selection);
 
  49          * Checks if the elements contained in the given selection can
 
  52          * Subclasses may override.
 
  54          * @param selection containing the elements to be dragged
 
  56         protected boolean isDragable(ISelection selection) {
 
  62          * @see org.eclipse.swt.dnd.DragSourceListener#dragSetData
 
  64         public void dragSetData(DragSourceEvent event) {
 
  65                 // For consistency set the data to the selection even though
 
  66                 // the selection is provided by the LocalSelectionTransfer
 
  67                 // to the drop target adapter.
 
  68                 event.data= LocalSelectionTransfer.getInstance().getSelection();
 
  73          * @see org.eclipse.swt.dnd.DragSourceListener#dragFinished
 
  75         public void dragFinished(DragSourceEvent event) {
 
  76                 // We assume that the drop target listener has done all
 
  78                 Assert.isTrue(event.detail == DND.DROP_NONE);
 
  79                 LocalSelectionTransfer.getInstance().setSelection(null);
 
  80                 LocalSelectionTransfer.getInstance().setSelectionSetTime(0);