Craig Raw
5 years ago
17 changed files with 222 additions and 45 deletions
@ -1 +1 @@ |
|||
Subproject commit 1a0880dde7c209d5e00bcfc0541f18b9c1b1100d |
|||
Subproject commit e574a2bfd3ca4e0d65555777a11d9ad4e7f69e16 |
@ -1,46 +1,62 @@ |
|||
<?xml version="1.0" encoding="UTF-8"?> |
|||
|
|||
<?import java.lang.*?> |
|||
<?import java.util.*?> |
|||
<?import javafx.scene.*?> |
|||
<?import javafx.geometry.*?> |
|||
<?import javafx.scene.control.*?> |
|||
<?import javafx.scene.layout.*?> |
|||
<?import tornadofx.control.Form?> |
|||
<?import tornadofx.control.Fieldset?> |
|||
<?import tornadofx.control.Field?> |
|||
<?import javafx.geometry.Insets?> |
|||
<?import org.controlsfx.glyphfont.*?> |
|||
<?import tornadofx.control.*?> |
|||
<?import org.fxmisc.richtext.CodeArea?> |
|||
<?import org.fxmisc.flowless.VirtualizedScrollPane?> |
|||
|
|||
<GridPane alignment="TOP_CENTER" hgap="10.0" prefHeight="500.0" prefWidth="600.0" stylesheets="@input.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.InputController"> |
|||
<GridPane alignment="TOP_CENTER" hgap="10.0" prefHeight="500.0" prefWidth="620.0" stylesheets="@input.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.InputController"> |
|||
<padding> |
|||
<Insets bottom="25.0" left="25.0" right="25.0" top="25.0" /> |
|||
</padding> |
|||
<columnConstraints> |
|||
<ColumnConstraints maxWidth="Infinity" minWidth="290" prefWidth="290"> |
|||
<ColumnConstraints maxWidth="Infinity" minWidth="330" prefWidth="330"> |
|||
</ColumnConstraints> |
|||
<ColumnConstraints maxWidth="Infinity" minWidth="290" prefWidth="290"> |
|||
<ColumnConstraints maxWidth="Infinity" minWidth="330" prefWidth="330"> |
|||
</ColumnConstraints> |
|||
</columnConstraints> |
|||
<rowConstraints> |
|||
<RowConstraints /> |
|||
<RowConstraints /> |
|||
</rowConstraints> |
|||
<Form GridPane.columnIndex="0" GridPane.rowIndex="0"> |
|||
<Fieldset inputGrow="SOMETIMES" text="Inputs"> |
|||
<Field text="Count:"> |
|||
<TextField fx:id="count" editable="false" minWidth="520" prefWidth="520" styleClass="copyable-label" /> |
|||
</Field> |
|||
<Field text="Total:"> |
|||
<TextField fx:id="total" editable="false" minWidth="520" prefWidth="520" styleClass="copyable-label" /> |
|||
<Form GridPane.columnIndex="0" GridPane.columnSpan="2" GridPane.rowIndex="0"> |
|||
<Fieldset fx:id="inputFieldset" inputGrow="SOMETIMES" text="Input"> |
|||
<Field text="Outpoint:"> |
|||
<TextField fx:id="outpoint" editable="false" minWidth="520" prefWidth="520" styleClass="copyable-label, id" /> |
|||
<Button fx:id="outpointSelect" maxWidth="25" minWidth="-Infinity" prefWidth="30" text="Ed"> |
|||
<graphic> |
|||
<Glyph fontFamily="FontAwesome" icon="EDIT" prefWidth="15" /> |
|||
</graphic> |
|||
</Button> |
|||
</Field> |
|||
</Fieldset> |
|||
</Form> |
|||
|
|||
<Form GridPane.columnIndex="1" GridPane.rowIndex="0"> |
|||
<Fieldset inputGrow="SOMETIMES" text="Signatures"> |
|||
<Field text="Status:"> |
|||
<TextField fx:id="signatures" editable="false" minWidth="520" prefWidth="520" styleClass="copyable-label" /> |
|||
<Separator styleClass="form-separator" GridPane.columnIndex="0" GridPane.columnSpan="2" GridPane.rowIndex="1" /> |
|||
|
|||
<Form GridPane.columnIndex="0" GridPane.columnSpan="2" GridPane.rowIndex="2"> |
|||
<Fieldset inputGrow="SOMETIMES" text="Script"> |
|||
<Field text="ScriptSig:"> |
|||
<HBox> |
|||
<VirtualizedScrollPane prefHeight="42"> |
|||
<content> |
|||
<CodeArea fx:id="scriptSig" editable="false" minWidth="520" prefWidth="520" wrapText="true" styleClass="uneditable-codearea" /> |
|||
</content> |
|||
</VirtualizedScrollPane> |
|||
</HBox> |
|||
</Field> |
|||
<Field text="Witness:"> |
|||
<HBox> |
|||
<VirtualizedScrollPane prefHeight="42"> |
|||
<content> |
|||
<CodeArea fx:id="witness" editable="false" minWidth="520" prefWidth="520" wrapText="true" styleClass="uneditable-codearea" /> |
|||
</content> |
|||
</VirtualizedScrollPane> |
|||
</HBox> |
|||
</Field> |
|||
</Fieldset> |
|||
</Form> |
|||
|
|||
<Separator GridPane.columnIndex="0" GridPane.rowIndex="1" GridPane.columnSpan="2" styleClass="form-separator"/> |
|||
</GridPane> |
|||
|
Loading…
Reference in new issue