|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?> |
2 | 2 |
|
| 3 | +<?import javafx.geometry.Insets?> |
3 | 4 | <?import javafx.scene.chart.PieChart?> |
4 | | -<?import javafx.scene.control.Button?> |
5 | 5 | <?import javafx.scene.control.Menu?> |
6 | 6 | <?import javafx.scene.control.MenuBar?> |
7 | 7 | <?import javafx.scene.control.MenuItem?> |
8 | 8 | <?import javafx.scene.control.TableColumn?> |
9 | 9 | <?import javafx.scene.control.TableView?> |
10 | 10 | <?import javafx.scene.layout.AnchorPane?> |
| 11 | +<?import javafx.scene.layout.ColumnConstraints?> |
| 12 | +<?import javafx.scene.layout.GridPane?> |
| 13 | +<?import javafx.scene.layout.RowConstraints?> |
11 | 14 |
|
12 | | -<AnchorPane maxHeight="720.0" maxWidth="1280.0" minHeight="720.0" minWidth="1280.0" onMouseClicked="#onClick" onMouseDragged="#onDrag" onMousePressed="#onPress" prefHeight="720.0" prefWidth="1280.0" stylesheets="@dark.css" xmlns="http://javafx.com/javafx/8.0.111" xmlns:fx="http://javafx.com/fxml/1" fx:controller="drzed.GUI.MainController"> |
| 15 | +<AnchorPane maxHeight="720.0" maxWidth="1280.0" minHeight="720.0" minWidth="1280.0" prefHeight="720.0" prefWidth="1280.0" stylesheets="@dark.css" xmlns="http://javafx.com/javafx/8.0.111" xmlns:fx="http://javafx.com/fxml/1" fx:controller="drzed.GUI.MainController"> |
13 | 16 | <children> |
14 | | - <MenuBar layoutY="2.0" onMouseClicked="#onClick" onMouseDragged="#onDrag" onMousePressed="#onPress" prefHeight="25.0" prefWidth="1079.0" stylesheets="@dark.css" AnchorPane.leftAnchor="0.0" AnchorPane.rightAnchor="0.0" AnchorPane.topAnchor="0.0"> |
15 | | - <menus> |
16 | | - <Menu fx:id="menuD" mnemonicParsing="false" text="File"> |
17 | | - <items> |
18 | | - <MenuItem mnemonicParsing="false" onAction="#openMini" text="Open Mini" /> |
19 | | - <MenuItem mnemonicParsing="false" onAction="#onFile" text="File.." /> |
20 | | - <MenuItem mnemonicParsing="false" onAction="#loadEncounter" text="Open Past Encounter" /> |
21 | | - <MenuItem mnemonicParsing="false" onAction="#closeEncounter" text="Close Encounter" /> |
22 | | - <MenuItem mnemonicParsing="false" onAction="#openStrMode" text="Open Streamer GUI" /> |
23 | | - </items> |
24 | | - </Menu> |
25 | | - </menus> |
26 | | - </MenuBar> |
27 | | - <PieChart fx:id="pieChart" labelLineLength="0.0" labelsVisible="false" layoutX="989.0" layoutY="406.0" legendSide="LEFT" onMouseClicked="#onClick" onMouseDragged="#onDrag" onMousePressed="#onPress" prefHeight="411.0" prefWidth="624.0" title="Top 10 Abilities" AnchorPane.bottomAnchor="-4.0" AnchorPane.rightAnchor="-4.0" /> |
28 | | - <Button mnemonicParsing="false" onAction="#quit" text="Quit" AnchorPane.leftAnchor="1228.0" AnchorPane.rightAnchor="0.0" AnchorPane.topAnchor="0.0" /> |
29 | | - <TableView fx:id="table" layoutY="27.0" onMouseClicked="#onClick" onMouseDragged="#onDrag" onMousePressed="#onPress" prefHeight="287.0" prefWidth="1280.0" stylesheets="@dark.css" AnchorPane.bottomAnchor="406.0" AnchorPane.leftAnchor="0.0" AnchorPane.rightAnchor="0.0" AnchorPane.topAnchor="27.0"> |
30 | | - <columns> |
31 | | - <TableColumn fx:id="nameCol" prefWidth="140.0" text="Name" /> |
32 | | - <TableColumn fx:id="damageCol" prefWidth="130.0" sortType="DESCENDING" text="Damage" /> |
33 | | - <TableColumn fx:id="dpsCol" prefWidth="120.0" sortType="DESCENDING" text="DPS" /> |
34 | | - <TableColumn fx:id="healCol" prefWidth="130.0" sortType="DESCENDING" text="Heal" /> |
35 | | - <TableColumn fx:id="hpscol" prefWidth="120.0" sortType="DESCENDING" text="HPS" /> |
36 | | - <TableColumn fx:id="shieldCol" prefWidth="120.0" sortType="DESCENDING" text="Shield" /> |
37 | | - <TableColumn fx:id="takenCol" prefWidth="120.0" sortType="DESCENDING" text="Taken" /> |
38 | | - <TableColumn fx:id="durationCol" prefWidth="70.0" sortType="DESCENDING" text="Duration" /> |
39 | | - <TableColumn fx:id="hitsCol" prefWidth="70.0" sortType="DESCENDING" text="Hits" /> |
40 | | - <TableColumn fx:id="killCol" prefWidth="45.0" sortType="DESCENDING" text="Kills" /> |
41 | | - <TableColumn fx:id="deathCol" prefWidth="45.0" sortType="DESCENDING" text="Deaths" /> |
42 | | - <TableColumn fx:id="effCol" prefWidth="55.0" sortType="DESCENDING" text="Eff %" /> |
43 | | - </columns> |
44 | | - </TableView> |
45 | | - <TableView fx:id="statsTbl" layoutY="316.0" onMouseClicked="#onClick" onMouseDragged="#onDrag" onMousePressed="#onPress" prefHeight="405.0" prefWidth="662.0" stylesheets="@dark.css" AnchorPane.bottomAnchor="-1.0" AnchorPane.leftAnchor="0.0" AnchorPane.rightAnchor="618.0" AnchorPane.topAnchor="316.0"> |
46 | | - <columns> |
47 | | - <TableColumn fx:id="abilityCol" maxWidth="170.0" minWidth="80.0" prefWidth="130.0" text="Ability" /> |
48 | | - <TableColumn fx:id="damageCol2" maxWidth="160.0" minWidth="80.0" prefWidth="120.0" sortType="DESCENDING" text="Damage" /> |
49 | | - <TableColumn fx:id="dpsCol2" maxWidth="100.0" minWidth="60.0" prefWidth="70.0" sortType="DESCENDING" text="DPH" /> |
50 | | - <TableColumn fx:id="hitsCol2" maxWidth="80.0" minWidth="40.0" prefWidth="50.0" sortType="DESCENDING" text="Hits" /> |
51 | | - <TableColumn fx:id="abilityShareCol" maxWidth="60.0" minWidth="40.0" prefWidth="50.0" sortType="DESCENDING" text="\%" /> |
52 | | - <TableColumn fx:id="typeCol" maxWidth="90.0" minWidth="50.0" prefWidth="60.0" sortType="DESCENDING" text="Type" /> |
53 | | - <TableColumn fx:id="abTaken" maxWidth="120.0" minWidth="60.0" sortType="DESCENDING" text="Taken" /> |
54 | | - <TableColumn fx:id="healCol1" maxWidth="120.0" minWidth="60.0" sortType="DESCENDING" text="Heal" /> |
55 | | - </columns> |
56 | | - </TableView> |
| 17 | + <GridPane layoutX="1.0" layoutY="-104.0" prefHeight="720.0" prefWidth="1280.0" AnchorPane.bottomAnchor="0.0" AnchorPane.leftAnchor="0.0" AnchorPane.rightAnchor="0.0" AnchorPane.topAnchor="0.0"> |
| 18 | + <columnConstraints> |
| 19 | + <ColumnConstraints hgrow="SOMETIMES" maxWidth="1200.0" minWidth="320.0" prefWidth="657.0" /> |
| 20 | + <ColumnConstraints hgrow="SOMETIMES" maxWidth="623.0" minWidth="10.0" prefWidth="600.0" /> |
| 21 | + </columnConstraints> |
| 22 | + <rowConstraints> |
| 23 | + <RowConstraints maxHeight="25.0" minHeight="25.0" prefHeight="25.0" vgrow="SOMETIMES" /> |
| 24 | + <RowConstraints maxHeight="480.0" minHeight="200.0" prefHeight="240.0" vgrow="SOMETIMES" /> |
| 25 | + <RowConstraints maxHeight="600.0" minHeight="320.0" prefHeight="400.0" vgrow="SOMETIMES" /> |
| 26 | + </rowConstraints> |
| 27 | + <children> |
| 28 | + <PieChart fx:id="pieChart" labelLineLength="0.0" labelsVisible="false" legendSide="LEFT" onMouseClicked="#onClick" onMouseDragged="#onDrag" onMousePressed="#onPress" prefHeight="411.0" prefWidth="624.0" title="Top 10 Abilities" GridPane.columnIndex="1" GridPane.rowIndex="2"> |
| 29 | + <padding> |
| 30 | + <Insets bottom="4.0" left="2.0" right="4.0" top="2.0" /> |
| 31 | + </padding> |
| 32 | + <GridPane.margin> |
| 33 | + <Insets bottom="4.0" right="4.0" /> |
| 34 | + </GridPane.margin> |
| 35 | + </PieChart> |
| 36 | + <MenuBar onMouseClicked="#onClick" onMouseDragged="#onDrag" onMousePressed="#onPress" prefHeight="25.0" prefWidth="1079.0" stylesheets="@dark.css" GridPane.columnSpan="2"> |
| 37 | + <menus> |
| 38 | + <Menu fx:id="menuD" mnemonicParsing="false" text="File"> |
| 39 | + <items> |
| 40 | + <MenuItem mnemonicParsing="false" onAction="#openMini" text="Open Mini" /> |
| 41 | + <MenuItem mnemonicParsing="false" onAction="#openStrMode" text="Open Streamer GUI" /> |
| 42 | + <MenuItem mnemonicParsing="false" onAction="#loadEncounter" text="Open Past Encounter" /> |
| 43 | + <MenuItem mnemonicParsing="false" onAction="#closeEncounter" text="Close Encounter" /> |
| 44 | + <MenuItem mnemonicParsing="false" onAction="#close" text="Quit" /> |
| 45 | + </items> |
| 46 | + </Menu> |
| 47 | + </menus> |
| 48 | + </MenuBar> |
| 49 | + <TableView fx:id="table" onMouseClicked="#onClick" onMouseDragged="#onDrag" onMousePressed="#onPress" prefHeight="287.0" prefWidth="1280.0" stylesheets="@dark.css" GridPane.columnSpan="2" GridPane.rowIndex="1"> |
| 50 | + <columns> |
| 51 | + <TableColumn fx:id="nameCol" prefWidth="140.0" text="Name" /> |
| 52 | + <TableColumn fx:id="damageCol" prefWidth="130.0" sortType="DESCENDING" text="Damage" /> |
| 53 | + <TableColumn fx:id="dpsCol" prefWidth="120.0" sortType="DESCENDING" text="DPS" /> |
| 54 | + <TableColumn fx:id="healCol" prefWidth="130.0" sortType="DESCENDING" text="Heal" /> |
| 55 | + <TableColumn fx:id="hpscol" prefWidth="120.0" sortType="DESCENDING" text="HPS" /> |
| 56 | + <TableColumn fx:id="shieldCol" prefWidth="120.0" sortType="DESCENDING" text="Shield" /> |
| 57 | + <TableColumn fx:id="takenCol" prefWidth="120.0" sortType="DESCENDING" text="Taken" /> |
| 58 | + <TableColumn fx:id="durationCol" prefWidth="70.0" sortType="DESCENDING" text="Duration" /> |
| 59 | + <TableColumn fx:id="hitsCol" prefWidth="70.0" sortType="DESCENDING" text="Hits" /> |
| 60 | + <TableColumn fx:id="killCol" prefWidth="45.0" sortType="DESCENDING" text="Kills" /> |
| 61 | + <TableColumn fx:id="deathCol" prefWidth="45.0" sortType="DESCENDING" text="Deaths" /> |
| 62 | + <TableColumn fx:id="effCol" prefWidth="55.0" sortType="DESCENDING" text="Eff %" /> |
| 63 | + </columns> |
| 64 | + <padding> |
| 65 | + <Insets bottom="4.0" left="4.0" right="4.0" top="1.0" /> |
| 66 | + </padding> |
| 67 | + <GridPane.margin> |
| 68 | + <Insets left="4.0" right="4.0" /> |
| 69 | + </GridPane.margin> |
| 70 | + </TableView> |
| 71 | + <TableView fx:id="statsTbl" onMouseClicked="#onClick" onMouseDragged="#onDrag" onMousePressed="#onPress" prefHeight="405.0" prefWidth="662.0" stylesheets="@dark.css" GridPane.rowIndex="2"> |
| 72 | + <columns> |
| 73 | + <TableColumn fx:id="abilityCol" maxWidth="170.0" minWidth="80.0" prefWidth="130.0" text="Ability" /> |
| 74 | + <TableColumn fx:id="damageCol2" maxWidth="160.0" minWidth="80.0" prefWidth="120.0" sortType="DESCENDING" text="Damage" /> |
| 75 | + <TableColumn fx:id="dpsCol2" maxWidth="100.0" minWidth="60.0" prefWidth="70.0" sortType="DESCENDING" text="DPH" /> |
| 76 | + <TableColumn fx:id="hitsCol2" maxWidth="80.0" minWidth="40.0" prefWidth="50.0" sortType="DESCENDING" text="Hits" /> |
| 77 | + <TableColumn fx:id="abilityShareCol" maxWidth="60.0" minWidth="40.0" prefWidth="50.0" sortType="DESCENDING" text="\%" /> |
| 78 | + <TableColumn fx:id="typeCol" maxWidth="90.0" minWidth="50.0" prefWidth="60.0" sortType="DESCENDING" text="Type" /> |
| 79 | + <TableColumn fx:id="abTaken" maxWidth="120.0" minWidth="60.0" sortType="DESCENDING" text="Taken" /> |
| 80 | + <TableColumn fx:id="healCol1" maxWidth="120.0" minWidth="60.0" sortType="DESCENDING" text="Heal" /> |
| 81 | + </columns> |
| 82 | + <padding> |
| 83 | + <Insets bottom="4.0" left="4.0" right="4.0" top="2.0" /> |
| 84 | + </padding> |
| 85 | + <GridPane.margin> |
| 86 | + <Insets bottom="4.0" left="4.0" /> |
| 87 | + </GridPane.margin> |
| 88 | + </TableView> |
| 89 | + </children> |
| 90 | + </GridPane> |
57 | 91 | </children> |
58 | 92 | </AnchorPane> |
0 commit comments