mirror of
https://github.com/cryptomator/cryptomator.git
synced 2026-05-18 10:41:26 +00:00
44 lines
2.0 KiB
XML
44 lines
2.0 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<?import javafx.geometry.Insets?>
|
|
<?import javafx.scene.control.CheckBox?>
|
|
<?import javafx.scene.control.ChoiceBox?>
|
|
<?import javafx.scene.control.Hyperlink?>
|
|
<?import javafx.scene.control.Label?>
|
|
<?import javafx.scene.control.RadioButton?>
|
|
<?import javafx.scene.control.ToggleGroup?>
|
|
<?import javafx.scene.layout.HBox?>
|
|
<?import javafx.scene.layout.VBox?>
|
|
<VBox xmlns:fx="http://javafx.com/fxml"
|
|
xmlns="http://javafx.com/javafx"
|
|
fx:controller="org.cryptomator.ui.preferences.InterfacePreferencesController"
|
|
spacing="12">
|
|
<fx:define>
|
|
<ToggleGroup fx:id="nodeOrientation"/>
|
|
</fx:define>
|
|
<padding>
|
|
<Insets topRightBottomLeft="24"/>
|
|
</padding>
|
|
<children>
|
|
<HBox spacing="12" alignment="CENTER_LEFT">
|
|
<Label text="%preferences.interface.theme"/>
|
|
<ChoiceBox fx:id="themeChoiceBox" disable="${!controller.licenseHolder.validLicense}"/>
|
|
<Hyperlink styleClass="hyperlink-underline,hyperlink-muted" text="%preferences.interface.unlockThemes" onAction="#showContributeTab" visible="${!controller.licenseHolder.validLicense}" managed="${!controller.licenseHolder.validLicense}"/>
|
|
</HBox>
|
|
|
|
<HBox spacing="12" alignment="CENTER_LEFT">
|
|
<Label text="%preferences.interface.language"/>
|
|
<ChoiceBox fx:id="preferredLanguageChoiceBox"/>
|
|
</HBox>
|
|
|
|
<HBox spacing="12" alignment="CENTER_LEFT">
|
|
<Label text="%preferences.interface.interfaceOrientation" HBox.hgrow="NEVER"/>
|
|
<RadioButton fx:id="nodeOrientationLtr" text="%preferences.interface.interfaceOrientation.ltr" alignment="CENTER_LEFT" toggleGroup="${nodeOrientation}"/>
|
|
<RadioButton fx:id="nodeOrientationRtl" text="%preferences.interface.interfaceOrientation.rtl" alignment="CENTER_RIGHT" toggleGroup="${nodeOrientation}"/>
|
|
</HBox>
|
|
|
|
<CheckBox fx:id="showTrayIconCheckbox" text="%preferences.interface.showTrayIcon" visible="${controller.trayMenuSupported}" managed="${controller.trayMenuSupported}"/>
|
|
<CheckBox fx:id="compactModeCheckbox" text="%preferences.interface.compactMode"/>
|
|
</children>
|
|
</VBox>
|