-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDashBoard.fxml
More file actions
73 lines (70 loc) · 3.5 KB
/
DashBoard.fxml
File metadata and controls
73 lines (70 loc) · 3.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.geometry.Insets?>
<?import javafx.scene.control.Button?>
<?import javafx.scene.layout.BorderPane?>
<?import javafx.scene.layout.FlowPane?>
<?import javafx.scene.layout.HBox?>
<?import javafx.scene.layout.VBox?>
<VBox maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="400.0" prefWidth="600.0" xmlns="http://javafx.com/javafx/8.0.171" xmlns:fx="http://javafx.com/fxml/1" fx:controller="View.DashBoard">
<children>
<BorderPane prefHeight="402.0" prefWidth="600.0">
<left>
<VBox prefHeight="420.0" prefWidth="242.0" BorderPane.alignment="CENTER">
<children>
<FlowPane hgap="10.0" prefHeight="300.0" prefWidth="182.0">
<children>
<Button disable="true" mnemonicParsing="false" prefHeight="65.0" prefWidth="110.0" text="Button">
<FlowPane.margin>
<Insets top="10.0" />
</FlowPane.margin>
</Button>
<Button disable="true" mnemonicParsing="false" prefHeight="65.0" prefWidth="110.0" text="Button">
<FlowPane.margin>
<Insets top="10.0" />
</FlowPane.margin>
</Button>
<Button disable="true" mnemonicParsing="false" prefHeight="65.0" prefWidth="110.0" text="Button">
<FlowPane.margin>
<Insets top="10.0" />
</FlowPane.margin>
</Button>
<Button disable="true" mnemonicParsing="false" prefHeight="65.0" prefWidth="110.0" text="Button">
<FlowPane.margin>
<Insets top="10.0" />
</FlowPane.margin>
</Button>
<Button fx:id="ReportButton" mnemonicParsing="false" onAction="#goToReport" prefHeight="65.0" prefWidth="110.0" text="Generate Report">
<FlowPane.margin>
<Insets top="10.0" />
</FlowPane.margin>
</Button>
<Button fx:id="createAfviceButton" mnemonicParsing="false" onAction="#goToCreateAdvice" prefHeight="65.0" prefWidth="110.0" text="Create Advice">
<FlowPane.margin>
<Insets top="10.0" />
</FlowPane.margin>
</Button>
</children>
<VBox.margin>
<Insets left="10.0" />
</VBox.margin>
</FlowPane>
</children>
</VBox>
</left>
<top>
<HBox alignment="CENTER_RIGHT" prefHeight="81.0" prefWidth="590.0" BorderPane.alignment="CENTER">
<children>
<Button fx:id="logOutButton" mnemonicParsing="false" onAction="#logOut" prefHeight="25.0" prefWidth="73.0" text="Log Out">
<HBox.margin>
<Insets />
</HBox.margin>
</Button>
</children>
<BorderPane.margin>
<Insets right="10.0" />
</BorderPane.margin>
</HBox>
</top>
</BorderPane>
</children>
</VBox>