mirror of
https://github.com/sparrowwallet/sparrow.git
synced 2024-11-05 05:46:44 +00:00
enable pasting a string into send to many spreadsheet using pre-editing cell context menu
This commit is contained in:
parent
b1e715b272
commit
472fccc788
1 changed files with 14 additions and 1 deletions
|
@ -14,6 +14,7 @@ import javafx.scene.Node;
|
||||||
import javafx.scene.control.*;
|
import javafx.scene.control.*;
|
||||||
import javafx.scene.image.Image;
|
import javafx.scene.image.Image;
|
||||||
import javafx.scene.image.ImageView;
|
import javafx.scene.image.ImageView;
|
||||||
|
import javafx.scene.input.Clipboard;
|
||||||
import javafx.scene.layout.StackPane;
|
import javafx.scene.layout.StackPane;
|
||||||
import javafx.stage.FileChooser;
|
import javafx.stage.FileChooser;
|
||||||
import javafx.util.StringConverter;
|
import javafx.util.StringConverter;
|
||||||
|
@ -47,7 +48,19 @@ public class SendToManyDialog extends Dialog<List<Payment>> {
|
||||||
List<Payment> initialPayments = IntStream.range(0, 100).mapToObj(i -> new Payment(null, null, -1, false)).collect(Collectors.toList());
|
List<Payment> initialPayments = IntStream.range(0, 100).mapToObj(i -> new Payment(null, null, -1, false)).collect(Collectors.toList());
|
||||||
Grid grid = getGrid(initialPayments);
|
Grid grid = getGrid(initialPayments);
|
||||||
|
|
||||||
spreadsheetView = new SpreadsheetView(grid);
|
spreadsheetView = new SpreadsheetView(grid) {
|
||||||
|
@Override
|
||||||
|
public void pasteClipboard() {
|
||||||
|
final Clipboard clipboard = Clipboard.getSystemClipboard();
|
||||||
|
if(clipboard.hasString()) {
|
||||||
|
final TablePosition<?,?> tp = getSelectionModel().getFocusedCell();
|
||||||
|
SpreadsheetCell cell = getGrid().getRows().get(tp.getRow()).get(tp.getColumn());
|
||||||
|
getGrid().setCellValue(cell.getRow(), cell.getColumn(), cell.getCellType().convertValue(clipboard.getString()));
|
||||||
|
} else {
|
||||||
|
super.pasteClipboard();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
spreadsheetView.getColumns().get(0).setPrefWidth(400);
|
spreadsheetView.getColumns().get(0).setPrefWidth(400);
|
||||||
spreadsheetView.getColumns().get(1).setPrefWidth(150);
|
spreadsheetView.getColumns().get(1).setPrefWidth(150);
|
||||||
spreadsheetView.getColumns().get(2).setPrefWidth(247);
|
spreadsheetView.getColumns().get(2).setPrefWidth(247);
|
||||||
|
|
Loading…
Reference in a new issue