123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <?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.layout.HBox?>
- <?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.lock.LockForcedController"
- minWidth="400"
- maxWidth="400"
- minHeight="145"
- spacing="12">
- <padding>
- <Insets topRightBottomLeft="12"/>
- </padding>
- <children>
- <HBox spacing="12" alignment="CENTER_LEFT" VBox.vgrow="ALWAYS">
- <StackPane alignment="CENTER" HBox.hgrow="NEVER">
- <Circle styleClass="glyph-icon-orange" radius="24"/>
- <FontAwesome5IconView styleClass="glyph-icon-white" glyph="EXCLAMATION" glyphSize="24"/>
- </StackPane>
- <VBox spacing="6">
- <Label styleClass="label-large" text="%lock.forced.heading"/>
- <FormattedLabel format="%lock.forced.message" arg1="${controller.vaultName}" wrapText="true"/>
- </VBox>
- </HBox>
- <VBox alignment="BOTTOM_CENTER" VBox.vgrow="ALWAYS">
- <ButtonBar buttonMinWidth="100" buttonOrder="+CIU">
- <buttons>
- <Button text="%generic.button.cancel" ButtonBar.buttonData="CANCEL_CLOSE" defaultButton="true" cancelButton="true" onAction="#cancel"/>
- <Button text="%lock.forced.retryBtn" ButtonBar.buttonData="FINISH" onAction="#retry"/>
- <Button text="%lock.forced.forceBtn" ButtonBar.buttonData="OTHER" onAction="#force" disable="${!controller.forceSupported}"/>
- </buttons>
- </ButtonBar>
- </VBox>
- </children>
- </VBox>
|