<?xml version="1.0" encoding="UTF-8"?>

<?import javafx.geometry.Insets?>
<?import javafx.scene.control.CheckBox?>
<?import javafx.scene.control.ComboBox?>
<?import javafx.scene.control.Label?>
<?import javafx.scene.control.ScrollPane?>
<?import javafx.scene.control.Slider?>
<?import javafx.scene.control.TextField?>
<?import javafx.scene.control.Tooltip?>
<?import javafx.scene.layout.AnchorPane?>
<?import javafx.scene.layout.HBox?>
<?import javafx.scene.layout.VBox?>

<AnchorPane fx:id="layout" prefHeight="560.0" prefWidth="930.0" styleClass="background" stylesheets="@settings.css" xmlns="http://javafx.com/javafx/21" xmlns:fx="http://javafx.com/fxml/1">
    <AnchorPane id="header" prefHeight="80.0" AnchorPane.leftAnchor="300.0" AnchorPane.rightAnchor="0.0" AnchorPane.topAnchor="0.0">
        <Label maxWidth="400.0" prefHeight="32.0" styleClass="scene-header" text="%runtime.scenes.settings.header" AnchorPane.leftAnchor="35.0" AnchorPane.topAnchor="34.0" />
        <HBox id="controls" spacing="10.0" AnchorPane.rightAnchor="29.0" AnchorPane.topAnchor="34.0">
            <fx:include source="../../components/buttons/minimize.fxml" />
            <fx:include source="../../components/buttons/exit.fxml" />
        </HBox>
    </AnchorPane>
    <fx:include source="../../components/panels/leftpanel.fxml" />
    <AnchorPane prefHeight="480.0" prefWidth="630.0" AnchorPane.bottomAnchor="0.0" AnchorPane.leftAnchor="300.0" AnchorPane.rightAnchor="0.0" AnchorPane.topAnchor="80.0">
        <children>
            <ScrollPane id="settingslist" fitToWidth="true" hbarPolicy="NEVER" AnchorPane.bottomAnchor="20.0" AnchorPane.leftAnchor="20.0" AnchorPane.rightAnchor="20.0" AnchorPane.topAnchor="0.0">
                <VBox spacing="15.0">
                    <children>
                        <VBox>
                            <children>
                                <AnchorPane maxHeight="-Infinity" maxWidth="1.7976931348623157E308">
                                    <children>
                                        <Label styleClass="settings-header" text="%runtime.scenes.settings.header.ram" AnchorPane.bottomAnchor="0.0" AnchorPane.leftAnchor="0.0" AnchorPane.topAnchor="0.0" />
                                        <Label id="ramLabel" text="Label" AnchorPane.bottomAnchor="0.0" AnchorPane.rightAnchor="20.0" AnchorPane.topAnchor="0.0" />
                                    </children>
                                </AnchorPane>
                                <Slider id="ramSlider" prefHeight="17.0" prefWidth="589.0">
                                    <VBox.margin>
                                        <Insets top="5.0" />
                                    </VBox.margin>
                                </Slider>
                            </children>
                        </VBox>
                        <VBox id="settings-list" styleClass="settings-card">
                            <children>
                                <Label styleClass="settings-header" text="%runtime.scenes.settings.header.options" />
                                <HBox layoutX="10.0" layoutY="10.0" styleClass="settings-container">
                                    <children>
                                        <CheckBox styleClass="settings-checkbox" />
                                        <VBox>
                                            <children>
                                                <Label styleClass="settings-label-header" text="Name" wrapText="true" />
                                                <Label styleClass="settings-label" text="Description" wrapText="true" />
                                            </children>
                                        </VBox>
                                    </children>
                                </HBox>
                            </children>
                            <VBox.margin>
                                <Insets top="10.0" />
                            </VBox.margin>
                        </VBox>
                        <VBox styleClass="settings-card">
                            <children>
                                <Label styleClass="settings-header" text="Custom JVM Arguments" />
                                <HBox prefHeight="40.0" spacing="10.0">
                                    <children>
                                        <TextField id="customJvmArgs" promptText="-XX:+UseZGC -XX:+ZGenerational" maxHeight="1.7976931348623157E308" HBox.hgrow="ALWAYS" />
                                    </children>
                                    <VBox.margin>
                                        <Insets top="10.0" />
                                    </VBox.margin>
                                </HBox>
                            </children>
                        </VBox>
                        <VBox>
                            <children>
                                <Label styleClass="settings-header" text="%runtime.scenes.settings.header.java" />
                                <HBox prefHeight="40.0" spacing="10.0">
                                    <children>
                                        <ComboBox id="javaCombo" maxHeight="1.7976931348623157E308" minWidth="296.0">
                                            <tooltip>
                                                <Tooltip anchorLocation="WINDOW_BOTTOM_LEFT" text="Empty Tooltip" />
                                            </tooltip>
                                        </ComboBox>
                                        <Label maxHeight="1.7976931348623157E308" styleClass="settings-label" text="%runtime.scenes.settings.javaDesc" wrapText="true" />
                                    </children>
                                    <opaqueInsets>
                                        <Insets />
                                    </opaqueInsets>
                                    <VBox.margin>
                                        <Insets top="10.0" />
                                    </VBox.margin>
                                </HBox>
                            </children>
                        </VBox>
                    </children>
                </VBox>
                <opaqueInsets>
                    <Insets />
                </opaqueInsets>
            </ScrollPane>
        </children>
    </AnchorPane>
</AnchorPane>
