quit.fxml 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <?import org.cryptomator.ui.controls.FontAwesome5IconView?>
  3. <?import org.cryptomator.ui.controls.FontAwesome5Spinner?>
  4. <?import javafx.geometry.Insets?>
  5. <?import javafx.scene.control.Button?>
  6. <?import javafx.scene.control.ButtonBar?>
  7. <?import javafx.scene.control.Label?>
  8. <?import javafx.scene.Group?>
  9. <?import javafx.scene.layout.HBox?>
  10. <?import javafx.scene.layout.Region?>
  11. <?import javafx.scene.layout.StackPane?>
  12. <?import javafx.scene.layout.VBox?>
  13. <?import javafx.scene.shape.Circle?>
  14. <HBox xmlns:fx="http://javafx.com/fxml"
  15. xmlns="http://javafx.com/javafx"
  16. fx:controller="org.cryptomator.ui.quit.QuitController"
  17. minWidth="400"
  18. maxWidth="400"
  19. minHeight="145"
  20. spacing="12"
  21. alignment="TOP_LEFT">
  22. <padding>
  23. <Insets topRightBottomLeft="12"/>
  24. </padding>
  25. <children>
  26. <Group>
  27. <StackPane>
  28. <padding>
  29. <Insets topRightBottomLeft="6"/>
  30. </padding>
  31. <Circle styleClass="glyph-icon-primary" radius="24"/>
  32. <FontAwesome5IconView styleClass="glyph-icon-white" glyph="EXCLAMATION" glyphSize="24"/>
  33. </StackPane>
  34. </Group>
  35. <VBox HBox.hgrow="ALWAYS">
  36. <Label styleClass="label-large" text="%quit.title" wrapText="true" textAlignment="LEFT">
  37. <padding>
  38. <Insets bottom="6" top="6"/>
  39. </padding>
  40. </Label>
  41. <Label text="%quit.prompt" wrapText="true" textAlignment="LEFT"/>
  42. <Region VBox.vgrow="ALWAYS" minHeight="18"/>
  43. <ButtonBar buttonMinWidth="120" buttonOrder="+CI">
  44. <buttons>
  45. <Button text="%generic.button.cancel" ButtonBar.buttonData="CANCEL_CLOSE" defaultButton="true" cancelButton="true" onAction="#cancel"/>
  46. <Button fx:id="lockAndQuitButton" text="%quit.lockAndQuit" ButtonBar.buttonData="FINISH" onAction="#lockAndQuit" contentDisplay="TEXT_ONLY">
  47. <graphic>
  48. <FontAwesome5Spinner glyphSize="12"/>
  49. </graphic>
  50. </Button>
  51. </buttons>
  52. </ButtonBar>
  53. </VBox>
  54. </children>
  55. </HBox>