1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- <?xml version="1.0" encoding="UTF-8"?>
- <?import org.cryptomator.ui.controls.FormattedLabel?>
- <?import org.cryptomator.ui.controls.NiceSecurePasswordField?>
- <?import javafx.geometry.Insets?>
- <?import javafx.scene.control.Button?>
- <?import javafx.scene.control.ButtonBar?>
- <?import javafx.scene.control.CheckBox?>
- <?import javafx.scene.image.Image?>
- <?import javafx.scene.image.ImageView?>
- <?import javafx.scene.layout.HBox?>
- <?import javafx.scene.layout.StackPane?>
- <?import javafx.scene.layout.VBox?>
- <?import org.cryptomator.ui.controls.FontAwesome5Spinner?>
- <VBox xmlns:fx="http://javafx.com/fxml"
- xmlns="http://javafx.com/javafx"
- fx:controller="org.cryptomator.ui.keyloading.masterkeyfile.PassphraseEntryController"
- minWidth="400"
- maxWidth="400"
- minHeight="145"
- spacing="12">
- <padding>
- <Insets topRightBottomLeft="12"/>
- </padding>
- <children>
- <HBox spacing="12" VBox.vgrow="ALWAYS">
- <StackPane alignment="CENTER" HBox.hgrow="NEVER">
- <ImageView VBox.vgrow="ALWAYS" fitWidth="64" preserveRatio="true" smooth="true" cache="true" fx:id="face" visible="false">
- <Image url="@../img/bot/face.png"/>
- </ImageView>
- <ImageView VBox.vgrow="ALWAYS" fitWidth="64" preserveRatio="true" smooth="true" cache="true" fx:id="leftArm" visible="false">
- <Image url="@../img/bot/arm-l.png"/>
- </ImageView>
- <ImageView VBox.vgrow="ALWAYS" fitWidth="64" preserveRatio="true" smooth="true" cache="true" fx:id="rightArm" visible="false">
- <Image url="@../img/bot/arm-r.png"/>
- </ImageView>
- <ImageView VBox.vgrow="ALWAYS" fitWidth="64" preserveRatio="true" smooth="true" cache="true" fx:id="legs" visible="false">
- <Image url="@../img/bot/legs.png"/>
- </ImageView>
- <ImageView VBox.vgrow="ALWAYS" fitWidth="64" preserveRatio="true" smooth="true" cache="true" fx:id="body">
- <Image url="@../img/bot/body.png"/>
- </ImageView>
- </StackPane>
- <VBox spacing="6" HBox.hgrow="ALWAYS">
- <FormattedLabel format="%unlock.passwordPrompt" arg1="${controller.vaultName}" wrapText="true"/>
- <NiceSecurePasswordField fx:id="passwordField" disable="${controller.userInteractionDisabled}"/>
- <CheckBox fx:id="savePasswordCheckbox" text="%unlock.savePassword" onAction="#didClickSavePasswordCheckbox" disable="${controller.userInteractionDisabled}" visible="${controller.keychainAccessAvailable}"/>
- </VBox>
- </HBox>
- <VBox alignment="BOTTOM_CENTER" VBox.vgrow="ALWAYS">
- <ButtonBar buttonMinWidth="120" buttonOrder="+CI">
- <buttons>
- <Button text="%generic.button.cancel" ButtonBar.buttonData="CANCEL_CLOSE" cancelButton="true" onAction="#cancel" disable="${controller.userInteractionDisabled}"/>
- <Button text="%unlock.unlockBtn" ButtonBar.buttonData="FINISH" defaultButton="true" onAction="#unlock" contentDisplay="${controller.unlockButtonContentDisplay}" disable="${controller.unlockButtonDisabled}">
- <graphic>
- <FontAwesome5Spinner glyphSize="12" />
- </graphic>
- </Button>
- </buttons>
- </ButtonBar>
- </VBox>
- </children>
- </VBox>
|