mirror of
https://github.com/cryptomator/cryptomator.git
synced 2026-07-29 11:32:38 +00:00
44 lines
1.6 KiB
XML
44 lines
1.6 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<?import org.cryptomator.ui.controls.FontAwesome5IconView?>
|
|
<?import javafx.scene.control.Button?>
|
|
<?import javafx.scene.control.Hyperlink?>
|
|
<?import javafx.scene.layout.HBox?>
|
|
<?import javafx.scene.layout.Region?>
|
|
<?import javafx.scene.layout.VBox?>
|
|
<VBox xmlns:fx="http://javafx.com/fxml"
|
|
xmlns="http://javafx.com/javafx"
|
|
fx:controller="org.cryptomator.ui.mainwindow.VaultDetailLockedController"
|
|
alignment="TOP_CENTER"
|
|
spacing="9">
|
|
<children>
|
|
<Button styleClass="button-large" text="%main.vaultDetail.unlockBtn" minWidth="120" onAction="#unlock" defaultButton="${controller.vault.locked}" visible="${!controller.passwordSaved}"
|
|
managed="${!controller.passwordSaved}">
|
|
<graphic>
|
|
<FontAwesome5IconView glyph="KEY" glyphSize="15"/>
|
|
</graphic>
|
|
</Button>
|
|
<Button styleClass="button-large" text="%main.vaultDetail.unlockNowBtn" minWidth="120" onAction="#unlock" defaultButton="${controller.vault.locked}" visible="${controller.passwordSaved}"
|
|
managed="${controller.passwordSaved}">
|
|
<graphic>
|
|
<FontAwesome5IconView glyph="KEY" glyphSize="15"/>
|
|
</graphic>
|
|
</Button>
|
|
<Hyperlink text="%main.vaultDetail.passwordSavedInKeychain" visible="${controller.passwordSaved}" onAction="#showKeyVaultOptions">
|
|
<graphic>
|
|
<FontAwesome5IconView glyph="LOCK"/>
|
|
</graphic>
|
|
</Hyperlink>
|
|
|
|
<Region VBox.vgrow="ALWAYS"/>
|
|
|
|
<HBox alignment="BOTTOM_RIGHT">
|
|
<Button text="%main.vaultDetail.optionsBtn" minWidth="120" onAction="#showVaultOptions">
|
|
<graphic>
|
|
<FontAwesome5IconView glyph="COG"/>
|
|
</graphic>
|
|
</Button>
|
|
</HBox>
|
|
</children>
|
|
</VBox>
|