rename form package to transaction, refactor class names

This commit is contained in:
Craig Raw 2020-04-01 14:25:48 +02:00
parent 0e7681f7d1
commit ff87ef2aea
34 changed files with 59 additions and 62 deletions

View file

@ -48,15 +48,10 @@ mainClassName = 'com.sparrowwallet.sparrow.MainApp'
jlink { jlink {
mergedModule { mergedModule {
requires 'java.management';
requires 'javafx.graphics'; requires 'javafx.graphics';
requires 'java.naming';
requires 'javafx.controls'; requires 'javafx.controls';
requires 'java.logging';
requires 'java.sql';
requires 'java.xml'; requires 'java.xml';
requires 'javafx.base'; requires 'javafx.base';
requires 'jdk.unsupported';
} }
options = ['--strip-debug', '--compress', '2', '--no-header-files', '--no-man-pages', '--ignore-signing-information'] options = ['--strip-debug', '--compress', '2', '--no-header-files', '--no-man-pages', '--ignore-signing-information']

View file

@ -4,6 +4,7 @@ import com.sparrowwallet.drongo.Utils;
import com.sparrowwallet.drongo.protocol.Transaction; import com.sparrowwallet.drongo.protocol.Transaction;
import com.sparrowwallet.drongo.psbt.PSBT; import com.sparrowwallet.drongo.psbt.PSBT;
import com.sparrowwallet.drongo.psbt.PSBTParseException; import com.sparrowwallet.drongo.psbt.PSBTParseException;
import com.sparrowwallet.sparrow.transaction.TransactionController;
import javafx.event.ActionEvent; import javafx.event.ActionEvent;
import javafx.fxml.FXML; import javafx.fxml.FXML;
import javafx.fxml.FXMLLoader; import javafx.fxml.FXMLLoader;
@ -113,7 +114,7 @@ public class AppController implements Initializable {
try { try {
Tab tab = new Tab(name); Tab tab = new Tab(name);
tab.setClosable(true); tab.setClosable(true);
FXMLLoader transactionLoader = new FXMLLoader(getClass().getResource("transaction.fxml")); FXMLLoader transactionLoader = new FXMLLoader(getClass().getResource("transaction/transaction.fxml"));
tab.setContent(transactionLoader.load()); tab.setContent(transactionLoader.load());
TransactionController controller = transactionLoader.getController(); TransactionController controller = transactionLoader.getController();

View file

@ -1,6 +1,7 @@
package com.sparrowwallet.sparrow; package com.sparrowwallet.sparrow;
import com.sparrowwallet.drongo.protocol.Transaction; import com.sparrowwallet.drongo.protocol.Transaction;
import com.sparrowwallet.sparrow.transaction.TransactionListener;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.List; import java.util.List;

View file

@ -1,8 +1,7 @@
package com.sparrowwallet.sparrow.form; package com.sparrowwallet.sparrow.transaction;
import com.sparrowwallet.drongo.protocol.Transaction; import com.sparrowwallet.drongo.protocol.Transaction;
import com.sparrowwallet.sparrow.EventManager; import com.sparrowwallet.sparrow.EventManager;
import com.sparrowwallet.sparrow.TransactionListener;
import javafx.fxml.FXML; import javafx.fxml.FXML;
import javafx.fxml.Initializable; import javafx.fxml.Initializable;
import javafx.scene.control.*; import javafx.scene.control.*;
@ -14,7 +13,7 @@ import java.net.URL;
import java.time.*; import java.time.*;
import java.util.ResourceBundle; import java.util.ResourceBundle;
public class HeadersController implements Initializable, TransactionListener { public class HeadersController extends TransactionFormController implements Initializable, TransactionListener {
private HeadersForm headersForm; private HeadersForm headersForm;
private static final long MAX_BLOCK_LOCKTIME = 500000000L; private static final long MAX_BLOCK_LOCKTIME = 500000000L;

View file

@ -1,4 +1,4 @@
package com.sparrowwallet.sparrow.form; package com.sparrowwallet.sparrow.transaction;
import com.sparrowwallet.drongo.protocol.Transaction; import com.sparrowwallet.drongo.protocol.Transaction;
import com.sparrowwallet.drongo.psbt.PSBT; import com.sparrowwallet.drongo.psbt.PSBT;
@ -7,7 +7,7 @@ import javafx.scene.Node;
import java.io.IOException; import java.io.IOException;
public class HeadersForm extends Form { public class HeadersForm extends TransactionForm {
private Transaction transaction; private Transaction transaction;
private PSBT psbt; private PSBT psbt;

View file

@ -1,11 +1,11 @@
package com.sparrowwallet.sparrow.form; package com.sparrowwallet.sparrow.transaction;
import javafx.fxml.Initializable; import javafx.fxml.Initializable;
import java.net.URL; import java.net.URL;
import java.util.ResourceBundle; import java.util.ResourceBundle;
public class InputController implements Initializable { public class InputController extends TransactionFormController implements Initializable {
private InputForm inputForm; private InputForm inputForm;
@Override @Override

View file

@ -1,4 +1,4 @@
package com.sparrowwallet.sparrow.form; package com.sparrowwallet.sparrow.transaction;
import com.sparrowwallet.drongo.protocol.TransactionInput; import com.sparrowwallet.drongo.protocol.TransactionInput;
import javafx.fxml.FXMLLoader; import javafx.fxml.FXMLLoader;
@ -6,7 +6,7 @@ import javafx.scene.Node;
import java.io.IOException; import java.io.IOException;
public class InputForm extends Form { public class InputForm extends TransactionForm {
private TransactionInput transactionInput; private TransactionInput transactionInput;
public InputForm(TransactionInput transactionInput) { public InputForm(TransactionInput transactionInput) {

View file

@ -1,4 +1,4 @@
package com.sparrowwallet.sparrow.form; package com.sparrowwallet.sparrow.transaction;
import com.sparrowwallet.drongo.protocol.*; import com.sparrowwallet.drongo.protocol.*;
import com.sparrowwallet.drongo.psbt.PSBTInput; import com.sparrowwallet.drongo.psbt.PSBTInput;
@ -12,7 +12,7 @@ import java.util.ArrayList;
import java.util.List; import java.util.List;
import java.util.ResourceBundle; import java.util.ResourceBundle;
public class InputsController extends FormController implements Initializable { public class InputsController extends TransactionFormController implements Initializable {
private InputsForm inputsForm; private InputsForm inputsForm;
@FXML @FXML

View file

@ -1,4 +1,4 @@
package com.sparrowwallet.sparrow.form; package com.sparrowwallet.sparrow.transaction;
import com.sparrowwallet.drongo.protocol.Transaction; import com.sparrowwallet.drongo.protocol.Transaction;
import com.sparrowwallet.drongo.psbt.PSBT; import com.sparrowwallet.drongo.psbt.PSBT;
@ -7,7 +7,7 @@ import javafx.scene.Node;
import java.io.IOException; import java.io.IOException;
public class InputsForm extends Form { public class InputsForm extends TransactionForm {
private Transaction transaction; private Transaction transaction;
private PSBT psbt; private PSBT psbt;

View file

@ -1,11 +1,11 @@
package com.sparrowwallet.sparrow.form; package com.sparrowwallet.sparrow.transaction;
import javafx.fxml.Initializable; import javafx.fxml.Initializable;
import java.net.URL; import java.net.URL;
import java.util.ResourceBundle; import java.util.ResourceBundle;
public class OutputController implements Initializable { public class OutputController extends TransactionFormController implements Initializable {
private OutputForm outputForm; private OutputForm outputForm;
@Override @Override

View file

@ -1,4 +1,4 @@
package com.sparrowwallet.sparrow.form; package com.sparrowwallet.sparrow.transaction;
import com.sparrowwallet.drongo.protocol.TransactionOutput; import com.sparrowwallet.drongo.protocol.TransactionOutput;
import javafx.fxml.FXMLLoader; import javafx.fxml.FXMLLoader;
@ -6,7 +6,7 @@ import javafx.scene.Node;
import java.io.IOException; import java.io.IOException;
public class OutputForm extends Form { public class OutputForm extends TransactionForm {
private TransactionOutput transactionOutput; private TransactionOutput transactionOutput;
public OutputForm(TransactionOutput transactionOutput) { public OutputForm(TransactionOutput transactionOutput) {

View file

@ -1,4 +1,4 @@
package com.sparrowwallet.sparrow.form; package com.sparrowwallet.sparrow.transaction;
import com.sparrowwallet.drongo.protocol.Transaction; import com.sparrowwallet.drongo.protocol.Transaction;
import com.sparrowwallet.drongo.protocol.TransactionOutput; import com.sparrowwallet.drongo.protocol.TransactionOutput;
@ -10,7 +10,7 @@ import javafx.scene.control.TextField;
import java.net.URL; import java.net.URL;
import java.util.ResourceBundle; import java.util.ResourceBundle;
public class OutputsController extends FormController implements Initializable { public class OutputsController extends TransactionFormController implements Initializable {
private OutputsForm outputsForm; private OutputsForm outputsForm;
@FXML @FXML

View file

@ -1,4 +1,4 @@
package com.sparrowwallet.sparrow.form; package com.sparrowwallet.sparrow.transaction;
import com.sparrowwallet.drongo.protocol.Transaction; import com.sparrowwallet.drongo.protocol.Transaction;
import javafx.fxml.FXMLLoader; import javafx.fxml.FXMLLoader;
@ -6,7 +6,7 @@ import javafx.scene.Node;
import java.io.IOException; import java.io.IOException;
public class OutputsForm extends Form { public class OutputsForm extends TransactionForm {
private Transaction transaction; private Transaction transaction;
public OutputsForm(Transaction transaction) { public OutputsForm(Transaction transaction) {

View file

@ -1,11 +1,11 @@
package com.sparrowwallet.sparrow.form; package com.sparrowwallet.sparrow.transaction;
import javafx.fxml.Initializable; import javafx.fxml.Initializable;
import java.net.URL; import java.net.URL;
import java.util.ResourceBundle; import java.util.ResourceBundle;
public class PartialInputController implements Initializable { public class PartialInputController extends TransactionFormController implements Initializable {
private PartialInputForm partialInputForm; private PartialInputForm partialInputForm;
@Override @Override

View file

@ -1,4 +1,4 @@
package com.sparrowwallet.sparrow.form; package com.sparrowwallet.sparrow.transaction;
import com.sparrowwallet.drongo.psbt.PSBTInput; import com.sparrowwallet.drongo.psbt.PSBTInput;
import javafx.fxml.FXMLLoader; import javafx.fxml.FXMLLoader;
@ -6,7 +6,7 @@ import javafx.scene.Node;
import java.io.IOException; import java.io.IOException;
public class PartialInputForm extends Form { public class PartialInputForm extends TransactionForm {
private PSBTInput psbtInput; private PSBTInput psbtInput;
public PartialInputForm(PSBTInput psbtInput) { public PartialInputForm(PSBTInput psbtInput) {

View file

@ -1,11 +1,11 @@
package com.sparrowwallet.sparrow.form; package com.sparrowwallet.sparrow.transaction;
import javafx.fxml.Initializable; import javafx.fxml.Initializable;
import java.net.URL; import java.net.URL;
import java.util.ResourceBundle; import java.util.ResourceBundle;
public class PartialOutputController implements Initializable { public class PartialOutputController extends TransactionFormController implements Initializable {
private PartialOutputForm partialOutputForm; private PartialOutputForm partialOutputForm;
@Override @Override

View file

@ -1,4 +1,4 @@
package com.sparrowwallet.sparrow.form; package com.sparrowwallet.sparrow.transaction;
import com.sparrowwallet.drongo.psbt.PSBTOutput; import com.sparrowwallet.drongo.psbt.PSBTOutput;
import javafx.fxml.FXMLLoader; import javafx.fxml.FXMLLoader;
@ -6,7 +6,7 @@ import javafx.scene.Node;
import java.io.IOException; import java.io.IOException;
public class PartialOutputForm extends Form { public class PartialOutputForm extends TransactionForm {
private PSBTOutput psbtOutput; private PSBTOutput psbtOutput;
public PartialOutputForm(PSBTOutput psbtOutput) { public PartialOutputForm(PSBTOutput psbtOutput) {

View file

@ -1,9 +1,9 @@
package com.sparrowwallet.sparrow; package com.sparrowwallet.sparrow.transaction;
import com.sparrowwallet.drongo.Utils; import com.sparrowwallet.drongo.Utils;
import com.sparrowwallet.drongo.protocol.*; import com.sparrowwallet.drongo.protocol.*;
import com.sparrowwallet.drongo.psbt.PSBT; import com.sparrowwallet.drongo.psbt.PSBT;
import com.sparrowwallet.sparrow.form.*; import com.sparrowwallet.sparrow.EventManager;
import javafx.fxml.FXML; import javafx.fxml.FXML;
import javafx.fxml.Initializable; import javafx.fxml.Initializable;
import javafx.scene.Node; import javafx.scene.Node;
@ -23,7 +23,7 @@ import java.util.ResourceBundle;
public class TransactionController implements Initializable, TransactionListener { public class TransactionController implements Initializable, TransactionListener {
@FXML @FXML
private TreeView<Form> txtree; private TreeView<TransactionForm> txtree;
@FXML @FXML
private Pane txpane; private Pane txpane;
@ -46,24 +46,24 @@ public class TransactionController implements Initializable, TransactionListener
private void initializeTxTree() { private void initializeTxTree() {
HeadersForm headersForm = new HeadersForm(transaction, psbt); HeadersForm headersForm = new HeadersForm(transaction, psbt);
TreeItem<Form> rootItem = new TreeItem<>(headersForm); TreeItem<TransactionForm> rootItem = new TreeItem<>(headersForm);
rootItem.setExpanded(true); rootItem.setExpanded(true);
InputsForm inputsForm = new InputsForm(transaction, psbt); InputsForm inputsForm = new InputsForm(transaction, psbt);
TreeItem<Form> inputsItem = new TreeItem<>(inputsForm); TreeItem<TransactionForm> inputsItem = new TreeItem<>(inputsForm);
inputsItem.setExpanded(true); inputsItem.setExpanded(true);
for(TransactionInput txInput : transaction.getInputs()) { for(TransactionInput txInput : transaction.getInputs()) {
InputForm inputForm = new InputForm(txInput); InputForm inputForm = new InputForm(txInput);
TreeItem<Form> inputItem = new TreeItem<>(inputForm); TreeItem<TransactionForm> inputItem = new TreeItem<>(inputForm);
inputsItem.getChildren().add(inputItem); inputsItem.getChildren().add(inputItem);
} }
OutputsForm outputsForm = new OutputsForm(transaction); OutputsForm outputsForm = new OutputsForm(transaction);
TreeItem<Form> outputsItem = new TreeItem<>(outputsForm); TreeItem<TransactionForm> outputsItem = new TreeItem<>(outputsForm);
outputsItem.setExpanded(true); outputsItem.setExpanded(true);
for(TransactionOutput txOutput : transaction.getOutputs()) { for(TransactionOutput txOutput : transaction.getOutputs()) {
OutputForm outputForm = new OutputForm(txOutput); OutputForm outputForm = new OutputForm(txOutput);
TreeItem<Form> outputItem = new TreeItem<>(outputForm); TreeItem<TransactionForm> outputItem = new TreeItem<>(outputForm);
outputsItem.getChildren().add(outputItem); outputsItem.getChildren().add(outputItem);
} }
@ -71,22 +71,22 @@ public class TransactionController implements Initializable, TransactionListener
rootItem.getChildren().add(outputsItem); rootItem.getChildren().add(outputsItem);
txtree.setRoot(rootItem); txtree.setRoot(rootItem);
txtree.setCellFactory(p -> new TextFieldTreeCell<>(new StringConverter<Form>(){ txtree.setCellFactory(p -> new TextFieldTreeCell<>(new StringConverter<TransactionForm>(){
@Override @Override
public String toString(Form form) { public String toString(TransactionForm transactionForm) {
return form.toString(); return transactionForm.toString();
} }
@Override @Override
public Form fromString(String string) { public TransactionForm fromString(String string) {
throw new IllegalStateException("No editing"); throw new IllegalStateException("No editing");
} }
})); }));
txtree.getSelectionModel().selectedItemProperty().addListener((observable, old_val, new_val) -> { txtree.getSelectionModel().selectedItemProperty().addListener((observable, old_val, new_val) -> {
Form form = new_val.getValue(); TransactionForm transactionForm = new_val.getValue();
try { try {
Node node = form.getContents(); Node node = transactionForm.getContents();
txpane.getChildren().clear(); txpane.getChildren().clear();
txpane.getChildren().add(node); txpane.getChildren().add(node);

View file

@ -1,9 +1,9 @@
package com.sparrowwallet.sparrow.form; package com.sparrowwallet.sparrow.transaction;
import javafx.scene.Node; import javafx.scene.Node;
import java.io.IOException; import java.io.IOException;
public abstract class Form { public abstract class TransactionForm {
public abstract Node getContents() throws IOException; public abstract Node getContents() throws IOException;
} }

View file

@ -1,4 +1,4 @@
package com.sparrowwallet.sparrow.form; package com.sparrowwallet.sparrow.transaction;
import com.sparrowwallet.drongo.address.Address; import com.sparrowwallet.drongo.address.Address;
import com.sparrowwallet.drongo.protocol.TransactionOutput; import com.sparrowwallet.drongo.protocol.TransactionOutput;
@ -10,7 +10,7 @@ import javafx.scene.control.Tooltip;
import java.util.List; import java.util.List;
public abstract class FormController { public abstract class TransactionFormController {
protected void addPieData(PieChart pie, List<TransactionOutput> outputs) { protected void addPieData(PieChart pie, List<TransactionOutput> outputs) {
ObservableList<PieChart.Data> outputsPieData = FXCollections.observableArrayList(); ObservableList<PieChart.Data> outputsPieData = FXCollections.observableArrayList();

View file

@ -1,4 +1,4 @@
package com.sparrowwallet.sparrow; package com.sparrowwallet.sparrow.transaction;
import com.sparrowwallet.drongo.protocol.Transaction; import com.sparrowwallet.drongo.protocol.Transaction;

View file

@ -4,5 +4,6 @@ open module com.sparrowwallet.sparrow {
requires javafx.fxml; requires javafx.fxml;
requires org.controlsfx.controls; requires org.controlsfx.controls;
requires org.fxmisc.richtext; requires org.fxmisc.richtext;
requires tornadofx.controls;
requires com.sparrowwallet.drongo; requires com.sparrowwallet.drongo;
} }

View file

@ -13,7 +13,7 @@
<?import tornadofx.control.Field?> <?import tornadofx.control.Field?>
<?import org.controlsfx.control.SegmentedButton?> <?import org.controlsfx.control.SegmentedButton?>
<GridPane hgap="10.0" prefHeight="350.0" prefWidth="600.0" vgap="10.0" alignment="TOP_CENTER" xmlns="http://javafx.com/javafx/10.0.2-internal" xmlns:fx="http://javafx.com/fxml/1" fx:controller="com.sparrowwallet.sparrow.form.HeadersController" stylesheets="@headers.css, @../general.css"> <GridPane hgap="10.0" prefHeight="350.0" prefWidth="600.0" vgap="10.0" alignment="TOP_CENTER" xmlns="http://javafx.com/javafx/10.0.2-internal" xmlns:fx="http://javafx.com/fxml/1" fx:controller="com.sparrowwallet.sparrow.transaction.HeadersController" stylesheets="@headers.css, @../general.css">
<padding> <padding>
<Insets bottom="25.0" left="25.0" right="25.0" top="25.0" /> <Insets bottom="25.0" left="25.0" right="25.0" top="25.0" />
</padding> </padding>

View file

@ -8,7 +8,7 @@
<AnchorPane xmlns="http://javafx.com/javafx" <AnchorPane xmlns="http://javafx.com/javafx"
xmlns:fx="http://javafx.com/fxml" xmlns:fx="http://javafx.com/fxml"
fx:controller="com.sparrowwallet.sparrow.form.InputController" fx:controller="com.sparrowwallet.sparrow.transaction.InputController"
prefHeight="400.0" prefWidth="600.0"> prefHeight="400.0" prefWidth="600.0">
</AnchorPane> </AnchorPane>

View file

@ -6,7 +6,7 @@
<?import tornadofx.control.*?> <?import tornadofx.control.*?>
<?import javafx.scene.chart.PieChart?> <?import javafx.scene.chart.PieChart?>
<GridPane alignment="TOP_CENTER" hgap="10.0" prefHeight="500.0" prefWidth="600.0" stylesheets="@inputs.css, @../general.css" vgap="10.0" xmlns="http://javafx.com/javafx/10.0.2-internal" xmlns:fx="http://javafx.com/fxml/1" fx:controller="com.sparrowwallet.sparrow.form.InputsController"> <GridPane alignment="TOP_CENTER" hgap="10.0" prefHeight="500.0" prefWidth="600.0" stylesheets="@inputs.css, @../general.css" vgap="10.0" xmlns="http://javafx.com/javafx/10.0.2-internal" xmlns:fx="http://javafx.com/fxml/1" fx:controller="com.sparrowwallet.sparrow.transaction.InputsController">
<padding> <padding>
<Insets bottom="25.0" left="25.0" right="25.0" top="25.0" /> <Insets bottom="25.0" left="25.0" right="25.0" top="25.0" />
</padding> </padding>

View file

@ -8,7 +8,7 @@
<AnchorPane xmlns="http://javafx.com/javafx" <AnchorPane xmlns="http://javafx.com/javafx"
xmlns:fx="http://javafx.com/fxml" xmlns:fx="http://javafx.com/fxml"
fx:controller="com.sparrowwallet.sparrow.form.OutputController" fx:controller="com.sparrowwallet.sparrow.transaction.OutputController"
prefHeight="400.0" prefWidth="600.0"> prefHeight="400.0" prefWidth="600.0">
</AnchorPane> </AnchorPane>

View file

@ -6,7 +6,7 @@
<?import tornadofx.control.*?> <?import tornadofx.control.*?>
<?import javafx.scene.chart.PieChart?> <?import javafx.scene.chart.PieChart?>
<GridPane alignment="TOP_CENTER" hgap="10.0" prefHeight="500.0" prefWidth="600.0" stylesheets="@outputs.css, @../general.css" vgap="10.0" xmlns="http://javafx.com/javafx/10.0.2-internal" xmlns:fx="http://javafx.com/fxml/1" fx:controller="com.sparrowwallet.sparrow.form.OutputsController"> <GridPane alignment="TOP_CENTER" hgap="10.0" prefHeight="500.0" prefWidth="600.0" stylesheets="@outputs.css, @../general.css" vgap="10.0" xmlns="http://javafx.com/javafx/10.0.2-internal" xmlns:fx="http://javafx.com/fxml/1" fx:controller="com.sparrowwallet.sparrow.transaction.OutputsController">
<padding> <padding>
<Insets bottom="25.0" left="25.0" right="25.0" top="25.0" /> <Insets bottom="25.0" left="25.0" right="25.0" top="25.0" />
</padding> </padding>

View file

@ -8,7 +8,7 @@
<AnchorPane xmlns="http://javafx.com/javafx" <AnchorPane xmlns="http://javafx.com/javafx"
xmlns:fx="http://javafx.com/fxml" xmlns:fx="http://javafx.com/fxml"
fx:controller="com.sparrowwallet.sparrow.form.PartialInputController" fx:controller="com.sparrowwallet.sparrow.transaction.PartialInputController"
prefHeight="400.0" prefWidth="600.0"> prefHeight="400.0" prefWidth="600.0">
</AnchorPane> </AnchorPane>

View file

@ -8,7 +8,7 @@
<AnchorPane xmlns="http://javafx.com/javafx" <AnchorPane xmlns="http://javafx.com/javafx"
xmlns:fx="http://javafx.com/fxml" xmlns:fx="http://javafx.com/fxml"
fx:controller="com.sparrowwallet.sparrow.form.PartialOutputController" fx:controller="com.sparrowwallet.sparrow.transaction.PartialOutputController"
prefHeight="400.0" prefWidth="600.0"> prefHeight="400.0" prefWidth="600.0">
</AnchorPane> </AnchorPane>

View file

@ -5,7 +5,7 @@
<?import org.fxmisc.richtext.*?> <?import org.fxmisc.richtext.*?>
<?import org.fxmisc.flowless.VirtualizedScrollPane?> <?import org.fxmisc.flowless.VirtualizedScrollPane?>
<SplitPane dividerPositions="0.82" orientation="VERTICAL" prefHeight="200.0" prefWidth="160.0" stylesheets="@transaction.css" VBox.vgrow="ALWAYS" xmlns="http://javafx.com/javafx/10.0.2-internal" xmlns:fx="http://javafx.com/fxml/1" fx:controller="com.sparrowwallet.sparrow.TransactionController"> <SplitPane dividerPositions="0.82" orientation="VERTICAL" prefHeight="200.0" prefWidth="160.0" stylesheets="@transaction.css" VBox.vgrow="ALWAYS" xmlns="http://javafx.com/javafx/10.0.2-internal" xmlns:fx="http://javafx.com/fxml/1" fx:controller="com.sparrowwallet.sparrow.transaction.TransactionController">
<items> <items>
<SplitPane dividerPositions="0.2" prefHeight="160.0" prefWidth="200.0"> <SplitPane dividerPositions="0.2" prefHeight="160.0" prefWidth="200.0">
<items> <items>