Craig Raw
4 years ago
10 changed files with 96 additions and 5 deletions
Binary file not shown.
@ -0,0 +1,16 @@ |
|||
package com.sparrowwallet.sparrow; |
|||
|
|||
import javafx.event.ActionEvent; |
|||
import javafx.stage.Stage; |
|||
|
|||
public class AboutController { |
|||
private Stage stage; |
|||
|
|||
public void setStage(Stage stage) { |
|||
this.stage = stage; |
|||
} |
|||
|
|||
public void close(ActionEvent event) { |
|||
stage.close(); |
|||
} |
|||
} |
Binary file not shown.
@ -0,0 +1,15 @@ |
|||
.title-area { |
|||
-fx-background-color: -fx-control-inner-background; |
|||
-fx-padding: 10 25 10 25; |
|||
-fx-border-width: 0px 0px 1px 0px; |
|||
-fx-border-color: #e5e5e6; |
|||
} |
|||
|
|||
.title-label { |
|||
-fx-font-size: 20px; |
|||
} |
|||
|
|||
.content-area, .button-area { |
|||
-fx-padding: 10 25 25 25; |
|||
} |
|||
|
@ -0,0 +1,31 @@ |
|||
<?xml version="1.0" encoding="UTF-8"?> |
|||
|
|||
<?import java.lang.*?> |
|||
<?import java.util.*?> |
|||
<?import javafx.scene.*?> |
|||
<?import javafx.scene.control.*?> |
|||
<?import javafx.scene.layout.*?> |
|||
|
|||
<?import javafx.scene.image.ImageView?> |
|||
<?import javafx.scene.image.Image?> |
|||
<StackPane prefHeight="420.0" prefWidth="600.0" stylesheets="@about.css" fx:controller="com.sparrowwallet.sparrow.AboutController" xmlns="http://javafx.com/javafx" xmlns:fx="http://javafx.com/fxml"> |
|||
<VBox spacing="20"> |
|||
<HBox styleClass="title-area"> |
|||
<HBox alignment="CENTER_LEFT"> |
|||
<Label text="Sparrow 0.9.1" styleClass="title-label" /> |
|||
</HBox> |
|||
<Region HBox.hgrow="ALWAYS"/> |
|||
<ImageView AnchorPane.rightAnchor="0"> |
|||
<Image url="/image/sparrow-small.png" requestedWidth="50" requestedHeight="50" smooth="false" /> |
|||
</ImageView> |
|||
</HBox> |
|||
<VBox spacing="10" styleClass="content-area"> |
|||
<Label text="Sparrow is a Bitcoin wallet with the goal of providing greater transparency and usability on the path to full financial self sovereignty. It attempts to provide all of the detail about your wallet setup, transactions and UTXOs so that you can transact will a full understanding of your money." wrapText="true" /> |
|||
<Label text="Sparrow can operate in both an online and offline mode. In the online mode it connects to your Electrum server to display transaction history. In the offline mode it is useful as a transaction editor and as an airgapped multisig coordinator." wrapText="true" /> |
|||
<Label text="For privacy and security reasons it is not recommended to use a public Electrum server. Install an Electrum server that connects to your full node to index the blockchain and provide full privacy." wrapText="true" /> |
|||
</VBox> |
|||
<HBox styleClass="button-area" alignment="BOTTOM_RIGHT" VBox.vgrow="SOMETIMES"> |
|||
<Button text="Done" onAction="#close" /> |
|||
</HBox> |
|||
</VBox> |
|||
</StackPane> |
Binary file not shown.
Loading…
Reference in new issue