mirror of
https://github.com/cryptomator/cryptomator.git
synced 2026-05-28 15:40:20 +00:00
44 lines
1.6 KiB
XML
44 lines
1.6 KiB
XML
<?import org.cryptomator.ui.controls.FontAwesome5IconView?>
|
|
<?import javafx.geometry.Insets?>
|
|
<?import javafx.scene.control.Button?>
|
|
<?import javafx.scene.control.Label?>
|
|
<?import javafx.scene.layout.StackPane?>
|
|
<?import javafx.scene.layout.VBox?>
|
|
<?import javafx.scene.shape.Circle?>
|
|
<VBox xmlns:fx="http://javafx.com/fxml"
|
|
xmlns="http://javafx.com/javafx"
|
|
fx:controller="org.cryptomator.ui.mainwindow.VaultDetailMissingVaultController"
|
|
alignment="TOP_CENTER"
|
|
spacing="9">
|
|
<children>
|
|
<VBox spacing="9" alignment="CENTER">
|
|
<StackPane alignment="CENTER">
|
|
<Circle styleClass="glyph-icon-primary" radius="48"/>
|
|
<FontAwesome5IconView styleClass="glyph-icon-white" glyph="FILE" glyphSize="48"/>
|
|
<FontAwesome5IconView styleClass="glyph-icon-primary" glyph="SEARCH" glyphSize="24">
|
|
<StackPane.margin>
|
|
<Insets top="12"/>
|
|
</StackPane.margin>
|
|
</FontAwesome5IconView>
|
|
</StackPane>
|
|
<Label text="%main.vaultDetail.missing.info" wrapText="true"/>
|
|
</VBox>
|
|
<VBox spacing="6" alignment="CENTER">
|
|
<Button text="%main.vaultDetail.missing.recheck" minWidth="120" onAction="#recheck">
|
|
<graphic>
|
|
<FontAwesome5IconView glyph="REDO"/>
|
|
</graphic>
|
|
</Button>
|
|
<Button text="%main.vaultDetail.missing.changeLocation" minWidth="120" onAction="#changeLocation">
|
|
<graphic>
|
|
<FontAwesome5IconView glyph="EDIT"/>
|
|
</graphic>
|
|
</Button>
|
|
<Button text="%main.vaultDetail.missing.remove" minWidth="120" onAction="#didClickRemoveVault">
|
|
<graphic>
|
|
<FontAwesome5IconView glyph="TRASH"/>
|
|
</graphic>
|
|
</Button>
|
|
</VBox>
|
|
</children>
|
|
</VBox> |