-
Notifications
You must be signed in to change notification settings - Fork 0
/
AddUserStories.fxml
65 lines (63 loc) · 3.57 KB
/
AddUserStories.fxml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.geometry.Insets?>
<?import javafx.scene.control.Button?>
<?import javafx.scene.control.ComboBox?>
<?import javafx.scene.control.ListView?>
<?import javafx.scene.control.TextField?>
<?import javafx.scene.layout.ColumnConstraints?>
<?import javafx.scene.layout.GridPane?>
<?import javafx.scene.layout.RowConstraints?>
<GridPane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="400.0" prefWidth="600.0" xmlns="http://javafx.com/javafx/21" xmlns:fx="http://javafx.com/fxml/1" fx:controller="application.AddUserStoriesController">
<columnConstraints>
<ColumnConstraints hgrow="SOMETIMES" maxWidth="166.0" minWidth="0.0" prefWidth="0.0" />
<ColumnConstraints hgrow="SOMETIMES" maxWidth="520.0" minWidth="10.0" prefWidth="520.0" />
<ColumnConstraints hgrow="SOMETIMES" maxWidth="86.0" minWidth="0.0" prefWidth="0.0" />
</columnConstraints>
<rowConstraints>
<RowConstraints maxHeight="112.0" minHeight="10.0" prefHeight="112.0" vgrow="SOMETIMES" />
<RowConstraints maxHeight="225.0" minHeight="10.0" prefHeight="208.0" vgrow="SOMETIMES" />
<RowConstraints maxHeight="129.0" minHeight="10.0" prefHeight="80.0" vgrow="SOMETIMES" />
</rowConstraints>
<children>
<Button fx:id="addUserStoryButton" mnemonicParsing="false" onAction="#handleAddUserStory" prefHeight="26.0" prefWidth="100.0" text="Add User Story" GridPane.columnIndex="1">
<GridPane.margin>
<Insets top="70.0" />
</GridPane.margin></Button>
<Button fx:id="estimateButton" mnemonicParsing="false" onAction="#handleEstimate" prefHeight="26.0" prefWidth="79.0" text="Estimate" GridPane.columnIndex="1" GridPane.rowIndex="2">
<GridPane.margin>
<Insets bottom="40.0" left="455.0" />
</GridPane.margin></Button>
<Button fx:id="submitButton" mnemonicParsing="false" onAction="#handleSubmitButtonAction" prefHeight="26.0" prefWidth="100.0" text="Submit" GridPane.columnIndex="1" GridPane.rowIndex="2">
<GridPane.margin>
<Insets top="30.0" />
</GridPane.margin>
</Button>
<TextField fx:id="userInputStoryField" prefHeight="26.0" prefWidth="261.0" promptText="Enter User Story" GridPane.columnIndex="1">
<GridPane.margin>
<Insets bottom="50.0" />
</GridPane.margin></TextField>
<TextField fx:id="userInputStoryDescription" layoutX="210.0" layoutY="64.0" promptText="Enter User Story Description" GridPane.columnIndex="1">
<opaqueInsets>
<Insets />
</opaqueInsets>
<GridPane.margin>
<Insets top="10.0" />
</GridPane.margin>
</TextField>
<ListView fx:id="userStoryListView" prefHeight="200.0" prefWidth="200.0" GridPane.columnIndex="1" GridPane.rowIndex="1" />
<ComboBox fx:id="fibonacciComboBox" maxWidth="1.7976931348623157E308" prefHeight="26.0" prefWidth="436.0" GridPane.columnIndex="1" GridPane.rowIndex="2">
<GridPane.margin>
<Insets bottom="40.0" right="70.0" />
</GridPane.margin></ComboBox>
<Button fx:id="viewDataButton" mnemonicParsing="false" onAction="#viewData" text="View Data" GridPane.columnIndex="1" GridPane.valignment="CENTER">
<GridPane.margin>
<Insets left="150.0" top="70.0" />
</GridPane.margin>
</Button>
<Button fx:id="back" mnemonicParsing="false" onAction="#goBack" text="Back" GridPane.columnIndex="1" GridPane.rowIndex="2">
<GridPane.margin>
<Insets left="150.0" top="30.0" />
</GridPane.margin>
</Button>
</children>
</GridPane>