mirror of
https://github.com/sparrowwallet/sparrow.git
synced 2024-11-05 05:46:44 +00:00
add select all button to utxos tab
This commit is contained in:
parent
1ccfc3c042
commit
6931cf7a45
3 changed files with 11 additions and 1 deletions
|
@ -83,6 +83,9 @@ public class UtxosController extends WalletFormController implements Initializab
|
||||||
@FXML
|
@FXML
|
||||||
private Button mixTo;
|
private Button mixTo;
|
||||||
|
|
||||||
|
@FXML
|
||||||
|
private Button selectAll;
|
||||||
|
|
||||||
@FXML
|
@FXML
|
||||||
private Button clear;
|
private Button clear;
|
||||||
|
|
||||||
|
@ -194,6 +197,7 @@ public class UtxosController extends WalletFormController implements Initializab
|
||||||
balance.setValue(walletUtxosEntry.getBalance());
|
balance.setValue(walletUtxosEntry.getBalance());
|
||||||
mempoolBalance.setValue(walletUtxosEntry.getMempoolBalance());
|
mempoolBalance.setValue(walletUtxosEntry.getMempoolBalance());
|
||||||
utxoCount.setText(walletUtxosEntry.getChildren() != null ? Integer.toString(walletUtxosEntry.getChildren().size()) : "0");
|
utxoCount.setText(walletUtxosEntry.getChildren() != null ? Integer.toString(walletUtxosEntry.getChildren().size()) : "0");
|
||||||
|
selectAll.setDisable(walletUtxosEntry.getChildren() == null || walletUtxosEntry.getChildren().size() == 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
private boolean canWalletMix() {
|
private boolean canWalletMix() {
|
||||||
|
@ -203,6 +207,7 @@ public class UtxosController extends WalletFormController implements Initializab
|
||||||
private void updateButtons(BitcoinUnit unit) {
|
private void updateButtons(BitcoinUnit unit) {
|
||||||
List<Entry> selectedEntries = getSelectedEntries();
|
List<Entry> selectedEntries = getSelectedEntries();
|
||||||
|
|
||||||
|
selectAll.setDisable(utxosTable.getRoot().getChildren().size() == utxosTable.getSelectionModel().getSelectedCells().size());
|
||||||
clear.setDisable(selectedEntries.isEmpty());
|
clear.setDisable(selectedEntries.isEmpty());
|
||||||
sendSelected.setDisable(selectedEntries.isEmpty());
|
sendSelected.setDisable(selectedEntries.isEmpty());
|
||||||
mixSelected.setDisable(selectedEntries.isEmpty() || !AppServices.isConnected());
|
mixSelected.setDisable(selectedEntries.isEmpty() || !AppServices.isConnected());
|
||||||
|
@ -374,6 +379,10 @@ public class UtxosController extends WalletFormController implements Initializab
|
||||||
.collect(Collectors.toList());
|
.collect(Collectors.toList());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void selectAll(ActionEvent event) {
|
||||||
|
utxosTable.getSelectionModel().selectAll();
|
||||||
|
}
|
||||||
|
|
||||||
public void clear(ActionEvent event) {
|
public void clear(ActionEvent event) {
|
||||||
utxosTable.getSelectionModel().clearSelection();
|
utxosTable.getSelectionModel().clearSelection();
|
||||||
}
|
}
|
||||||
|
|
|
@ -213,7 +213,7 @@ public class WalletForm {
|
||||||
|
|
||||||
private void updateWallets(Integer blockHeight, Wallet previousWallet) {
|
private void updateWallets(Integer blockHeight, Wallet previousWallet) {
|
||||||
List<WalletNode> nestedHistoryChangedNodes = new ArrayList<>();
|
List<WalletNode> nestedHistoryChangedNodes = new ArrayList<>();
|
||||||
for(Wallet childWallet : wallet.getChildWallets()) {
|
for(Wallet childWallet : new ArrayList<>(wallet.getChildWallets())) {
|
||||||
if(childWallet.isNested()) {
|
if(childWallet.isNested()) {
|
||||||
Wallet previousChildWallet = previousWallet.getChildWallet(childWallet.getName());
|
Wallet previousChildWallet = previousWallet.getChildWallet(childWallet.getName());
|
||||||
if(previousChildWallet != null) {
|
if(previousChildWallet != null) {
|
||||||
|
|
|
@ -83,6 +83,7 @@
|
||||||
</HBox>
|
</HBox>
|
||||||
<Region HBox.hgrow="ALWAYS" />
|
<Region HBox.hgrow="ALWAYS" />
|
||||||
<HBox styleClass="utxos-buttons-box" spacing="20" alignment="BOTTOM_RIGHT">
|
<HBox styleClass="utxos-buttons-box" spacing="20" alignment="BOTTOM_RIGHT">
|
||||||
|
<Button fx:id="selectAll" text="Select All" onAction="#selectAll"/>
|
||||||
<Button fx:id="clear" text="Clear" onAction="#clear"/>
|
<Button fx:id="clear" text="Clear" onAction="#clear"/>
|
||||||
<Button fx:id="mixSelected" text="Mix Selected" graphicTextGap="5" onAction="#mixSelected">
|
<Button fx:id="mixSelected" text="Mix Selected" graphicTextGap="5" onAction="#mixSelected">
|
||||||
<graphic>
|
<graphic>
|
||||||
|
|
Loading…
Reference in a new issue