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.

92 lines
4.0 KiB

3 years ago
3 years ago
3 years ago
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.Label?>
  5. <?import javafx.scene.control.TableColumn?>
  6. <?import javafx.scene.control.TableView?>
  7. <?import javafx.scene.control.TextField?>
  8. <?import javafx.scene.control.ToggleButton?>
  9. <?import javafx.scene.layout.BorderPane?>
  10. <?import javafx.scene.layout.HBox?>
  11. <?import javafx.scene.text.Font?>
  12. <BorderPane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="400.0" prefWidth="762.0" xmlns="http://javafx.com/javafx/11.0.1" xmlns:fx="http://javafx.com/fxml/1" fx:controller="greek.horse.server.ui.controllers.HorseController">
  13. <center>
  14. <TableView fx:id="tableView" prefHeight="320.0" prefWidth="765.0" BorderPane.alignment="CENTER">
  15. <columns>
  16. <TableColumn id="cu" fx:id="userNameColumn" prefWidth="93.0" style="-fx-padding: 0;" text="Username" />
  17. <TableColumn fx:id="ipColumn" prefWidth="98.0" style="-fx-padding: 0;" text="IP" />
  18. <TableColumn fx:id="ispColumn" prefWidth="70.0" style="-fx-padding: 0;" text="ISP" />
  19. <TableColumn fx:id="flagColumn" editable="false" prefWidth="41.0" resizable="false" sortable="false" style="-fx-padding: 0;" text="Flag" />
  20. <TableColumn fx:id="countryColumn" style="-fx-padding: 0;" text="Country" />
  21. <TableColumn fx:id="regionColumn" prefWidth="75.0" style="-fx-padding: 0;" text="Region" />
  22. <TableColumn fx:id="cityColumn" prefWidth="74.0" style="-fx-padding: 0;" text="City" />
  23. <TableColumn fx:id="osColumn" prefWidth="74.0" style="-fx-padding: 0;" text="OS" />
  24. <TableColumn fx:id="bigOsColumn" prefWidth="89.0" style="-fx-padding: 0;" text="System" />
  25. <TableColumn fx:id="headlessColumn" prefWidth="67.0" style="-fx-padding: 0;" text="Headless" />
  26. </columns>
  27. </TableView>
  28. </center>
  29. <top>
  30. <HBox alignment="CENTER" nodeOrientation="LEFT_TO_RIGHT" prefHeight="40.0" prefWidth="600.0" BorderPane.alignment="CENTER">
  31. <children>
  32. <Label text="Port">
  33. <font>
  34. <Font size="14.0" />
  35. </font>
  36. <HBox.margin>
  37. <Insets right="10.0" />
  38. </HBox.margin>
  39. </Label>
  40. <TextField fx:id="portStart" text="1234">
  41. <HBox.margin>
  42. <Insets right="10.0" />
  43. </HBox.margin>
  44. </TextField>
  45. <ToggleButton fx:id="startBtn" mnemonicParsing="false" onAction="#startAction" text="Start">
  46. <font>
  47. <Font size="14.0" />
  48. </font>
  49. </ToggleButton>
  50. </children>
  51. </HBox>
  52. </top>
  53. <bottom>
  54. <HBox alignment="CENTER" nodeOrientation="LEFT_TO_RIGHT" prefHeight="40.0" prefWidth="600.0" BorderPane.alignment="CENTER">
  55. <children>
  56. <Label text="Host">
  57. <font>
  58. <Font size="14.0" />
  59. </font>
  60. <HBox.margin>
  61. <Insets right="10.0" />
  62. </HBox.margin>
  63. </Label>
  64. <TextField fx:id="hostBuild" text="localhost">
  65. <HBox.margin>
  66. <Insets right="10.0" />
  67. </HBox.margin>
  68. </TextField>
  69. <Label text="Port">
  70. <HBox.margin>
  71. <Insets right="10.0" />
  72. </HBox.margin>
  73. <font>
  74. <Font size="14.0" />
  75. </font>
  76. </Label>
  77. <TextField fx:id="portBuild" text="1234">
  78. <HBox.margin>
  79. <Insets right="10.0" />
  80. </HBox.margin>
  81. </TextField>
  82. <Button fx:id="buildBtn" mnemonicParsing="false" onAction="#buildBtn" text="Build">
  83. <font>
  84. <Font size="14.0" />
  85. </font>
  86. </Button>
  87. </children>
  88. </HBox>
  89. </bottom>
  90. </BorderPane>