2015-11-28 23:06:14 +01:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
|
|
|
|
|
|
<?import javafx.geometry.*?>
|
|
|
|
|
<?import javafx.scene.control.*?>
|
|
|
|
|
<?import java.lang.*?>
|
|
|
|
|
<?import javafx.scene.layout.*?>
|
|
|
|
|
<?import java.net.URL?>
|
|
|
|
|
|
|
|
|
|
<BorderPane fx:id="applicationPane" maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="700.0" prefWidth="1000.0" xmlns="http://javafx.com/javafx/8.0.66" xmlns:fx="http://javafx.com/fxml/1">
|
|
|
|
|
<top>
|
|
|
|
|
<VBox prefWidth="100.0" BorderPane.alignment="CENTER">
|
|
|
|
|
<children>
|
|
|
|
|
<MenuBar>
|
|
|
|
|
<menus>
|
2015-12-17 19:55:40 +01:00
|
|
|
<Menu mnemonicParsing="false" text="%menu.file">
|
2015-11-28 23:06:14 +01:00
|
|
|
<items>
|
2015-12-17 19:55:40 +01:00
|
|
|
<MenuItem mnemonicParsing="false" onAction="#openCsv" text="%menu.open.csv" />
|
|
|
|
|
<MenuItem mnemonicParsing="false" onAction="#openConfig" text="%menu.open.config" />
|
|
|
|
|
<SeparatorMenuItem mnemonicParsing="false" />
|
|
|
|
|
<MenuItem mnemonicParsing="false" onAction="#saveCsv" text="%menu.save" />
|
|
|
|
|
<MenuItem mnemonicParsing="false" onAction="#saveAsCsv" text="%menu.save.as" />
|
|
|
|
|
<SeparatorMenuItem mnemonicParsing="false" />
|
|
|
|
|
<MenuItem mnemonicParsing="false" onAction="#close" text="%menu.close" />
|
2015-11-28 23:06:14 +01:00
|
|
|
</items>
|
|
|
|
|
</Menu>
|
2015-12-17 19:55:40 +01:00
|
|
|
<Menu mnemonicParsing="false" text="%menu.help">
|
2015-11-28 23:06:14 +01:00
|
|
|
<items>
|
2015-12-17 19:55:40 +01:00
|
|
|
<MenuItem mnemonicParsing="false" onAction="#about" text="%menu.about" />
|
2015-11-28 23:06:14 +01:00
|
|
|
</items>
|
|
|
|
|
</Menu>
|
|
|
|
|
</menus>
|
|
|
|
|
</MenuBar>
|
|
|
|
|
</children>
|
|
|
|
|
</VBox>
|
|
|
|
|
</top>
|
|
|
|
|
<center>
|
2015-12-07 22:41:59 +01:00
|
|
|
<SplitPane dividerPositions="0.8" prefHeight="160.0" prefWidth="200.0" BorderPane.alignment="CENTER">
|
|
|
|
|
<items>
|
|
|
|
|
<AnchorPane fx:id="tableWrapper">
|
|
|
|
|
<TableView fx:id="tableView" prefHeight="200.0" prefWidth="200.0" AnchorPane.bottomAnchor="0.0" AnchorPane.leftAnchor="0.0" AnchorPane.rightAnchor="0.0" AnchorPane.topAnchor="0.0" BorderPane.alignment="CENTER">
|
|
|
|
|
<columns>
|
|
|
|
|
</columns>
|
|
|
|
|
</TableView>
|
|
|
|
|
</AnchorPane>
|
|
|
|
|
<VBox>
|
|
|
|
|
<children>
|
2015-12-17 19:55:40 +01:00
|
|
|
<Label text="%title.validation.errors">
|
2015-12-07 22:41:59 +01:00
|
|
|
<padding>
|
|
|
|
|
<Insets bottom="8.0" left="8.0" right="8.0" top="8.0" />
|
|
|
|
|
</padding>
|
|
|
|
|
</Label>
|
|
|
|
|
<ListView fx:id="errorList" minWidth="10.0" prefWidth="200.0" VBox.vgrow="ALWAYS" />
|
|
|
|
|
</children>
|
|
|
|
|
</VBox>
|
|
|
|
|
</items>
|
|
|
|
|
</SplitPane>
|
2015-11-28 23:06:14 +01:00
|
|
|
</center>
|
|
|
|
|
<bottom>
|
|
|
|
|
<HBox spacing="8.0" BorderPane.alignment="CENTER">
|
|
|
|
|
<children>
|
|
|
|
|
<Label fx:id="stateline" text="Status" HBox.hgrow="ALWAYS" />
|
|
|
|
|
</children>
|
|
|
|
|
<BorderPane.margin>
|
|
|
|
|
<Insets bottom="4.0" left="4.0" right="4.0" top="4.0" />
|
|
|
|
|
</BorderPane.margin>
|
|
|
|
|
</HBox>
|
|
|
|
|
</bottom>
|
2015-12-07 22:41:59 +01:00
|
|
|
<left>
|
|
|
|
|
</left>
|
2015-11-28 23:06:14 +01:00
|
|
|
</BorderPane>
|