perfin/src/main/resources/main-view.fxml

45 lines
1.7 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.scene.control.*?>
<?import javafx.scene.layout.*?>
<?import javafx.scene.text.TextFlow?>
<?import javafx.scene.text.Text?>
<BorderPane
xmlns="http://javafx.com/javafx"
xmlns:fx="http://javafx.com/fxml"
fx:id="mainContainer"
fx:controller="com.andrewlalis.perfin.control.MainViewController"
>
<top>
<VBox>
<HBox styleClass="std-padding,std-spacing">
<Button text="Back" onAction="#goBack"/>
<Button text="Forward" onAction="#goForward"/>
<Button text="Accounts" onAction="#goToAccounts"/>
<Button text="Transactions" onAction="#goToTransactions"/>
<Button text="Profiles" onAction="#viewProfiles"/>
<Button text="View Manual" fx:id="showManualButton" onAction="#showManual"/>
<Button text="Hide Manual" fx:id="hideManualButton" onAction="#hideManual"/>
</HBox>
<HBox fx:id="breadcrumbHBox" styleClass="std-spacing,small-font"/>
</VBox>
</top>
<bottom>
<HBox styleClass="std-padding,std-spacing">
<Label text="Perfin Version 1.2.0"/>
</HBox>
</bottom>
<right>
<VBox fx:id="manualVBox" style="-fx-min-width: 400px;" styleClass="padding-extra-1,std-spacing">
<Label text="Perfin User Manual" styleClass="large-font,bold-text"/>
<TextFlow>
<Text>
This manual is your guide on how to properly use Perfin to
manage your personal finances.
</Text>
</TextFlow>
</VBox>
</right>
</BorderPane>