vault_detail_missing.fxml 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <?import org.cryptomator.ui.controls.FontAwesome5IconView?>
  2. <?import javafx.geometry.Insets?>
  3. <?import javafx.scene.control.Button?>
  4. <?import javafx.scene.control.Label?>
  5. <?import javafx.scene.layout.StackPane?>
  6. <?import javafx.scene.layout.VBox?>
  7. <?import javafx.scene.shape.Circle?>
  8. <VBox xmlns:fx="http://javafx.com/fxml"
  9. xmlns="http://javafx.com/javafx"
  10. fx:controller="org.cryptomator.ui.mainwindow.VaultDetailMissingVaultController"
  11. alignment="TOP_CENTER"
  12. spacing="24">
  13. <children>
  14. <VBox spacing="9" alignment="CENTER">
  15. <StackPane alignment="CENTER">
  16. <Circle styleClass="glyph-icon-primary" radius="48"/>
  17. <FontAwesome5IconView styleClass="glyph-icon-white" glyph="FILE" glyphSize="48"/>
  18. <FontAwesome5IconView styleClass="glyph-icon-primary" glyph="SEARCH" glyphSize="24">
  19. <StackPane.margin>
  20. <Insets top="12"/>
  21. </StackPane.margin>
  22. </FontAwesome5IconView>
  23. </StackPane>
  24. <Label text="%main.vaultDetail.missing.info" wrapText="true"/>
  25. </VBox>
  26. <VBox spacing="6" alignment="CENTER">
  27. <Button text="%main.vaultDetail.missing.recheck" minWidth="120" onAction="#recheck">
  28. <graphic>
  29. <FontAwesome5IconView glyph="REDO"/>
  30. </graphic>
  31. </Button>
  32. <Button text="%main.vaultDetail.missing.changeLocation" minWidth="120" onAction="#changeLocation">
  33. <graphic>
  34. <FontAwesome5IconView glyph="EDIT"/>
  35. </graphic>
  36. </Button>
  37. <Button text="%main.vaultDetail.missing.remove" minWidth="120" onAction="#didClickRemoveVault">
  38. <graphic>
  39. <FontAwesome5IconView glyph="TRASH"/>
  40. </graphic>
  41. </Button>
  42. </VBox>
  43. </children>
  44. </VBox>