Chnaged things

This commit is contained in:
Michael-Jouanneau 2016-11-06 12:46:47 +01:00
parent 68eef0e6a6
commit 1a44490454
5 changed files with 22 additions and 28 deletions

View File

@ -15,6 +15,7 @@ import javafx.application.Application;
import javafx.fxml.FXMLLoader;
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.scene.control.Tab;
import javafx.scene.control.TextField;
import javafx.scene.image.Image;
import javafx.scene.image.ImageView;
@ -30,7 +31,7 @@ public class Main extends Application {
public static final URL mainLauncher = Main.class.getResource("../assets/layout/main.fxml"); // Launcher body
private double xOffset = 0, yOffset = 0; // Offsets for dragging
private Button exit, min, Home_btn, Modpack_btn, Settings_btn; // Define buttons
private Button exit, min, Home_btn, Modpack_btn, Settings_btn, Instance_btn; // Define buttons
private ImageView icon;
private TextField Search_modpacks;
private Image appIcon;
@ -61,6 +62,7 @@ public class Main extends Application {
Home_btn = (Button) root.lookup("#Home-btn");
Modpack_btn = (Button) root.lookup("#Modpacks-btn");
Settings_btn = (Button) root.lookup("#Settings-btn");
Instance_btn = (Button) root.lookup("#Instance-btn");
tab = (Pane) root.lookup("#tab");
@ -92,6 +94,13 @@ public class Main extends Application {
}
});
Instance_btn.setOnMouseClicked(event -> {
if(activeTab!=Tabs.Instance){
(activeTab = Tabs.Instance).switchTab(tab);
}
});
Settings_btn.setOnMouseClicked(event ->{
if(activeTab!=Tabs.Settings){
(activeTab=Tabs.Settings).switchTab(tab); // Sets the active tab to the settings tab unless it's already active

View File

@ -8,7 +8,10 @@ import java.net.URL;
public enum Tabs {
Modpacks(Tabs.class.getResource("../assets/layout/modpacks.fxml")), Home(Tabs.class.getResource("../assets/layout/home.fxml")), Settings(Tabs.class.getResource("../assets/layout/settings.fxml"));
Modpacks(Tabs.class.getResource("../assets/layout/modpacks.fxml")),
Home(Tabs.class.getResource("../assets/layout/home.fxml")),
Settings(Tabs.class.getResource("../assets/layout/settings.fxml")),
Instance(Tabs.class.getResource("../assets/layout/instance.fxml"));
/**
* Url referencing xml.

View File

@ -29,7 +29,12 @@
<Font name="Centaur" size="16.0" />
</font>
</Button>
<Button id="Settings-btn" layoutY="130.0" mnemonicParsing="false" prefHeight="40.0" prefWidth="150.0" text="Settings" textFill="WHITE" textOverrun="CLIP">
<Button id="Instance-btn" layoutY="130.0" mnemonicParsing="false" prefHeight="40.0" prefWidth="150.0" text="Instances" textFill="WHITE" textOverrun="CLIP">
<font>
<Font name="Centaur" size="16.0" />
</font>
</Button>
<Button id="Settings-btn" layoutY="170.0" mnemonicParsing="false" prefHeight="40.0" prefWidth="150.0" text="Settings" textFill="WHITE" textOverrun="CLIP">
<font>
<Font name="Centaur" size="16.0" />
</font>

View File

@ -1,23 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.scene.control.Button?>
<?import javafx.scene.control.Hyperlink?>
<?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="500" prefWidth="900" style="-fx-background-color: rgb(42, 44, 58);" xmlns="http://javafx.com/javafx/8.0.102" xmlns:fx="http://javafx.com/fxml/1">
<children>
<Rectangle id="rectangle" arcHeight="5.0" arcWidth="5.0" fill="white" height="50.0" strokeType="INSIDE" style="-fx-fill: rgb(29, 31, 48);" width="900.0" />
<Button id="exit" alignment="TOP_RIGHT" contentDisplay="RIGHT" layoutX="862.0" layoutY="13.0" mnemonicParsing="false" style="-fx-background-color: rgb(29, 31, 48);" stylesheets="@../style/nav.css" text="X" textFill="WHITE" />
<Label layoutX="46.0" layoutY="11.0" text="Team Avion Launcher" textFill="WHITE">
<font>
<Font name="Centaur" size="24.0" />
</font>
</Label>
<Rectangle arcHeight="5.0" arcWidth="5.0" fill="#e4e4e4" height="450.0" layoutX="-1.0" layoutY="50.0" strokeType="INSIDE" style="-fx-fill: rgb(29, 31, 48);" width="145.0" />
<Hyperlink id="hyperlink" layoutX="26.0" layoutY="66.0" text="Our Modpacks" />
<Hyperlink layoutX="26.0" layoutY="102.0" text="Settings" />
</children>
</Pane>

View File

@ -13,10 +13,10 @@
#min:hover, #exit:hover{
-fx-background-color: #bf0000;
}
#Home-btn, #Modpacks-btn, #Settings-btn {
#Home-btn, #Modpacks-btn, #Settings-btn, #Instance-btn {
-fx-background-color: rgba(0, 0, 0, 0);
}
#Home-btn:hover, #Modpacks-btn:hover, #Settings-btn:hover {
#Home-btn:hover, #Modpacks-btn:hover, #Settings-btn:hover, #Instance-btn:hover {
-fx-background-color: #0c182d;
-fx-background-radius: 0em;
}