implemented basic single client proof of concept for the chat history #story[1246]

This commit is contained in:
Peter Galloway
2017-08-25 17:57:45 +12:00
parent 5fb8a0c2c1
commit 75155fe481
2 changed files with 38 additions and 1 deletions
+25 -1
View File
@@ -47,7 +47,31 @@
</rowConstraints>
<children>
<AnchorPane fx:id="contentAnchorPane" prefHeight="200.0" prefWidth="200.0"
GridPane.columnSpan="2" GridPane.rowSpan="2"/>
GridPane.columnSpan="2" GridPane.rowSpan="2">
<children>
<AnchorPane layoutX="799.0" layoutY="770.0" prefHeight="214.0"
prefWidth="468.0">
<children>
<VBox prefHeight="214.0" prefWidth="468.0"
AnchorPane.bottomAnchor="0.0" AnchorPane.leftAnchor="0.0"
AnchorPane.rightAnchor="0.0" AnchorPane.topAnchor="0.0">
<children>
<TextArea fx:id="chatHistory" VBox.vgrow="ALWAYS"/>
<HBox VBox.vgrow="NEVER">
<children>
<TextField fx:id="chatInput"
prefHeight="25.0" HBox.hgrow="ALWAYS"/>
<Button fx:id="chatSend"
mnemonicParsing="false"
onAction="#onSendAction" text="Send"/>
</children>
</HBox>
</children>
</VBox>
</children>
</AnchorPane>
</children>
</AnchorPane>
<Text fx:id="fpsDisplay" strokeType="OUTSIDE" strokeWidth="0.0" text="60 FPS"
GridPane.halignment="CENTER" GridPane.valignment="CENTER"/>
</children>