This commit is contained in:
Gabriel Tofvesson 2016-10-30 16:12:54 +01:00
parent a0f74457b3
commit 8b9ea9d0e8
2 changed files with 9 additions and 0 deletions

View File

@ -28,6 +28,7 @@ public class Main extends Application {
private Button exit, min, Home_btn, Modpack_btn; // Define buttons
private Rectangle dragBar; // Draggable top bar
private Pane root, tab;
private Tabs activeTab = Tabs.Home;
@Override
public void start(Stage primaryStage) throws Exception{
@ -51,6 +52,8 @@ public class Main extends Application {
// Infrastructural navigation
exit.setOnMouseClicked(event -> primaryStage.close());
min.setOnMouseClicked(event -> primaryStage.setIconified(true));
Home_btn.setOnMouseClicked(event -> { if(activeTab!=Tabs.Home) (activeTab=Tabs.Home).switchTab(tab); });
Modpack_btn.setOnMouseClicked(event -> { if(activeTab!=Tabs.Modpacks) (activeTab=Tabs.Modpacks).switchTab(tab); });
// Drag
dragBar.setOnMousePressed(event -> {

View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.scene.control.ColorPicker?>
<ColorPicker xmlns="http://javafx.com/javafx/8.0.102" xmlns:fx="http://javafx.com/fxml/1" />