mosaik/out/production/test/com/company/sample.fxml

87 lines
4.0 KiB
Plaintext
Raw Normal View History

<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.geometry.Insets?>
<?import javafx.scene.control.Button?>
<?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.111" xmlns:fx="http://javafx.com/fxml/1">
<center>
<HBox fillHeight="false" maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="400.0" prefWidth="800.0" BorderPane.alignment="CENTER">
<children>
<ImageView id="image1" fitHeight="400.0" fitWidth="400.0" pickOnBounds="true" preserveRatio="true" />
<ImageView id="image2" fitHeight="400.0" fitWidth="400.0" pickOnBounds="true" preserveRatio="true" />
</children>
</HBox>
</center>
<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" prefWidth="87.0" promptText="Rows">
<VBox.margin>
<Insets top="5.0" />
</VBox.margin>
</TextField>
<TextField id="cols" promptText="Columns">
<VBox.margin>
<Insets top="5.0" />
</VBox.margin>
</TextField>
</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 top="5.0" />
</VBox.margin>
<padding>
<Insets left="20.0" />
</padding>
</ProgressBar>
<Button id="run" mnemonicParsing="false" prefHeight="32.0" prefWidth="160.0" text="Run replacement">
<VBox.margin>
<Insets left="20.0" top="5.0" />
</VBox.margin>
</Button>
<Button id="save" mnemonicParsing="false" prefHeight="32.0" prefWidth="160.0" text="Save File">
<VBox.margin>
<Insets left="20.0" top="5.0" />
</VBox.margin>
</Button>
</children>
</VBox>
<TextFlow id="log" prefHeight="200.0" prefWidth="200.0">
<opaqueInsets>
<Insets />
</opaqueInsets>
<HBox.margin>
<Insets left="85.0" />
</HBox.margin>
</TextFlow>
</children>
</HBox>
</bottom>
</BorderPane>