12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- <?xml version="1.0" encoding="UTF-8"?>
- <?import org.cryptomator.ui.controls.FontAwesome5IconView?>
- <?import org.cryptomator.ui.controls.FormattedLabel?>
- <?import javafx.geometry.Insets?>
- <?import javafx.scene.control.Button?>
- <?import javafx.scene.control.ButtonBar?>
- <?import javafx.scene.control.Label?>
- <?import javafx.scene.control.TextArea?>
- <?import javafx.scene.layout.Region?>
- <?import javafx.scene.layout.VBox?>
- <?import javafx.scene.layout.StackPane?>
- <?import javafx.scene.Group?>
- <VBox xmlns:fx="http://javafx.com/fxml"
- xmlns="http://javafx.com/javafx"
- fx:controller="org.cryptomator.ui.recoverykey.RecoveryKeyRecoverController"
- minWidth="400"
- maxWidth="400"
- minHeight="145"
- spacing="12"
- alignment="TOP_CENTER">
- <padding>
- <Insets topRightBottomLeft="12"/>
- </padding>
- <children>
- <FormattedLabel format="%recoveryKey.recover.prompt" arg1="${controller.vault.displayName}" wrapText="true"/>
- <TextArea wrapText="true" prefRowCount="4" fx:id="textarea" textFormatter="${controller.recoveryKeyTextFormatter}" onKeyPressed="#onKeyPressed"/>
- <StackPane>
- <Label text="Just some Filler" visible="false" graphicTextGap="6">
- <graphic>
- <FontAwesome5IconView glyph="ANCHOR"/>
- </graphic>
- </Label>
- <Label text="%recoveryKey.recover.correctKey" graphicTextGap="6" contentDisplay="LEFT" visible="${(!textarea.text.empty) && controller.recoveryKeyCorrect}">
- <graphic>
- <FontAwesome5IconView glyph="CHECK"/>
- </graphic>
- </Label>
- <Label text="%recoveryKey.recover.wrongKey" graphicTextGap="6" contentDisplay="LEFT" visible="${(!textarea.text.empty) && controller.recoveryKeyWrong}">
- <graphic>
- <FontAwesome5IconView glyph="TIMES" styleClass="glyph-icon-red"/>
- </graphic>
- </Label>
- <Label text="%recoveryKey.recover.invalidKey" graphicTextGap="6" contentDisplay="LEFT" visible="${(!textarea.text.empty) && controller.recoveryKeyInvalid}">
- <graphic>
- <FontAwesome5IconView glyph="TIMES" styleClass="glyph-icon-red"/>
- </graphic>
- </Label>
- </StackPane>
- <Region VBox.vgrow="ALWAYS"/>
- <VBox alignment="BOTTOM_CENTER" VBox.vgrow="ALWAYS">
- <ButtonBar buttonMinWidth="120" buttonOrder="+CX">
- <buttons>
- <Button text="%generic.button.cancel" ButtonBar.buttonData="CANCEL_CLOSE" cancelButton="true" onAction="#close"/>
- <Button text="%generic.button.next" ButtonBar.buttonData="NEXT_FORWARD" defaultButton="true" onAction="#recover" disable="${!controller.recoveryKeyCorrect}"/>
- </buttons>
- </ButtonBar>
- </VBox>
- </children>
- </VBox>
|