use of java.awt.datatransfer.StringSelection in project vectalign by bonnyfone.
the class Utils method copyToClipboard.
public static void copyToClipboard(String data) {
Clipboard clpbrd = Toolkit.getDefaultToolkit().getSystemClipboard();
clpbrd.setContents(new StringSelection(data), null);
}
use of java.awt.datatransfer.StringSelection in project smile by haifengl.
the class TableCopyPasteAdapter method actionPerformed.
/**
* This method is activated on the Keystrokes we are listening to in this
* implementation. Here it listens for Copy and Paste ActionCommands.
* Selections comprising non-adjacent cells result in invalid selection and
* then copy action cannot be performed. Paste is done by aligning the upper
* left corner of the selection with the 1st element in the current
* selection of the JTable.
*/
@Override
public void actionPerformed(ActionEvent e) {
if (e.getActionCommand().compareTo("Copy") == 0) {
StringBuilder sbf = new StringBuilder();
// Check to ensure we have selected only a contiguous block of
// cells
int numcols = table.getSelectedColumnCount();
int numrows = table.getSelectedRowCount();
int[] rowsselected = table.getSelectedRows();
int[] colsselected = table.getSelectedColumns();
if (!((numrows - 1 == rowsselected[rowsselected.length - 1] - rowsselected[0] && numrows == rowsselected.length) && (numcols - 1 == colsselected[colsselected.length - 1] - colsselected[0] && numcols == colsselected.length))) {
JOptionPane.showMessageDialog(null, "Invalid Copy Selection", "Invalid Copy Selection", JOptionPane.ERROR_MESSAGE);
return;
}
for (int i = 0; i < numrows; i++) {
for (int j = 0; j < numcols; j++) {
sbf.append(table.getValueAt(rowsselected[i], colsselected[j]));
if (j < numcols - 1) {
sbf.append("\t");
}
}
sbf.append("\n");
}
stsel = new StringSelection(sbf.toString());
system = Toolkit.getDefaultToolkit().getSystemClipboard();
system.setContents(stsel, stsel);
}
if (e.getActionCommand().compareTo("Paste") == 0) {
LOGGER.log(Level.FINE, "Trying to Paste");
int startRow = (table.getSelectedRows())[0];
int startCol = (table.getSelectedColumns())[0];
try {
String trstring = (String) (system.getContents(this).getTransferData(DataFlavor.stringFlavor));
StringTokenizer st1 = new StringTokenizer(trstring, "\n");
for (int i = 0; st1.hasMoreTokens(); i++) {
rowstring = st1.nextToken();
StringTokenizer st2 = new StringTokenizer(rowstring, "\t");
for (int j = 0; st2.hasMoreTokens(); j++) {
value = (String) st2.nextToken();
if (startRow + i < table.getRowCount() && startCol + j < table.getColumnCount()) {
table.setValueAt(value, startRow + i, startCol + j);
}
}
}
} catch (Exception ex) {
}
}
}
use of java.awt.datatransfer.StringSelection in project intellij-community by JetBrains.
the class OpenUrlHyperlinkInfo method getPopupMenuGroup.
@Override
public ActionGroup getPopupMenuGroup(@NotNull MouseEvent event) {
DefaultActionGroup group = new DefaultActionGroup();
for (final WebBrowser browser : WebBrowserManager.getInstance().getActiveBrowsers()) {
if (browserCondition.value(browser)) {
group.add(new AnAction("Open in " + browser.getName(), "Open URL in " + browser.getName(), browser.getIcon()) {
@Override
public void actionPerformed(AnActionEvent e) {
BrowserLauncher.getInstance().browse(url, browser, e.getProject());
}
});
}
}
group.add(new AnAction("Copy URL", "Copy URL to clipboard", PlatformIcons.COPY_ICON) {
@Override
public void actionPerformed(AnActionEvent e) {
CopyPasteManager.getInstance().setContents(new StringSelection(url));
}
});
return group;
}
use of java.awt.datatransfer.StringSelection in project intellij-community by JetBrains.
the class HgCachingCommittedChangesProvider method createActions.
public VcsCommittedViewAuxiliary createActions(DecoratorManager decoratorManager, RepositoryLocation repositoryLocation) {
AnAction copyHashAction = new AnAction("Copy &Hash", "Copy hash to clipboard", PlatformIcons.COPY_ICON) {
@Override
public void actionPerformed(AnActionEvent e) {
ChangeList[] changeLists = e.getData(VcsDataKeys.CHANGE_LISTS);
if (changeLists != null && changeLists[0] instanceof HgCommittedChangeList) {
HgRevisionNumber revisionNumber = ((HgCommittedChangeList) changeLists[0]).getRevisionNumber();
CopyPasteManager.getInstance().setContents(new StringSelection(revisionNumber.getChangeset()));
}
}
};
return new VcsCommittedViewAuxiliary(Collections.singletonList(copyHashAction), new Runnable() {
public void run() {
}
}, Collections.singletonList(copyHashAction));
}
use of java.awt.datatransfer.StringSelection in project zaproxy by zaproxy.
the class PopupMenuCopyUrls method performHistoryReferenceActions.
@Override
protected void performHistoryReferenceActions(List<HistoryReference> hrefs) {
StringBuilder sb = new StringBuilder();
for (HistoryReference href : hrefs) {
sb.append(href.getURI().toString());
sb.append("\n");
}
Clipboard clipboard = Toolkit.getDefaultToolkit().getSystemClipboard();
clipboard.setContents(new StringSelection(sb.toString()), this);
}
Aggregations