mirror of https://github.com/Askill/mosaik.git
81 lines
3.9 KiB
XML
81 lines
3.9 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<?import javafx.geometry.Insets?>
|
|
<?import javafx.scene.control.Button?>
|
|
<?import javafx.scene.control.CheckBox?>
|
|
<?import javafx.scene.control.ProgressBar?>
|
|
<?import javafx.scene.control.TextField?>
|
|
<?import javafx.scene.image.ImageView?>
|
|
<?import javafx.scene.layout.BorderPane?>
|
|
<?import javafx.scene.layout.HBox?>
|
|
<?import javafx.scene.layout.VBox?>
|
|
<?import javafx.scene.text.TextFlow?>
|
|
|
|
<BorderPane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="600.0" prefWidth="800.0" xmlns="http://javafx.com/javafx/8.0.141" xmlns:fx="http://javafx.com/fxml/1">
|
|
<bottom>
|
|
<HBox maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="200.0" prefWidth="800.0" BorderPane.alignment="CENTER">
|
|
<children>
|
|
<VBox prefHeight="200.0" prefWidth="150.0">
|
|
<children>
|
|
<Button id="picture" mnemonicParsing="false" prefHeight="31.0" prefWidth="105.0" text="picture">
|
|
<VBox.margin>
|
|
<Insets left="20.0" top="5.0" />
|
|
</VBox.margin>
|
|
</Button>
|
|
<Button id="replacements" maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" mnemonicParsing="false" prefHeight="31.0" prefWidth="105.0" text="replacement">
|
|
<VBox.margin>
|
|
<Insets left="20.0" top="5.0" />
|
|
</VBox.margin>
|
|
</Button>
|
|
</children>
|
|
</VBox>
|
|
<VBox prefHeight="200.0" prefWidth="150.0">
|
|
<children>
|
|
<TextField id="rows" prefHeight="31.0" promptText="Rows">
|
|
<VBox.margin>
|
|
<Insets left="5.0" top="5.0" />
|
|
</VBox.margin>
|
|
</TextField>
|
|
<TextField id="cols" maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="31.0" promptText="Columns">
|
|
<VBox.margin>
|
|
<Insets left="5.0" top="5.0" />
|
|
</VBox.margin>
|
|
</TextField>
|
|
<CheckBox id="scale" mnemonicParsing="false" text="scale images">
|
|
<VBox.margin>
|
|
<Insets left="5.0" top="5.0" />
|
|
</VBox.margin>
|
|
</CheckBox>
|
|
</children>
|
|
</VBox>
|
|
<VBox prefHeight="200.0" prefWidth="200.0">
|
|
<children>
|
|
<ProgressBar id="progress" minHeight="-Infinity" minWidth="-Infinity" prefHeight="31.0" prefWidth="180.0" progress="0.0">
|
|
<VBox.margin>
|
|
<Insets left="5.0" top="5.0" />
|
|
</VBox.margin>
|
|
</ProgressBar>
|
|
<Button id="run" mnemonicParsing="false" prefHeight="32.0" prefWidth="180.0" text="Run replacement">
|
|
<VBox.margin>
|
|
<Insets left="5.0" top="5.0" />
|
|
</VBox.margin>
|
|
</Button>
|
|
<Button id="save" mnemonicParsing="false" prefHeight="32.0" prefWidth="180.0" text="Save File">
|
|
<VBox.margin>
|
|
<Insets left="5.0" top="5.0" />
|
|
</VBox.margin>
|
|
</Button>
|
|
</children>
|
|
</VBox>
|
|
<TextFlow id="log" prefHeight="200.0" />
|
|
</children>
|
|
</HBox>
|
|
</bottom>
|
|
<left>
|
|
<ImageView id="image1" fitHeight="400.0" fitWidth="400.0" pickOnBounds="true" preserveRatio="true" BorderPane.alignment="CENTER" />
|
|
</left>
|
|
<right>
|
|
<ImageView id="image2" fitHeight="400.0" fitWidth="400.0" pickOnBounds="true" preserveRatio="true" BorderPane.alignment="CENTER" />
|
|
</right>
|
|
</BorderPane>
|