preferences_about.fxml 1.1 KB

12345678910111213141516171819202122232425262728293031
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <?import org.cryptomator.ui.controls.FormattedLabel?>
  3. <?import javafx.geometry.Insets?>
  4. <?import javafx.scene.control.Label?>
  5. <?import javafx.scene.control.TextArea?>
  6. <?import javafx.scene.image.Image?>
  7. <?import javafx.scene.image.ImageView?>
  8. <?import javafx.scene.layout.HBox?>
  9. <?import javafx.scene.layout.VBox?>
  10. <VBox xmlns:fx="http://javafx.com/fxml"
  11. xmlns="http://javafx.com/javafx"
  12. fx:controller="org.cryptomator.ui.preferences.AboutController"
  13. spacing="18">
  14. <padding>
  15. <Insets topRightBottomLeft="12"/>
  16. </padding>
  17. <children>
  18. <HBox spacing="12" VBox.vgrow="NEVER">
  19. <ImageView VBox.vgrow="ALWAYS" fitHeight="64" preserveRatio="true" smooth="true" cache="true">
  20. <Image url="@../img/bot/bot.png"/>
  21. </ImageView>
  22. <VBox spacing="3" HBox.hgrow="ALWAYS" alignment="CENTER_LEFT">
  23. <FormattedLabel styleClass="label-large" format="Cryptomator %s" arg1="${controller.applicationVersion}"/>
  24. <Label text="© 2016 – 2021 Skymatic GmbH"/>
  25. </VBox>
  26. </HBox>
  27. <TextArea text="${controller.thirdPartyLicenseText}" editable="false"/>
  28. </children>
  29. </VBox>