blob: 59e4b59cfaef87ecbe91ac4e2c8f198303a42376 [file] [log] [blame]
/******************************************************************************
* Copyright (c) 2011 GitHub Inc.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Kevin Sawicki (GitHub Inc.) - initial API and implementation
*****************************************************************************/
package org.eclipse.egit.ui.internal.repository;
import java.io.File;
import java.util.ArrayList;
import java.util.List;
import org.eclipse.egit.ui.internal.repository.tree.FileNode;
import org.eclipse.jface.util.LocalSelectionTransfer;
import org.eclipse.jface.viewers.IStructuredSelection;
import org.eclipse.swt.dnd.DragSourceEvent;
import org.eclipse.swt.dnd.FileTransfer;
import org.eclipse.swt.dnd.Transfer;
import org.eclipse.ui.navigator.CommonDragAdapterAssistant;
/**
* Drag assistant for {@link FileNode} selections in the repositories view
*/
public class RepositoryDragAssistant extends CommonDragAdapterAssistant {
@Override
public Transfer[] getSupportedTransferTypes() {
return new Transfer[] { LocalSelectionTransfer.getTransfer(),
FileTransfer.getInstance() };
}
@Override
public boolean setDragData(final DragSourceEvent event,
final IStructuredSelection selection) {
if (selection == null || selection.isEmpty())
return false;
if (LocalSelectionTransfer.getTransfer()
.isSupportedType(event.dataType)) {
LocalSelectionTransfer.getTransfer().setSelection(selection);
return true;
}
if (FileTransfer.getInstance().isSupportedType(event.dataType)) {
final List<String> files = new ArrayList<>();
for (Object selected : selection.toList())
if (selected instanceof FileNode) {
File file = ((FileNode) selected).getObject();
if (file != null && file.exists())
files.add(file.getAbsolutePath());
}
event.data = files.toArray(new String[0]);
return !files.isEmpty();
}
return false;
}
@Override
public void dragFinished(final DragSourceEvent event,
final IStructuredSelection selection) {
if (LocalSelectionTransfer.getTransfer()
.isSupportedType(event.dataType))
LocalSelectionTransfer.getTransfer().setSelection(selection);
}
}