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.

73 lines
3.4 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.layout.BorderPane?>
  9. <?import javafx.scene.layout.HBox?>
  10. <?import javafx.scene.layout.VBox?>
  11. <?import javafx.scene.text.Font?>
  12. <BorderPane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="350.0" prefWidth="630.0" xmlns="http://javafx.com/javafx/11.0.1" xmlns:fx="http://javafx.com/fxml/1" fx:controller="greek.horse.server.ui.controllers.FileBrowserController">
  13. <left>
  14. <BorderPane BorderPane.alignment="CENTER">
  15. <center>
  16. <TableView fx:id="drivesTable" prefHeight="400.0" prefWidth="237.0">
  17. <columns>
  18. <TableColumn fx:id="iconDrivesColumn" prefWidth="35.0" resizable="false" sortable="false" text="Icon" />
  19. <TableColumn fx:id="nameDriveColumn" prefWidth="121.0" resizable="false" sortable="false" text="Name" />
  20. <TableColumn fx:id="sizeDrivesColumn" prefWidth="78.0" resizable="false" sortable="false" text="Size" />
  21. </columns>
  22. </TableView>
  23. </center>
  24. <bottom>
  25. <VBox BorderPane.alignment="CENTER">
  26. <children>
  27. <HBox alignment="CENTER" prefHeight="32.0" prefWidth="237.0">
  28. <children>
  29. <Button mnemonicParsing="false" onAction="#gotoHUB" text="HUB">
  30. <font>
  31. <Font size="14.0" />
  32. </font></Button>
  33. </children>
  34. <VBox.margin>
  35. <Insets top="5.0" />
  36. </VBox.margin>
  37. </HBox>
  38. <HBox alignment="CENTER" layoutX="10.0" layoutY="10.0" nodeOrientation="LEFT_TO_RIGHT" prefHeight="7.0" prefWidth="237.0">
  39. <children>
  40. <Label fx:id="statusLabel" contentDisplay="CENTER">
  41. <HBox.margin>
  42. <Insets bottom="3.0" right="10.0" top="2.0" />
  43. </HBox.margin>
  44. <font>
  45. <Font size="10.0" />
  46. </font>
  47. </Label>
  48. </children>
  49. </HBox>
  50. </children>
  51. </VBox>
  52. </bottom>
  53. </BorderPane>
  54. </left>
  55. <center>
  56. <BorderPane BorderPane.alignment="CENTER">
  57. <center>
  58. <TableView fx:id="listTable" prefHeight="200.0" prefWidth="200.0">
  59. <columns>
  60. <TableColumn fx:id="iconListColumn" prefWidth="35.0" resizable="false" sortable="false" text="Icon" />
  61. <TableColumn fx:id="nameListColumn" prefWidth="280.0" resizable="false" sortable="false" text="Name" />
  62. <TableColumn fx:id="sizeListColumn" prefWidth="69.0" resizable="false" sortable="false" text="Size" />
  63. </columns>
  64. </TableView>
  65. </center>
  66. <top>
  67. <TextField fx:id="pathTextField" editable="false" focusTraversable="false" onKeyPressed="#enterDetection" prefHeight="25.0" prefWidth="103.0" BorderPane.alignment="CENTER" />
  68. </top>
  69. </BorderPane>
  70. </center>
  71. </BorderPane>