blob: 0108d45a0fa702179b8fae6b044753e84158bfbf [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2003 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.search.internal.ui;
import java.util.Collections;
import java.util.Iterator;
import org.eclipse.swt.SWTError;
import org.eclipse.swt.dnd.Clipboard;
import org.eclipse.swt.dnd.DND;
import org.eclipse.swt.dnd.TextTransfer;
import org.eclipse.swt.dnd.Transfer;
import org.eclipse.swt.widgets.Shell;
import org.eclipse.jface.action.Action;
import org.eclipse.jface.dialogs.MessageDialog;
import org.eclipse.jface.util.Assert;
import org.eclipse.jface.viewers.ILabelProvider;
import org.eclipse.jface.viewers.ISelection;
import org.eclipse.jface.viewers.IStructuredSelection;
import org.eclipse.jface.viewers.StructuredViewer;
public class CopyToClipboardAction extends Action {
private StructuredViewer fViewer;
public CopyToClipboardAction(StructuredViewer viewer) {
Assert.isNotNull(viewer);
fViewer= viewer;
setText(SearchMessages.getString("CopyToClipboardAction.label")); //$NON-NLS-1$
setToolTipText(SearchMessages.getString("CopyToClipboardAction.tooltip")); //$NON-NLS-1$
}
/*
* Implements method from IAction
*/
public void run() {
Shell shell= SearchPlugin.getActiveWorkbenchShell();
if (shell == null)
return;
ILabelProvider labelProvider= (ILabelProvider)fViewer.getLabelProvider();
String lineDelim= System.getProperty("line.separator"); //$NON-NLS-1$
StringBuffer buf= new StringBuffer();
Iterator iter= getSelection();
while (iter.hasNext()) {
if (buf.length() > 0) {
buf.append(lineDelim);
}
buf.append(labelProvider.getText(iter.next()));
}
if (buf.length() > 0) {
Clipboard clipboard= new Clipboard(shell.getDisplay());
try {
copyToClipbard(clipboard, buf.toString(), shell);
} finally {
clipboard.dispose();
}
}
}
private Iterator getSelection() {
ISelection s= fViewer.getSelection();
if (s instanceof IStructuredSelection)
return ((IStructuredSelection)s).iterator();
return Collections.EMPTY_LIST.iterator();
}
private void copyToClipbard(Clipboard clipboard, String str, Shell shell) {
try {
clipboard.setContents(new String[] { str }, new Transfer[] { TextTransfer.getInstance() });
} catch (SWTError ex) {
if (ex.code != DND.ERROR_CANNOT_SET_CLIPBOARD)
throw ex;
String title= SearchMessages.getString("CopyToClipboardAction.error.title"); //$NON-NLS-1$
String message= SearchMessages.getString("CopyToClipboardAction.error.message"); //$NON-NLS-1$
if (MessageDialog.openQuestion(shell, title, message))
copyToClipbard(clipboard, str, shell);
}
}
}