- Update libRefTools library - Completely rewrote Tabs class - Tabs class now uses ShiftingList to ensure that unused resources get recycled - Loaded resources can now be unloaded at will - Loaded resources can now be reloaded at will - Previously loaded, non-recycled resources are loaded from ShiftingList - Added implicit sub-tab support by requesting a parent to place tab in - Added blank settings sub-tab layout asset files - Fixed some continuity for variables in Main class - Made css style handling changes to allow for dynamic color change and selection of tabs - Id's are no longer used to define style of tabs. That is done by styleClass now - StyleClasses are now updated from Main when a tab is selected - Selected tabs use regular tab "hover" color to signify selection - Selected tabs that are being hovered over are even darker - Added "local layout" references inside onMouseClicked listeners to continuity - Made updating currently selected tab easier by moving all the code to a method
27 lines
1.4 KiB
XML
27 lines
1.4 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<?import javafx.scene.control.Button?>
|
|
<?import javafx.scene.control.Label?>
|
|
<?import javafx.scene.layout.Pane?>
|
|
<?import javafx.scene.shape.Rectangle?>
|
|
<?import javafx.scene.text.Font?>
|
|
|
|
<Pane id="pane" maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="450.0" prefWidth="750.0" stylesheets="@../style/nav.css" xmlns="http://javafx.com/javafx/8.0.112-ea" xmlns:fx="http://javafx.com/fxml/1">
|
|
<children>
|
|
<Rectangle id="Modpack-back" arcHeight="5.0" arcWidth="5.0" height="50.0" strokeType="INSIDE" width="750.0" />
|
|
<Label layoutX="34.0" layoutY="5.0" text="Settings" textFill="WHITE">
|
|
<font>
|
|
<Font name="Centaur" size="31.0" />
|
|
</font>
|
|
</Label>
|
|
<Rectangle arcHeight="5.0" arcWidth="5.0" fill="#0d0d39" height="40.0" layoutY="50.0" width="750.0" />
|
|
<Button styleClass="selected" id="Settings-Gen-btn" layoutX="0.0" layoutY="50.0" mnemonicParsing="false" prefHeight="40.0" prefWidth="100.0" text="General" textFill="WHITE" />
|
|
<Button styleClass="tab" id="Settings-Mine-btn" layoutX="100.0" layoutY="50.0" mnemonicParsing="false" prefHeight="40.0" prefWidth="100.0" text="Minecraft" textFill="WHITE">
|
|
<font>
|
|
<Font name="Candara" size="12.0" />
|
|
</font>
|
|
</Button>
|
|
<Pane id="Settings-Pane" layoutY="90.0" prefHeight="360.0" prefWidth="750.0" />
|
|
</children>
|
|
</Pane>
|