/
rgd045
/
crypt-file
Обзор
Документация
Войти
/
rgd045
/
crypt-file
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
src/main/resources/fxml/preferences.fxml
66 строк
2 KB
Sebastian Stenzel
moved interface settings to separate preferences tab
09 апр 2022, 16:13
Не верифицирован
09 апр 2022, 16:13
9b00cd9
Код
Авторство
О чём код?
<?xml version="1.0" encoding="UTF-8"?> <?import org.cryptomator.ui.controls.FontAwesome5IconView?> <?import javafx.scene.control.Tab?> <?import javafx.scene.control.TabPane?> <TabPane xmlns:fx="http://javafx.com/fxml" xmlns="http://javafx.com/javafx" fx:id="tabPane" fx:controller="org.cryptomator.ui.preferences.PreferencesController" minWidth="-Infinity" maxWidth="-Infinity" prefWidth="650" tabMinWidth="60" tabClosingPolicy="UNAVAILABLE" tabDragPolicy="FIXED"> <tabs> <Tab fx:id="generalTab" id="GENERAL" text="%preferences.general"> <graphic> <FontAwesome5IconView glyph="WRENCH"/> </graphic> <content> <fx:include source="preferences_general.fxml"/> </content> </Tab> <Tab fx:id="interfaceTab" id="INTERFACE" text="%preferences.interface"> <graphic> <FontAwesome5IconView glyph="EYE"/> </graphic> <content> <fx:include source="preferences_interface.fxml"/> </content> </Tab> <Tab fx:id="volumeTab" id="VOLUME" text="%preferences.volume"> <graphic> <FontAwesome5IconView glyph="HDD"/> </graphic> <content> <fx:include source="preferences_volume.fxml"/> </content> </Tab> <Tab fx:id="updatesTab" id="UPDATES" text="%preferences.updates"> <graphic> <FontAwesome5IconView glyph="SYNC"/> </graphic> <content> <fx:include source="preferences_updates.fxml"/> </content> </Tab> <Tab fx:id="contributeTab" id="CONTRIBUTE" text="%preferences.contribute"> <graphic> <FontAwesome5IconView glyph="HEART"/> </graphic> <content> <fx:include source="preferences_contribute.fxml"/> </content> </Tab> <Tab fx:id="aboutTab" id="ABOUT" text="%preferences.about"> <graphic> <FontAwesome5IconView glyph="INFO_CIRCLE"/> </graphic> <content> <fx:include source="preferences_about.fxml"/> </content> </Tab> </tabs> </TabPane>