2020-03-26 20:23:25 +01:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
|
|
|
|
<?import javafx.scene.control.Button?>
|
|
|
|
<?import javafx.scene.control.Label?>
|
|
|
|
<?import javafx.scene.control.ListView?>
|
2020-03-27 21:14:49 +01:00
|
|
|
<?import javafx.scene.control.TextArea?>
|
2020-03-26 20:23:25 +01:00
|
|
|
<?import javafx.scene.layout.ColumnConstraints?>
|
|
|
|
<?import javafx.scene.layout.GridPane?>
|
|
|
|
<?import javafx.scene.layout.RowConstraints?>
|
|
|
|
|
2020-03-28 10:39:15 +01:00
|
|
|
<GridPane id="recipientLabel" maxHeight="-Infinity"
|
|
|
|
maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity"
|
|
|
|
prefHeight="400.0" prefWidth="600.0"
|
|
|
|
xmlns="http://javafx.com/javafx/11.0.1"
|
|
|
|
xmlns:fx="http://javafx.com/fxml/1"
|
|
|
|
fx:controller="envoy.client.ui.ChatSceneController">
|
2020-03-26 20:23:25 +01:00
|
|
|
<columnConstraints>
|
2020-03-28 10:39:15 +01:00
|
|
|
<ColumnConstraints hgrow="SOMETIMES" minWidth="10.0"
|
|
|
|
prefWidth="100.0" />
|
|
|
|
<ColumnConstraints hgrow="SOMETIMES" minWidth="10.0"
|
|
|
|
prefWidth="100.0" />
|
2020-03-26 20:23:25 +01:00
|
|
|
</columnConstraints>
|
|
|
|
<rowConstraints>
|
2020-03-28 10:39:15 +01:00
|
|
|
<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" />
|
2020-03-26 20:23:25 +01:00
|
|
|
</rowConstraints>
|
|
|
|
<children>
|
2020-03-28 15:32:24 +01:00
|
|
|
<ListView fx:id="userList" prefHeight="211.0"
|
|
|
|
prefWidth="300.0" GridPane.rowIndex="1"
|
|
|
|
onMouseClicked="#userListClicked" />
|
|
|
|
<Label text="Select a contact to chat with" fx:id="contactLabel" />
|
|
|
|
<Button fx:id="settingsButton" mnemonicParsing="false"
|
|
|
|
text="Settings" GridPane.columnIndex="1"
|
|
|
|
onAction="#settingsButtonClicked" />
|
2020-03-28 10:39:15 +01:00
|
|
|
<ListView fx:id="messageList" prefHeight="257.0"
|
|
|
|
prefWidth="300.0" GridPane.columnIndex="1" GridPane.rowIndex="1" />
|
2020-03-28 15:32:24 +01:00
|
|
|
<Button fx:id="postButton" mnemonicParsing="false" text="Post"
|
|
|
|
GridPane.columnIndex="1" GridPane.rowIndex="2"
|
|
|
|
onAction="#postButtonClicked" disable="true" />
|
|
|
|
<TextArea fx:id="messageTextArea" prefHeight="200.0"
|
|
|
|
prefWidth="200.0" GridPane.rowIndex="2"
|
|
|
|
onKeyReleased="#messageTextUpdated" />
|
2020-03-26 20:23:25 +01:00
|
|
|
</children>
|
|
|
|
</GridPane>
|