Java Trojan: cross-platform monitoring software.
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

3 years ago
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <?import javafx.geometry.Insets?>
  3. <?import javafx.scene.control.Button?>
  4. <?import javafx.scene.control.ScrollPane?>
  5. <?import javafx.scene.control.TextField?>
  6. <?import javafx.scene.layout.BorderPane?>
  7. <?import javafx.scene.layout.HBox?>
  8. <?import javafx.scene.text.Font?>
  9. <?import javafx.scene.text.TextFlow?>
  10. <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">
  11. <center>
  12. <ScrollPane fx:id="scrollPane" fitToHeight="true" fitToWidth="true" BorderPane.alignment="CENTER">
  13. <content>
  14. <TextFlow fx:id="textFlow" prefHeight="200.0" prefWidth="200.0" style="-fx-background-color: black;">
  15. <padding>
  16. <Insets bottom="10.0" left="10.0" right="10.0" top="10.0" />
  17. </padding>
  18. </TextFlow>
  19. </content>
  20. </ScrollPane>
  21. </center>
  22. <bottom>
  23. <HBox alignment="CENTER" prefHeight="39.0" prefWidth="600.0" BorderPane.alignment="CENTER">
  24. <children>
  25. <TextField fx:id="textFieldCommand" alignment="TOP_LEFT" prefHeight="30.0" prefWidth="426.0">
  26. <font>
  27. <Font size="14.0" />
  28. </font>
  29. <HBox.margin>
  30. <Insets right="20.0" />
  31. </HBox.margin>
  32. </TextField>
  33. <Button mnemonicParsing="false" onAction="#sendBtn" text="Send">
  34. <font>
  35. <Font size="14.0" />
  36. </font>
  37. </Button>
  38. </children>
  39. </HBox>
  40. </bottom>
  41. </BorderPane>