2023-12-24 16:47:38 +00:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
|
|
|
|
<?import javafx.scene.control.*?>
|
2023-12-25 23:31:01 +00:00
|
|
|
<?import javafx.scene.layout.*?>
|
2023-12-24 16:47:38 +00:00
|
|
|
<BorderPane
|
|
|
|
xmlns="http://javafx.com/javafx"
|
|
|
|
xmlns:fx="http://javafx.com/fxml"
|
|
|
|
fx:controller="com.andrewlalis.perfin.control.AccountViewController"
|
2023-12-29 02:31:42 +00:00
|
|
|
stylesheets="@style/account-view.css,@style/base.css"
|
2023-12-24 16:47:38 +00:00
|
|
|
>
|
|
|
|
<top>
|
2023-12-29 02:31:42 +00:00
|
|
|
<HBox styleClass="std-padding,std-spacing">
|
|
|
|
<Label fx:id="titleLabel" styleClass="large-text,bold-text"/>
|
|
|
|
</HBox>
|
2023-12-24 16:47:38 +00:00
|
|
|
</top>
|
|
|
|
<center>
|
2023-12-29 02:31:42 +00:00
|
|
|
<VBox styleClass="std-padding,std-spacing">
|
2023-12-28 17:57:03 +00:00
|
|
|
<HBox>
|
|
|
|
<!-- Main account properties. -->
|
2023-12-28 21:19:21 +00:00
|
|
|
<VBox HBox.hgrow="SOMETIMES" style="-fx-border-color: blue">
|
2023-12-28 17:57:03 +00:00
|
|
|
<VBox styleClass="account-property-box">
|
|
|
|
<Label text="Name"/>
|
|
|
|
<TextField fx:id="accountNameField" editable="false"/>
|
|
|
|
</VBox>
|
|
|
|
<VBox styleClass="account-property-box">
|
|
|
|
<Label text="Number"/>
|
2023-12-29 02:31:42 +00:00
|
|
|
<TextField fx:id="accountNumberField" editable="false" styleClass="mono-font"/>
|
2023-12-28 17:57:03 +00:00
|
|
|
</VBox>
|
|
|
|
<VBox styleClass="account-property-box">
|
|
|
|
<Label text="Currency"/>
|
|
|
|
<TextField fx:id="accountCurrencyField" editable="false"/>
|
|
|
|
</VBox>
|
|
|
|
<VBox styleClass="account-property-box">
|
|
|
|
<Label text="Created At"/>
|
|
|
|
<TextField fx:id="accountCreatedAtField" editable="false"/>
|
|
|
|
</VBox>
|
|
|
|
<VBox styleClass="account-property-box">
|
|
|
|
<Label text="Current Balance"/>
|
|
|
|
<TextField fx:id="accountBalanceField" editable="false"/>
|
|
|
|
</VBox>
|
|
|
|
</VBox>
|
2023-12-28 21:19:21 +00:00
|
|
|
<VBox HBox.hgrow="SOMETIMES" style="-fx-border-color: red">
|
|
|
|
<Label text="Panel 2"/>
|
|
|
|
</VBox>
|
2023-12-28 17:57:03 +00:00
|
|
|
</HBox>
|
2023-12-24 16:47:38 +00:00
|
|
|
</VBox>
|
|
|
|
</center>
|
2023-12-25 23:31:01 +00:00
|
|
|
<right>
|
2023-12-29 02:31:42 +00:00
|
|
|
<VBox styleClass="std-padding,std-spacing">
|
|
|
|
<Label text="Actions" styleClass="bold-text"/>
|
2023-12-26 18:47:27 +00:00
|
|
|
<Button text="Edit" onAction="#goToEditPage"/>
|
2023-12-28 17:57:03 +00:00
|
|
|
<Button text="Archive" onAction="#archiveAccount"/>
|
2023-12-26 18:47:27 +00:00
|
|
|
<Button text="Delete" onAction="#deleteAccount"/>
|
2023-12-25 23:31:01 +00:00
|
|
|
</VBox>
|
|
|
|
</right>
|
2023-12-24 16:47:38 +00:00
|
|
|
</BorderPane>
|