decryptnames.fxml 1.2 KB

123456789101112131415161718192021222324252627282930
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <?import java.lang.*?>
  3. <?import java.util.*?>
  4. <?import javafx.scene.*?>
  5. <?import javafx.scene.control.*?>
  6. <?import javafx.scene.layout.*?>
  7. <?import javafx.geometry.Insets?>
  8. <?import org.cryptomator.ui.controls.FontAwesome5IconView?>
  9. <VBox xmlns="http://javafx.com/javafx"
  10. xmlns:fx="http://javafx.com/fxml"
  11. fx:controller="org.cryptomator.ui.decryptname.DecryptFileNamesView"
  12. minWidth="400"
  13. maxWidth="400"
  14. minHeight="145">
  15. <padding>
  16. <Insets topRightBottomLeft="24"/>
  17. </padding>
  18. <Label text="Decrypt File Name" styleClass="label-large"/>
  19. <VBox alignment="CENTER" VBox.vgrow="ALWAYS" styleClass="test-style2" visible="${controller.decryptedPathsListEmpty}" managed="${controller.decryptedPathsListEmpty}" onMouseClicked="#selectAndDecrypt">
  20. <!-- Drop or click to decrypt names of files -->
  21. <Label text="${controller.dropZoneText}" contentDisplay="TOP">
  22. <graphic>
  23. <FontAwesome5IconView glyph="${controller.dropZoneIcon}" glyphSize="16"/>
  24. </graphic>
  25. </Label>
  26. </VBox>
  27. <ListView fx:id="decryptedNamesView" styleClass="test-list-view" VBox.vgrow="ALWAYS" visible="${!controller.decryptedPathsListEmpty}" managed="${!controller.decryptedPathsListEmpty}"/>
  28. </VBox>