51 lines
2.5 KiB
XML
51 lines
2.5 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<?import javafx.geometry.*?>
|
|
<?import javafx.scene.control.*?>
|
|
<?import javafx.scene.layout.*?>
|
|
<?import javafx.scene.text.*?>
|
|
|
|
<VBox minHeight="300.0" minWidth="300.0" prefHeight="400.0" prefWidth="600.0" xmlns="http://javafx.com/javafx/17.0.2-ea" xmlns:fx="http://javafx.com/fxml/1" fx:controller="nl.andrewl.aos2_launcher.MainViewController">
|
|
<TabPane tabClosingPolicy="UNAVAILABLE" VBox.vgrow="ALWAYS">
|
|
<Tab text="Profiles">
|
|
<VBox>
|
|
<HBox alignment="CENTER" styleClass="button-bar" VBox.vgrow="NEVER">
|
|
<Button onAction="#addProfile" text="Add Profile" />
|
|
<Button fx:id="editProfileButton" onAction="#editProfile" text="Edit Profile" />
|
|
<Button fx:id="removeProfileButton" onAction="#removeProfile" text="Remove Profile" />
|
|
</HBox>
|
|
<ScrollPane fitToWidth="true" VBox.vgrow="ALWAYS">
|
|
<VBox fx:id="profilesVBox" styleClass="banner-list" />
|
|
</ScrollPane>
|
|
</VBox>
|
|
</Tab>
|
|
<Tab text="Servers">
|
|
<VBox>
|
|
<HBox alignment="CENTER" styleClass="button-bar" VBox.vgrow="NEVER">
|
|
<Button onAction="#refreshServers" text="Refresh" />
|
|
<TextField fx:id="registryUrlField" prefWidth="300.0" promptText="Registry URL" text="http://localhost:8080" style="-fx-font-size: 10px;" />
|
|
</HBox>
|
|
<ScrollPane fitToWidth="true" VBox.vgrow="ALWAYS">
|
|
<VBox fx:id="serversVBox" styleClass="banner-list" />
|
|
</ScrollPane>
|
|
</VBox>
|
|
</Tab>
|
|
</TabPane>
|
|
<HBox alignment="CENTER" styleClass="button-bar" VBox.vgrow="NEVER">
|
|
<Button fx:id="playButton" mnemonicParsing="false" onAction="#play" text="Play" />
|
|
</HBox>
|
|
<VBox fx:id="progressVBox" VBox.vgrow="NEVER">
|
|
<AnchorPane VBox.vgrow="NEVER">
|
|
<padding>
|
|
<Insets bottom="5.0" left="5.0" right="5.0" top="5.0" />
|
|
</padding>
|
|
<Label fx:id="progressLabel" text="Work in progress..." AnchorPane.bottomAnchor="0.0" AnchorPane.leftAnchor="0.0" AnchorPane.topAnchor="0.0">
|
|
<font>
|
|
<Font size="10.0" />
|
|
</font>
|
|
</Label>
|
|
<ProgressBar fx:id="progressBar" prefWidth="200.0" progress="0.0" AnchorPane.bottomAnchor="0.0" AnchorPane.rightAnchor="0.0" AnchorPane.topAnchor="0.0" />
|
|
</AnchorPane>
|
|
</VBox>
|
|
</VBox>
|