-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathGameView.fxml
More file actions
144 lines (142 loc) · 6.63 KB
/
GameView.fxml
File metadata and controls
144 lines (142 loc) · 6.63 KB
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.scene.*?>
<?import javafx.geometry.*?>
<?import javafx.scene.paint.*?>
<?import javafx.scene.effect.*?>
<?import javafx.scene.text.*?>
<?import javafx.scene.control.*?>
<?import javafx.scene.image.*?>
<?import java.lang.*?>
<?import javafx.scene.layout.*?>
<?import javafx.scene.layout.AnchorPane?>
<AnchorPane prefHeight="450.0" prefWidth="650.0" xmlns="http://javafx.com/javafx/8" xmlns:fx="http://javafx.com/fxml/1">
<children>
<ImageView fitHeight="511.0" fitWidth="700.0">
<image>
<Image url="@../../../../WAM%20moles/BKGD2.png" />
</image>
</ImageView>
<ToggleButton layoutX="584.0" layoutY="14.0" mnemonicParsing="false" text="PAUSE ||" textFill="#3c1212">
<font>
<Font name="Comic Sans MS Bold" size="14.0" />
</font>
</ToggleButton>
<Label layoutX="20.0" layoutY="14.0" prefHeight="25.0" prefWidth="183.0" text="SCORE: ">
<font>
<Font name="Comic Sans MS Bold" size="18.0" />
</font>
</Label>
<Group>
<children>
<GridPane layoutX="9.0" layoutY="192.0" prefHeight="288.0" prefWidth="684.0">
<columnConstraints>
<ColumnConstraints hgrow="SOMETIMES" minWidth="10.0" prefWidth="100.0" />
<ColumnConstraints hgrow="SOMETIMES" minWidth="10.0" prefWidth="100.0" />
<ColumnConstraints hgrow="SOMETIMES" minWidth="10.0" prefWidth="100.0" />
<ColumnConstraints hgrow="SOMETIMES" minWidth="10.0" prefWidth="100.0" />
</columnConstraints>
<rowConstraints>
<RowConstraints minHeight="10.0" prefHeight="30.0" vgrow="SOMETIMES" />
<RowConstraints minHeight="10.0" prefHeight="30.0" vgrow="SOMETIMES" />
<RowConstraints minHeight="10.0" prefHeight="30.0" vgrow="SOMETIMES" />
</rowConstraints>
<padding>
<Insets bottom="10.0" left="10.0" right="10.0" top="10.0" />
</padding>
<children>
<RadioButton contentDisplay="CENTER" mnemonicParsing="false" prefHeight="156.0" prefWidth="223.0">
<font>
<Font size="1.0" />
</font>
<GridPane.margin>
<Insets bottom="65.0" />
</GridPane.margin>
<graphic>
<ImageView fitHeight="133.0" fitWidth="200.0">
<image>
<Image url="@../../../../WAM%20moles/rightMole.png" />
</image>
</ImageView>
</graphic>
</RadioButton>
<RadioButton mnemonicParsing="false" GridPane.rowIndex="2" />
<RadioButton mnemonicParsing="false" GridPane.columnIndex="1" GridPane.rowIndex="1">
<graphic>
<ImageView fitHeight="133.0" fitWidth="200.0">
<image>
<Image url="@../../../../WAM%20moles/rightMole.png" />
</image>
</ImageView>
</graphic></RadioButton>
<RadioButton mnemonicParsing="false" prefHeight="123.0" prefWidth="136.0" GridPane.columnIndex="2">
<font>
<Font size="1.0" />
</font>
<padding>
<Insets top="25.0" />
</padding>
<GridPane.margin>
<Insets bottom="15.0" left="25.0" right="25.0" top="25.0" />
</GridPane.margin>
<graphic>
<ImageView fitHeight="146.0" fitWidth="173.0">
<image>
<Image url="@../../../../WAM%20moles/rightMole.png" />
</image>
</ImageView>
</graphic></RadioButton>
<RadioButton mnemonicParsing="false" GridPane.columnIndex="2" GridPane.rowIndex="1" />
<RadioButton mnemonicParsing="false" GridPane.columnIndex="2" GridPane.rowIndex="2" />
<RadioButton mnemonicParsing="false" GridPane.columnIndex="3" GridPane.rowIndex="1">
<font>
<Font size="1.0" />
</font>
<graphic>
<ImageView fitHeight="153.0" fitWidth="134.0">
<image>
<Image url="@../../../../WAM%20moles/rightMole.png" />
</image>
</ImageView>
</graphic></RadioButton>
<RadioButton mnemonicParsing="false" GridPane.columnIndex="3" GridPane.rowIndex="2" />
<RadioButton mnemonicParsing="false" GridPane.rowIndex="1" />
<RadioButton mnemonicParsing="false" GridPane.columnIndex="1" />
<RadioButton mnemonicParsing="false" GridPane.columnIndex="1" GridPane.rowIndex="2">
<font>
<Font size="1.0" />
</font>
<graphic>
<ImageView fitHeight="150.0" fitWidth="191.0">
<image>
<Image url="@../../../../WAM%20moles/rightMole.png" />
</image>
</ImageView>
</graphic>
<opaqueInsets>
<Insets />
</opaqueInsets>
<GridPane.margin>
<Insets left="45.0" top="20.0" />
</GridPane.margin>
</RadioButton>
<RadioButton mnemonicParsing="false" GridPane.columnIndex="3">
<graphic>
<ImageView fitHeight="87.0" fitWidth="107.0">
<image>
<Image url="@../../../../WAM%20moles/leftMole.png" />
</image>
</ImageView>
</graphic>
<font>
<Font size="1.0" />
</font>
<opaqueInsets>
<Insets />
</opaqueInsets>
</RadioButton>
</children>
</GridPane>
</children>
</Group>
</children>
</AnchorPane>