Skip to content
Snippets Groups Projects
Commit d787f7c5 authored by Tobias Ullerich's avatar Tobias Ullerich
Browse files

Improve layout of launch dialog

parent 938e8d52
No related branches found
No related tags found
No related merge requests found
<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.geometry.Insets?>
<?import javafx.scene.control.*?>
<?import javafx.scene.image.ImageView?>
<?import javafx.scene.layout.*?>
<?import javafx.scene.text.Font?>
<AnchorPane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="345.0"
prefWidth="640.0" xmlns="http://javafx.com/javafx/8" xmlns:fx="http://javafx.com/fxml/1">
<HBox xmlns="http://javafx.com/javafx/8.0.141" xmlns:fx="http://javafx.com/fxml/1">
<children>
<VBox alignment="CENTER" layoutX="24.0" layoutY="5.0" spacing="7.0" AnchorPane.bottomAnchor="14.0"
AnchorPane.leftAnchor="34.0" AnchorPane.topAnchor="14.0">
<VBox alignment="CENTER" prefHeight="389.0" prefWidth="346.0" spacing="7.0">
<children>
<ImageView fx:id="imageView" fitHeight="144.0" fitWidth="140.0" layoutX="80.0" layoutY="14.0"
pickOnBounds="true" preserveRatio="true"/>
<Label fx:id="infoLabel" alignment="CENTER" layoutX="24.0" layoutY="212.0" prefHeight="39.0"
prefWidth="310.0" AnchorPane.leftAnchor="24.0" AnchorPane.rightAnchor="266.0"
AnchorPane.topAnchor="212.0">
<ImageView fx:id="imageView" fitHeight="144.0" fitWidth="140.0" layoutX="80.0" layoutY="14.0" pickOnBounds="true" preserveRatio="true" />
<Label fx:id="infoLabel" alignment="CENTER" layoutX="24.0" layoutY="212.0" prefHeight="39.0" prefWidth="310.0" AnchorPane.leftAnchor="24.0" AnchorPane.rightAnchor="266.0" AnchorPane.topAnchor="212.0">
<font>
<Font size="25.0" />
</font>
</Label>
<VBox layoutX="109.0" layoutY="259.0" spacing="14.0">
<VBox alignment="BOTTOM_LEFT" layoutX="109.0" layoutY="259.0" spacing="14.0" VBox.vgrow="ALWAYS">
<children>
<Button fx:id="newProjectButton" layoutX="115.0" layoutY="259.0" maxWidth="1.7976931348623157E308" mnemonicParsing="false" onAction="#newProjectButtonHandler" text="%launch.button.new" VBox.vgrow="ALWAYS" />
<Button fx:id="importProject" layoutX="109.0" layoutY="292.0" maxWidth="1.7976931348623157E308" mnemonicParsing="false" onAction="#importProjectButtonHandler" text="%launch.button.import" VBox.vgrow="ALWAYS" />
<Button fx:id="convertProjectButton" layoutX="109.0" layoutY="292.0" maxWidth="1.7976931348623157E308" mnemonicParsing="false" onAction="#convertProjectButtonHandler" text="%launch.button.convert" VBox.vgrow="ALWAYS" />
<HBox>
<children>
<Button fx:id="newProjectButton" layoutX="115.0" layoutY="259.0"
maxWidth="1.7976931348623157E308" mnemonicParsing="false"
onAction="#newProjectButtonHandler" text="%launch.button.new" VBox.vgrow="ALWAYS"/>
<Button fx:id="importProject" layoutX="109.0" layoutY="292.0" maxWidth="1.7976931348623157E308"
mnemonicParsing="false" onAction="#importProjectButtonHandler"
text="%launch.button.import" VBox.vgrow="ALWAYS"/>
<Button fx:id="convertProjectButton" layoutX="109.0" layoutY="292.0"
maxWidth="1.7976931348623157E308" mnemonicParsing="false"
onAction="#convertProjectButtonHandler" text="%launch.button.convert"
VBox.vgrow="ALWAYS"/>
<Label fx:id="cloudLabel" onMouseClicked="#cloudIconClicked" />
</children>
</HBox>
</children>
</VBox>
</children>
<HBox.margin>
<Insets bottom="14.0" left="14.0" right="14.0" top="14.0" />
</HBox.margin>
</VBox>
<ListView id="projectList" fx:id="projectListView" fixedCellSize="40.0" layoutX="371.0" prefHeight="345.0"
prefWidth="269.0" AnchorPane.bottomAnchor="0.0" AnchorPane.leftAnchor="371.0"
AnchorPane.rightAnchor="0.0" AnchorPane.topAnchor="0.0"/>
<HBox layoutX="494.0" layoutY="305.0" spacing="14.0" AnchorPane.bottomAnchor="14.0"
AnchorPane.rightAnchor="14.0">
<VBox spacing="14.0" HBox.hgrow="ALWAYS">
<children>
<Button fx:id="deleteButton" layoutX="494.0" layoutY="305.0" mnemonicParsing="false"
onAction="#deleteButtonHandler" text="%launch.button.delete"/>
<Button fx:id="openButton" layoutX="568.0" layoutY="305.0" mnemonicParsing="false"
onAction="#openButtonHandler" text="%launch.button.open" AnchorPane.bottomAnchor="14.0"
AnchorPane.rightAnchor="14.0"/>
</children>
</HBox>
<HBox layoutX="-57.0" layoutY="295.0" AnchorPane.bottomAnchor="14.0" AnchorPane.leftAnchor="14.0">
<ListView id="projectList" fx:id="projectListView" fixedCellSize="40.0" VBox.vgrow="ALWAYS" />
<HBox spacing="14.0">
<children>
<Label fx:id="cloudLabel" onMouseClicked="#cloudIconClicked"/>
<Button fx:id="deleteButton" layoutX="494.0" layoutY="305.0" maxWidth="1.7976931348623157E308" minHeight="35.0" mnemonicParsing="false" onAction="#deleteButtonHandler" text="%launch.button.delete" HBox.hgrow="ALWAYS" />
<Button fx:id="openButton" layoutX="568.0" layoutY="305.0" maxWidth="1.7976931348623157E308" minHeight="35.0" mnemonicParsing="false" onAction="#openButtonHandler" text="%launch.button.open" AnchorPane.bottomAnchor="14.0" AnchorPane.rightAnchor="14.0" HBox.hgrow="ALWAYS" />
</children>
<padding>
<Insets bottom="14.0" left="14.0" right="14.0" />
</padding>
</HBox>
</children>
</AnchorPane>
</VBox>
</children>
</HBox>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment