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.

91 lines
3.8 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.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="697.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" 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. </columns>
  26. </TableView>
  27. </center>
  28. <top>
  29. <HBox alignment="CENTER" nodeOrientation="LEFT_TO_RIGHT" prefHeight="40.0" prefWidth="600.0" BorderPane.alignment="CENTER">
  30. <children>
  31. <Label text="Port">
  32. <font>
  33. <Font size="14.0" />
  34. </font>
  35. <HBox.margin>
  36. <Insets right="10.0" />
  37. </HBox.margin>
  38. </Label>
  39. <TextField fx:id="portStart" text="1234">
  40. <HBox.margin>
  41. <Insets right="10.0" />
  42. </HBox.margin>
  43. </TextField>
  44. <ToggleButton fx:id="startBtn" mnemonicParsing="false" onAction="#startAction" text="Start">
  45. <font>
  46. <Font size="14.0" />
  47. </font>
  48. </ToggleButton>
  49. </children>
  50. </HBox>
  51. </top>
  52. <bottom>
  53. <HBox alignment="CENTER" nodeOrientation="LEFT_TO_RIGHT" prefHeight="40.0" prefWidth="600.0" BorderPane.alignment="CENTER">
  54. <children>
  55. <Label text="Host">
  56. <font>
  57. <Font size="14.0" />
  58. </font>
  59. <HBox.margin>
  60. <Insets right="10.0" />
  61. </HBox.margin>
  62. </Label>
  63. <TextField fx:id="hostBuild" text="localhost">
  64. <HBox.margin>
  65. <Insets right="10.0" />
  66. </HBox.margin>
  67. </TextField>
  68. <Label text="Port">
  69. <HBox.margin>
  70. <Insets right="10.0" />
  71. </HBox.margin>
  72. <font>
  73. <Font size="14.0" />
  74. </font>
  75. </Label>
  76. <TextField fx:id="portBuild" text="1234">
  77. <HBox.margin>
  78. <Insets right="10.0" />
  79. </HBox.margin>
  80. </TextField>
  81. <Button fx:id="buildBtn" mnemonicParsing="false" onAction="#buildBtn" text="Build">
  82. <font>
  83. <Font size="14.0" />
  84. </font>
  85. </Button>
  86. </children>
  87. </HBox>
  88. </bottom>
  89. </BorderPane>