2020-04-10 21:52:19 +02:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
|
2020-04-18 11:03:06 +02:00
|
|
|
<?import javafx.geometry.Insets?>
|
2020-04-10 21:52:19 +02:00
|
|
|
<?import javafx.scene.control.Button?>
|
2020-04-18 11:03:06 +02:00
|
|
|
<?import javafx.scene.control.ListView?>
|
|
|
|
<?import javafx.scene.control.TitledPane?>
|
2020-04-10 21:52:19 +02:00
|
|
|
<?import javafx.scene.layout.HBox?>
|
|
|
|
<?import javafx.scene.layout.VBox?>
|
|
|
|
|
2020-06-28 22:30:14 +02:00
|
|
|
<VBox alignment="TOP_RIGHT" maxHeight="-Infinity"
|
|
|
|
maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity"
|
|
|
|
prefHeight="400.0" prefWidth="600.0"
|
|
|
|
xmlns="http://javafx.com/javafx/11.0.1"
|
|
|
|
xmlns:fx="http://javafx.com/fxml/1"
|
|
|
|
fx:controller="envoy.client.ui.controller.SettingsScene">
|
2020-04-10 21:52:19 +02:00
|
|
|
<children>
|
2020-06-18 22:20:34 +02:00
|
|
|
<HBox prefHeight="389.0" prefWidth="600.0">
|
2020-06-28 22:30:14 +02:00
|
|
|
<children>
|
|
|
|
<ListView fx:id="settingsList"
|
|
|
|
onMouseClicked="#settingsListClicked" prefHeight="200.0"
|
|
|
|
prefWidth="200.0">
|
|
|
|
<opaqueInsets>
|
|
|
|
<Insets bottom="5.0" left="5.0" right="5.0" top="5.0" />
|
|
|
|
</opaqueInsets>
|
|
|
|
<HBox.margin>
|
|
|
|
<Insets bottom="10.0" left="10.0" right="5.0" top="10.0" />
|
|
|
|
</HBox.margin>
|
|
|
|
<padding>
|
|
|
|
<Insets bottom="5.0" left="5.0" right="5.0" top="5.0" />
|
|
|
|
</padding>
|
|
|
|
</ListView>
|
|
|
|
<TitledPane fx:id="titledPane" collapsible="false"
|
|
|
|
prefHeight="325.0" prefWidth="300.0">
|
|
|
|
<HBox.margin>
|
|
|
|
<Insets bottom="10.0" left="5.0" right="10.0" top="10.0" />
|
|
|
|
</HBox.margin>
|
|
|
|
<padding>
|
|
|
|
<Insets bottom="5.0" left="5.0" right="5.0" top="5.0" />
|
|
|
|
</padding>
|
|
|
|
</TitledPane>
|
|
|
|
</children>
|
2020-04-10 21:52:19 +02:00
|
|
|
</HBox>
|
2020-06-28 22:30:14 +02:00
|
|
|
<Button defaultButton="true" mnemonicParsing="true"
|
|
|
|
onMouseClicked="#backButtonClicked" text="_Back">
|
|
|
|
<opaqueInsets>
|
|
|
|
<Insets />
|
|
|
|
</opaqueInsets>
|
|
|
|
<padding>
|
|
|
|
<Insets bottom="5.0" left="5.0" right="5.0" top="5.0" />
|
|
|
|
</padding>
|
|
|
|
<VBox.margin>
|
|
|
|
<Insets bottom="5.0" left="5.0" right="5.0" top="5.0" />
|
|
|
|
</VBox.margin>
|
|
|
|
</Button>
|
2020-04-10 21:52:19 +02:00
|
|
|
</children>
|
|
|
|
</VBox>
|