simple_dialog.fxml 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <?import org.cryptomator.ui.controls.FontAwesome5IconView?>
  3. <?import javafx.geometry.Insets?>
  4. <?import javafx.scene.control.Button?>
  5. <?import javafx.scene.control.ButtonBar?>
  6. <?import javafx.scene.control.Label?>
  7. <?import javafx.scene.Group?>
  8. <?import javafx.scene.layout.HBox?>
  9. <?import javafx.scene.layout.Region?>
  10. <?import javafx.scene.layout.StackPane?>
  11. <?import javafx.scene.layout.VBox?>
  12. <?import javafx.scene.shape.Circle?>
  13. <HBox xmlns:fx="http://javafx.com/fxml"
  14. xmlns="http://javafx.com/javafx"
  15. fx:controller="org.cryptomator.ui.dialogs.SimpleDialogController"
  16. minWidth="400"
  17. maxWidth="400"
  18. minHeight="145"
  19. spacing="12">
  20. <padding>
  21. <Insets topRightBottomLeft="12"/>
  22. </padding>
  23. <children>
  24. <Group>
  25. <StackPane>
  26. <padding>
  27. <Insets topRightBottomLeft="6"/>
  28. </padding>
  29. <Circle styleClass="glyph-icon-primary" radius="24"/>
  30. <FontAwesome5IconView glyph="${controller.icon}" styleClass="glyph-icon-white" glyphSize="24"/>
  31. </StackPane>
  32. </Group>
  33. <VBox HBox.hgrow="ALWAYS">
  34. <Label text="${controller.message}" styleClass="label-large" wrapText="true">
  35. <padding>
  36. <Insets bottom="6" top="6"/>
  37. </padding>
  38. </Label>
  39. <Label text="${controller.description}" wrapText="true"/>
  40. <Region VBox.vgrow="ALWAYS" minHeight="18"/>
  41. <ButtonBar buttonMinWidth="120" buttonOrder="+CI">
  42. <buttons>
  43. <Button text="${controller.cancelButtonText}" ButtonBar.buttonData="CANCEL_CLOSE" cancelButton="true" onAction="#handleCancel" visible="${controller.cancelButtonVisible}" managed="${controller.cancelButtonVisible}"/>
  44. <Button text="${controller.okButtonText}" ButtonBar.buttonData="FINISH" defaultButton="true" onAction="#handleOk"/>
  45. </buttons>
  46. </ButtonBar>
  47. </VBox>
  48. </children>
  49. </HBox>