blob: 0bc0a50e1df89eb0fe62ecfeffb559d9fc80e717 [file] [log] [blame]
/*
* Copyright 2000-2009 JetBrains s.r.o.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.intellij.ide.actions;
import com.intellij.ide.IdeBundle;
import com.intellij.openapi.actionSystem.*;
import com.intellij.openapi.ide.CopyPasteManager;
import com.intellij.openapi.project.DumbAware;
import com.intellij.openapi.vfs.VirtualFile;
import java.awt.datatransfer.StringSelection;
public class CopyPathsAction extends AnAction implements DumbAware {
public CopyPathsAction() {
setEnabledInModalContext(true);
}
@Override
public void actionPerformed(AnActionEvent e) {
VirtualFile[] files = CommonDataKeys.VIRTUAL_FILE_ARRAY.getData(e.getDataContext());
if (files != null && files.length > 0) {
CopyPasteManager.getInstance().setContents(new StringSelection(getPaths(files)));
}
}
private static String getPaths(VirtualFile[] files) {
StringBuilder buf = new StringBuilder(files.length * 64);
for (VirtualFile file : files) {
if (buf.length() > 0) buf.append('\n');
buf.append(file.getPresentableUrl());
}
return buf.toString();
}
@Override
public void update(AnActionEvent event) {
VirtualFile[] files = CommonDataKeys.VIRTUAL_FILE_ARRAY.getData(event.getDataContext());
int num = files != null ? files.length : 0;
Presentation presentation = event.getPresentation();
presentation.setEnabled(num > 0);
presentation.setVisible(num > 0 || !ActionPlaces.isPopupPlace(event.getPlace()));
presentation.setText(IdeBundle.message(num == 1 ? "action.copy.path" : "action.copy.paths"));
}
}