48 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			XML
		
	
	
	
			
		
		
	
	
			48 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			XML
		
	
	
	
| <?xml version="1.0" encoding="UTF-8"?>
 | |
| 
 | |
| <?import javafx.geometry.Insets?>
 | |
| <?import javafx.scene.control.Button?>
 | |
| <?import javafx.scene.control.CheckBox?>
 | |
| <?import javafx.scene.control.ComboBox?>
 | |
| <?import javafx.scene.control.Label?>
 | |
| <?import javafx.scene.layout.AnchorPane?>
 | |
| <?import javafx.scene.layout.HBox?>
 | |
| <?import javafx.scene.layout.VBox?>
 | |
| 
 | |
| <AnchorPane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="117.0" prefWidth="374.0" xmlns="http://javafx.com/javafx/17" xmlns:fx="http://javafx.com/fxml/1" fx:controller="ch.zhaw.gartenverwaltung.SettingsController">
 | |
|    <children>
 | |
|       <VBox layoutX="14.0" layoutY="14.0" prefHeight="73.0" prefWidth="374.0" spacing="10.0" AnchorPane.bottomAnchor="0.0" AnchorPane.leftAnchor="0.0" AnchorPane.rightAnchor="0.0" AnchorPane.topAnchor="0.0">
 | |
|          <children>
 | |
|             <HBox prefHeight="23.0" prefWidth="334.0">
 | |
|                <children>
 | |
|                   <Label maxWidth="1.7976931348623157E308" text="Show Tutorial Menu" HBox.hgrow="ALWAYS" />
 | |
|                   <CheckBox fx:id="showTutorial_checkBox" mnemonicParsing="false" />
 | |
|                </children>
 | |
|                <VBox.margin>
 | |
|                   <Insets />
 | |
|                </VBox.margin>
 | |
|             </HBox>
 | |
|             <HBox alignment="CENTER_LEFT" layoutX="20.0" layoutY="20.0" prefHeight="23.0" prefWidth="334.0">
 | |
|                <children>
 | |
|                   <Label maxWidth="1.7976931348623157E308" text="Select Default Hardiness Zone" HBox.hgrow="ALWAYS" />
 | |
|                   <ComboBox fx:id="selectHardinessZone_comboBox" prefWidth="150.0" promptText="Hardniness Zone" />
 | |
|                </children>
 | |
|                <VBox.margin>
 | |
|                   <Insets />
 | |
|                </VBox.margin>
 | |
|             </HBox>
 | |
|             <HBox alignment="CENTER_LEFT" layoutX="20.0" layoutY="53.0" prefHeight="23.0" prefWidth="334.0" spacing="5.0">
 | |
|                <children>
 | |
|                   <Label maxWidth="1.7976931348623157E308" text="Set Location" HBox.hgrow="ALWAYS" />
 | |
|                   <Label fx:id="location_label" />
 | |
|                   <Button fx:id="location_button" mnemonicParsing="false" onAction="#setLocation" />
 | |
|                </children>
 | |
|             </HBox>
 | |
|          </children>
 | |
|          <padding>
 | |
|             <Insets bottom="10.0" left="10.0" right="10.0" top="10.0" />
 | |
|          </padding>
 | |
|       </VBox>
 | |
|    </children>
 | |
| </AnchorPane>
 |