preferences.fxml 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <?import org.cryptomator.ui.controls.FontAwesome5IconView?>
  3. <?import javafx.scene.control.Tab?>
  4. <?import javafx.scene.control.TabPane?>
  5. <TabPane xmlns:fx="http://javafx.com/fxml"
  6. xmlns="http://javafx.com/javafx"
  7. fx:id="tabPane"
  8. fx:controller="org.cryptomator.ui.preferences.PreferencesController"
  9. minWidth="-Infinity"
  10. maxWidth="-Infinity"
  11. prefWidth="650"
  12. tabMinWidth="60"
  13. tabClosingPolicy="UNAVAILABLE"
  14. tabDragPolicy="FIXED">
  15. <tabs>
  16. <Tab fx:id="generalTab" id="GENERAL" text="%preferences.general">
  17. <graphic>
  18. <FontAwesome5IconView glyph="WRENCH"/>
  19. </graphic>
  20. <content>
  21. <fx:include source="preferences_general.fxml"/>
  22. </content>
  23. </Tab>
  24. <Tab fx:id="interfaceTab" id="INTERFACE" text="%preferences.interface">
  25. <graphic>
  26. <FontAwesome5IconView glyph="EYE"/>
  27. </graphic>
  28. <content>
  29. <fx:include source="preferences_interface.fxml"/>
  30. </content>
  31. </Tab>
  32. <Tab fx:id="volumeTab" id="VOLUME" text="%preferences.volume">
  33. <graphic>
  34. <FontAwesome5IconView glyph="HDD"/>
  35. </graphic>
  36. <content>
  37. <fx:include source="preferences_volume.fxml"/>
  38. </content>
  39. </Tab>
  40. <Tab fx:id="updatesTab" id="UPDATES" text="%preferences.updates">
  41. <graphic>
  42. <FontAwesome5IconView glyph="SYNC"/>
  43. </graphic>
  44. <content>
  45. <fx:include source="preferences_updates.fxml"/>
  46. </content>
  47. </Tab>
  48. <Tab fx:id="contributeTab" id="CONTRIBUTE" text="%preferences.contribute">
  49. <graphic>
  50. <FontAwesome5IconView glyph="HEART"/>
  51. </graphic>
  52. <content>
  53. <fx:include source="preferences_contribute.fxml"/>
  54. </content>
  55. </Tab>
  56. <Tab fx:id="aboutTab" id="ABOUT" text="%preferences.about">
  57. <graphic>
  58. <FontAwesome5IconView glyph="INFO_CIRCLE"/>
  59. </graphic>
  60. <content>
  61. <fx:include source="preferences_about.fxml"/>
  62. </content>
  63. </Tab>
  64. </tabs>
  65. </TabPane>