-
Notifications
You must be signed in to change notification settings - Fork 0
/
JabberMain.fxml
33 lines (31 loc) · 1.92 KB
/
JabberMain.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
<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.scene.control.Button?>
<?import javafx.scene.control.Label?>
<?import javafx.scene.control.Separator?>
<?import javafx.scene.control.TextField?>
<?import javafx.scene.layout.AnchorPane?>
<?import javafx.scene.layout.VBox?>
<?import javafx.scene.text.Font?>
<AnchorPane prefHeight="500.0" prefWidth="700.0" xmlns="http://javafx.com/javafx/16" xmlns:fx="http://javafx.com/fxml/1" fx:controller="com.bham.fsd.assignments.jabberserver.PageController">
<children>
<VBox fx:id="P1" layoutY="50.0" prefHeight="450.0" prefWidth="300.0" />
<Label fx:id="Timeline" alignment="CENTER" layoutY="1.0" prefHeight="50.0" prefWidth="233.0" text="Timeline" textFill="#23b223">
<font>
<Font size="21.0" />
</font>
</Label>
<Separator layoutX="-3.0" layoutY="49.0" prefHeight="0.0" prefWidth="505.0" />
<Separator layoutX="300.0" orientation="VERTICAL" prefHeight="500.0" prefWidth="0.0" />
<Label layoutX="335.0" layoutY="10.0" text="Who to follow" textFill="#23b223">
<font>
<Font size="21.0" />
</font>
</Label>
<VBox fx:id="P2" layoutX="303.0" layoutY="52.0" prefHeight="450.0" prefWidth="200.0" />
<TextField fx:id="T2" alignment="TOP_LEFT" layoutX="536.0" layoutY="49.0" prefHeight="350.0" prefWidth="132.0" promptText="Enter Jab here..." />
<Button fx:id="B3" layoutX="537.0" layoutY="10.0" mnemonicParsing="false" onAction="#signingOut" prefHeight="31.0" prefWidth="132.0" text="Sign Out" />
<Separator layoutX="500.0" orientation="VERTICAL" prefHeight="500.0" prefWidth="0.0" />
<Button fx:id="B6" layoutX="538.0" layoutY="404.0" mnemonicParsing="false" onAction="#postJab" prefHeight="83.0" prefWidth="132.0" text="Post" />
<Button fx:id="refresh" layoutX="239.0" layoutY="13.0" mnemonicParsing="false" onAction="#refreshing" text="Refresh" />
</children>
</AnchorPane>