2015-11-28 23:06:14 +01:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
|
|
2015-12-18 12:19:19 +01:00
|
|
|
<?import java.net.*?>
|
2015-11-28 23:06:14 +01:00
|
|
|
<?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>
|
2015-12-18 12:19:19 +01:00
|
|
|
<left>
|
|
|
|
|
</left>
|
|
|
|
|
<stylesheets>
|
|
|
|
|
<URL value="@/ninja/javafx/smartcsv/fx/smartcsv.css" />
|
|
|
|
|
</stylesheets>
|
2015-11-28 23:06:14 +01:00
|
|
|
<bottom>
|
2015-12-18 12:19:19 +01:00
|
|
|
<GridPane hgap="8.0" BorderPane.alignment="CENTER">
|
|
|
|
|
<columnConstraints>
|
|
|
|
|
<ColumnConstraints hgrow="NEVER" minWidth="10.0" />
|
|
|
|
|
<ColumnConstraints hgrow="ALWAYS" minWidth="10.0" prefWidth="100.0" />
|
|
|
|
|
<ColumnConstraints hgrow="NEVER" minWidth="10.0" />
|
|
|
|
|
<ColumnConstraints hgrow="ALWAYS" minWidth="10.0" prefWidth="100.0" />
|
|
|
|
|
<ColumnConstraints hgrow="NEVER" minWidth="10.0" />
|
|
|
|
|
<ColumnConstraints hgrow="ALWAYS" minWidth="10.0" prefWidth="100.0" />
|
|
|
|
|
</columnConstraints>
|
|
|
|
|
<rowConstraints>
|
|
|
|
|
<RowConstraints minHeight="10.0" prefHeight="30.0" vgrow="SOMETIMES" />
|
|
|
|
|
</rowConstraints>
|
2015-11-28 23:06:14 +01:00
|
|
|
<children>
|
2015-12-18 12:19:19 +01:00
|
|
|
<Label text="%stateline.csv" GridPane.hgrow="NEVER" />
|
|
|
|
|
<Label fx:id="csvName" GridPane.columnIndex="1" GridPane.hgrow="ALWAYS" />
|
|
|
|
|
<Label text="%stateline.state" GridPane.columnIndex="2" GridPane.hgrow="NEVER" />
|
|
|
|
|
<Label fx:id="stateName" GridPane.columnIndex="3" GridPane.hgrow="ALWAYS" />
|
|
|
|
|
<Label text="%stateline.configuration" GridPane.columnIndex="4" GridPane.hgrow="NEVER" />
|
|
|
|
|
<Label fx:id="configurationName" GridPane.columnIndex="5" GridPane.hgrow="ALWAYS" />
|
2015-11-28 23:06:14 +01:00
|
|
|
</children>
|
|
|
|
|
<BorderPane.margin>
|
2015-12-18 12:19:19 +01:00
|
|
|
<Insets top="4.0" left="8.0" bottom="4.0" right="8.0" />
|
2015-11-28 23:06:14 +01:00
|
|
|
</BorderPane.margin>
|
2015-12-18 12:19:19 +01:00
|
|
|
</GridPane>
|
2015-11-28 23:06:14 +01:00
|
|
|
</bottom>
|
|
|
|
|
</BorderPane>
|