<?import javafx.scene.control.*?>
<?import javafx.scene.layout.*?>
-<GridPane xmlns:fx="http://javafx.com/fxml"
+<VBox xmlns:fx="http://javafx.com/fxml"
fx:controller="de.diejungsvondertanke.tankstelle.controllers.NewStationTabController"
- hgap="10" vgap="10">
+ spacing="10">
<padding>
<Insets top="15" right="15" bottom="15" left="15" />
</padding>
- <Label text="Size:" GridPane.rowIndex="0" GridPane.columnIndex="0" />
+ <HBox>
+ <Label text="Size:" />
+ </HBox>
- <fx:define>
- <ToggleGroup fx:id="group" />
- </fx:define>
- <RadioButton fx:id="rbSmall" text="Small" selected="true"
- toggleGroup="$group"
- GridPane.rowIndex="1" GridPane.columnIndex="0"
- onAction="#setAttributeTypeFromSmallStation" />
- <RadioButton fx:id="rbMedium" text="Medium"
- toggleGroup="$group"
- GridPane.rowIndex="1" GridPane.columnIndex="1"
- onAction="#setAttributeTypeFromMediumStation" />
- <RadioButton fx:id="rbLarge" text="Large"
- toggleGroup="$group"
- GridPane.rowIndex="1" GridPane.columnIndex="2"
- onAction="#setAttributeTypeFromLargeStation" />
+ <HBox>
+ <fx:define>
+ <ToggleGroup fx:id="group" />
+ </fx:define>
+ <RadioButton fx:id="rbSmall" text="Small" selected="true"
+ toggleGroup="$group"
+ onAction="#setAttributeTypeFromSmallStation" />
+ <RadioButton fx:id="rbMedium" text="Medium"
+ toggleGroup="$group"
+ onAction="#setAttributeTypeFromMediumStation" />
+ <RadioButton fx:id="rbLarge" text="Large"
+ toggleGroup="$group"
+ onAction="#setAttributeTypeFromLargeStation" />
- <Label fx:id="attrLabel" text="Attribute:" GridPane.rowIndex="2" GridPane.columnIndex="0" />
- <TextField fx:id="txtAttr" GridPane.rowIndex="2" GridPane.columnIndex="1"
- GridPane.columnSpan="2" />
-
- <Label text="Hint:" GridPane.rowIndex="3" GridPane.columnIndex="0" />
- <Label text="Small=vending machines, Medium=m², Large=supermarket-company"
- wrapText="true"
- GridPane.rowIndex="3" GridPane.columnIndex="1" GridPane.columnSpan="2" />
-
- <Button text="Add fuel station" onAction="#add"
- GridPane.rowIndex="4" GridPane.columnIndex="0" GridPane.columnSpan="3" />
-
-</GridPane>
\ No newline at end of file
+ </HBox>
+ <HBox>
+ <Label fx:id="attrLabel" text="Number of drink vending machines:" />
+ </HBox>
+ <HBox>
+ <TextField fx:id="txtAttr" />
+ </HBox>
+ <HBox>
+ <Button text="Add fuel station" onAction="#add" />
+ </HBox>
+</VBox>
\ No newline at end of file