You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1.7 KiB
43 lines
1.7 KiB
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<?import javafx.geometry.Insets?>
|
|
<?import javafx.scene.control.Button?>
|
|
<?import javafx.scene.control.ScrollPane?>
|
|
<?import javafx.scene.control.TextField?>
|
|
<?import javafx.scene.layout.BorderPane?>
|
|
<?import javafx.scene.layout.HBox?>
|
|
<?import javafx.scene.text.Font?>
|
|
<?import javafx.scene.text.TextFlow?>
|
|
|
|
<BorderPane 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="greek.horse.server.ui.controllers.TerminalController">
|
|
<center>
|
|
<ScrollPane fx:id="scrollPane" fitToHeight="true" fitToWidth="true" BorderPane.alignment="CENTER">
|
|
<content>
|
|
<TextFlow fx:id="textFlow" prefHeight="200.0" prefWidth="200.0" style="-fx-background-color: black;">
|
|
<padding>
|
|
<Insets bottom="10.0" left="10.0" right="10.0" top="10.0" />
|
|
</padding>
|
|
</TextFlow>
|
|
</content>
|
|
</ScrollPane>
|
|
</center>
|
|
<bottom>
|
|
<HBox alignment="CENTER" prefHeight="39.0" prefWidth="600.0" BorderPane.alignment="CENTER">
|
|
<children>
|
|
<TextField fx:id="textFieldCommand" alignment="TOP_LEFT" prefHeight="30.0" prefWidth="426.0">
|
|
<font>
|
|
<Font size="14.0" />
|
|
</font>
|
|
<HBox.margin>
|
|
<Insets right="20.0" />
|
|
</HBox.margin>
|
|
</TextField>
|
|
<Button mnemonicParsing="false" onAction="#sendBtn" text="Send">
|
|
<font>
|
|
<Font size="14.0" />
|
|
</font>
|
|
</Button>
|
|
</children>
|
|
</HBox>
|
|
</bottom>
|
|
</BorderPane>
|