-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathReport.fxml
63 lines (60 loc) · 3.05 KB
/
Report.fxml
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
<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.scene.text.*?>
<?import java.lang.*?>
<?import javafx.scene.control.*?>
<?import javafx.scene.layout.*?>
<?import javafx.scene.layout.AnchorPane?>
<AnchorPane prefHeight="311.0" prefWidth="338.0" xmlns:fx="http://javafx.com/fxml/1" xmlns="http://javafx.com/javafx/8" fx:controller="healthcareLook.ReportWindowController">
<children>
<ScrollPane prefHeight="397.0" prefWidth="614.0">
<content>
<Pane prefHeight="397.0" prefWidth="605.0">
<children>
<Label alignment="CENTER" layoutX="198.0" layoutY="14.0" prefHeight="40.0" prefWidth="210.0" text="Records">
<font>
<Font name="Times New Roman Bold" size="20.0" />
</font>
</Label>
<Label layoutX="59.0" layoutY="54.0" prefHeight="40.0" prefWidth="110.0" text="Doctor List">
<font>
<Font name="Times New Roman Bold" size="17.0" />
</font>
</Label>
<Label layoutX="423.0" layoutY="54.0" prefHeight="40.0" prefWidth="150.0" text="Patient List">
<font>
<Font name="Times New Roman Bold" size="17.0" />
</font>
</Label>
<Label layoutX="221.0" layoutY="94.0" prefHeight="40.0" prefWidth="103.0" text="# of Patients">
<font>
<Font name="Times New Roman Bold" size="17.0" />
</font>
</Label>
<Label fx:id="docCount" layoutX="236.0" layoutY="134.0" prefHeight="40.0" prefWidth="88.0" text="label">
<font>
<Font name="Times New Roman Bold" size="17.0" />
</font>
</Label>
<Label fx:id="patCount" layoutX="237.0" layoutY="234.0" prefHeight="40.0" prefWidth="84.0" text="Label">
<font>
<Font name="Times New Roman Bold" size="17.0" />
</font>
</Label>
<Label layoutX="221.0" layoutY="194.0" prefHeight="40.0" prefWidth="131.0" text="# of patient visits">
<font>
<Font name="Times New Roman Bold" size="17.0" />
</font>
</Label>
<ListView fx:id="docList" layoutX="14.0" layoutY="94.0" prefHeight="200.0" prefWidth="200.0" />
<ListView fx:id="patList" layoutX="373.0" layoutY="94.0" prefHeight="200.0" prefWidth="200.0" />
<Button fx:id="save" layoutX="472.0" layoutY="334.0" mnemonicParsing="false" prefHeight="39.0" prefWidth="90.0" text="Save">
<font>
<Font name="Times New Roman Bold" size="16.0" />
</font>
</Button>
</children>
</Pane>
</content>
</ScrollPane>
</children>
</AnchorPane>