41 lines
2.4 KiB
XML
41 lines
2.4 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<?import javafx.scene.control.*?>
|
|
<?import javafx.scene.image.ImageView?>
|
|
<?import javafx.scene.layout.*?>
|
|
<Pane xmlns:fx="http://javafx.com/fxml/1" fx:id="pane" xmlns="http://javafx.com/javafx/8" fx:controller="GUI.UploadCtl">
|
|
<GridPane fx:id="grid" alignment="CENTER" prefHeight="400.0" prefWidth="600.0">
|
|
<columnConstraints>
|
|
<ColumnConstraints hgrow="SOMETIMES" minWidth="10.0" prefWidth="100.0"/>
|
|
<ColumnConstraints hgrow="SOMETIMES" minWidth="10.0" prefWidth="100.0"/>
|
|
<ColumnConstraints hgrow="SOMETIMES" minWidth="10.0" prefWidth="100.0"/>
|
|
</columnConstraints>
|
|
<rowConstraints>
|
|
<RowConstraints minHeight="10.0" prefHeight="30.0" vgrow="SOMETIMES"/>
|
|
<RowConstraints minHeight="10.0" prefHeight="30.0" vgrow="SOMETIMES"/>
|
|
<RowConstraints minHeight="10.0" prefHeight="30.0" vgrow="SOMETIMES"/>
|
|
<RowConstraints minHeight="10.0" prefHeight="30.0" vgrow="SOMETIMES"/>
|
|
</rowConstraints>
|
|
<ProgressBar fx:id="folderProgressBar" prefWidth="200.0" progress="0.0" GridPane.columnIndex="1"
|
|
GridPane.rowIndex="2"/>
|
|
<ProgressBar fx:id="pictureProgressBar" prefWidth="200.0" progress="0.0" GridPane.columnIndex="1"
|
|
GridPane.rowIndex="1"/>
|
|
<ProgressBar fx:id="cleanProgressBar" prefWidth="200.0" progress="0.0" GridPane.columnIndex="1"
|
|
GridPane.rowIndex="3"/>
|
|
<ImageView fx:id="folderImageView" fitHeight="100" fitWidth="100.0" pickOnBounds="true" preserveRatio="true"
|
|
GridPane.rowIndex="1">
|
|
</ImageView>
|
|
<ImageView fx:id="pictureImageView" fitHeight="100.0" fitWidth="100.0" pickOnBounds="true"
|
|
preserveRatio="true"
|
|
GridPane.rowIndex="2">
|
|
</ImageView>
|
|
<ImageView fx:id="cleanImageView" fitHeight="100.0" fitWidth="100" pickOnBounds="true" preserveRatio="true"
|
|
GridPane.rowIndex="3">
|
|
</ImageView>
|
|
<Label fx:id="headLabel" text="Uploading..." GridPane.columnIndex="1"/>
|
|
<Label fx:id="folderLabel" text="Folders" GridPane.columnIndex="2" GridPane.rowIndex="1"/>
|
|
<Label fx:id="picLabel" text="Pictures" GridPane.columnIndex="2" GridPane.rowIndex="2"/>
|
|
<Label fx:id="cleanLabel" text="Clean up" GridPane.columnIndex="2" GridPane.rowIndex="3"/>
|
|
</GridPane>
|
|
</Pane>
|