recoverykey_recover.fxml 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <?import org.cryptomator.ui.controls.FontAwesome5IconView?>
  3. <?import org.cryptomator.ui.controls.FormattedLabel?>
  4. <?import javafx.geometry.Insets?>
  5. <?import javafx.scene.control.Button?>
  6. <?import javafx.scene.control.ButtonBar?>
  7. <?import javafx.scene.control.Label?>
  8. <?import javafx.scene.control.TextArea?>
  9. <?import javafx.scene.layout.Region?>
  10. <?import javafx.scene.layout.VBox?>
  11. <?import javafx.scene.layout.StackPane?>
  12. <?import javafx.scene.Group?>
  13. <VBox xmlns:fx="http://javafx.com/fxml"
  14. xmlns="http://javafx.com/javafx"
  15. fx:controller="org.cryptomator.ui.recoverykey.RecoveryKeyRecoverController"
  16. minWidth="400"
  17. maxWidth="400"
  18. minHeight="145"
  19. spacing="12"
  20. alignment="TOP_CENTER">
  21. <padding>
  22. <Insets topRightBottomLeft="12"/>
  23. </padding>
  24. <children>
  25. <FormattedLabel format="%recoveryKey.recover.prompt" arg1="${controller.vault.displayName}" wrapText="true"/>
  26. <TextArea wrapText="true" prefRowCount="4" fx:id="textarea" textFormatter="${controller.recoveryKeyTextFormatter}" onKeyPressed="#onKeyPressed"/>
  27. <StackPane>
  28. <Label text="Just some Filler" visible="false" graphicTextGap="6">
  29. <graphic>
  30. <FontAwesome5IconView glyph="ANCHOR"/>
  31. </graphic>
  32. </Label>
  33. <Label text="%recoveryKey.recover.correctKey" graphicTextGap="6" contentDisplay="LEFT" visible="${(!textarea.text.empty) &amp;&amp; controller.recoveryKeyCorrect}">
  34. <graphic>
  35. <FontAwesome5IconView glyph="CHECK"/>
  36. </graphic>
  37. </Label>
  38. <Label text="%recoveryKey.recover.wrongKey" graphicTextGap="6" contentDisplay="LEFT" visible="${(!textarea.text.empty) &amp;&amp; controller.recoveryKeyWrong}">
  39. <graphic>
  40. <FontAwesome5IconView glyph="TIMES" styleClass="glyph-icon-red"/>
  41. </graphic>
  42. </Label>
  43. <Label text="%recoveryKey.recover.invalidKey" graphicTextGap="6" contentDisplay="LEFT" visible="${(!textarea.text.empty) &amp;&amp; controller.recoveryKeyInvalid}">
  44. <graphic>
  45. <FontAwesome5IconView glyph="TIMES" styleClass="glyph-icon-red"/>
  46. </graphic>
  47. </Label>
  48. </StackPane>
  49. <Region VBox.vgrow="ALWAYS"/>
  50. <VBox alignment="BOTTOM_CENTER" VBox.vgrow="ALWAYS">
  51. <ButtonBar buttonMinWidth="120" buttonOrder="+CX">
  52. <buttons>
  53. <Button text="%generic.button.cancel" ButtonBar.buttonData="CANCEL_CLOSE" cancelButton="true" onAction="#close"/>
  54. <Button text="%generic.button.next" ButtonBar.buttonData="NEXT_FORWARD" defaultButton="true" onAction="#recover" disable="${!controller.recoveryKeyCorrect}"/>
  55. </buttons>
  56. </ButtonBar>
  57. </VBox>
  58. </children>
  59. </VBox>