Changed Things

This commit is contained in:
Michael-Jouanneau 2016-11-15 18:37:04 +01:00
parent 4404f599db
commit b0880c3e35
5 changed files with 46 additions and 5 deletions

View File

@ -30,6 +30,7 @@ import javafx.scene.shape.Rectangle;
import javafx.stage.Stage;
import javafx.stage.StageStyle;
import java.io.File;
import com.tofvesson.async.*;
import javafx.util.Duration;
@ -45,9 +46,10 @@ public class Main extends Application {
public static final int semVerMinor = 2; // Minor version
public static final int semVerPatch = 3; // Patch version
private double xOffset = 0, yOffset = 0; // Offsets for dragging
private static String[] args;
private Button exit, min, Home_btn, Modpack_btn, Settings_btn, Instance_btn; // Define buttons
private Button exit, min, Home_btn, Modpack_btn, Settings_btn, Instance_btn, Default_theme, Dark_theme, Light_theme; // Define buttons
private ImageView icon;
private TextField Search_modpacks;
private Image appIcon;
@ -96,6 +98,9 @@ public class Main extends Application {
Modpack_btn = (Button) root.lookup("#Modpacks-btn");
Settings_btn = (Button) root.lookup("#Settings-btn");
Instance_btn = (Button) root.lookup("#Instance-btn");
Default_theme = (Button) root.lookup("#default-theme");
Light_theme = (Button) root.lookup("#light-theme");
Dark_theme = (Button) root.lookup("#dark-theme");
dialog_changer = (Label) root.lookup("#dialog-changer");
@ -147,7 +152,9 @@ public class Main extends Application {
if(!settings_activeTab.getId().equals(n.lookup("#Settings-Gen-btn").getId())){ // Use id to identify layouts
updateTabSelection(n.lookup("#Settings-Gen-btn"), TabType.SETTINGS);
Node genericLayout = Tabs.switchTab("settings_generic", (Pane) n.lookup("#Settings-Pane"));
Tabs.load("settings_generic").lookup("#default-theme").setOnMouseClicked(event2 ->{
});
}
});

View File

@ -1,9 +1,13 @@
package Launcher.net;
import Launcher.Main;
import Launcher.Tabs;
import com.tofvesson.async.Async;
import com.tofvesson.reflection.SafeReflection;
import javafx.animation.Timeline;
import javafx.scene.control.Label;
import javafx.scene.layout.Pane;
import javax.net.ssl.HttpsURLConnection;
import java.io.*;
import java.net.MalformedURLException;

View File

@ -19,4 +19,5 @@
<Font size="17.0" />
</font>
</Label>
<Label id="i" layoutX="202.0" layoutY="75.0" text="$i" />
</Pane>

View File

@ -7,13 +7,18 @@
<Pane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="360.0" prefWidth="750.0" stylesheets="@../style/default-theme.css" xmlns="http://javafx.com/javafx/8.0.112-ea" xmlns:fx="http://javafx.com/fxml/1">
<children>
<Label layoutX="22.0" layoutY="14.0" text="General Settings">
<Label layoutX="22.0" layoutY="14.0" text="General Settings" textFill="WHITE">
<font>
<Font name="Centaur" size="25.0" />
</font>
</Label>
<Button layoutX="22.0" layoutY="72.0" mnemonicParsing="false" text="light" />
<Button layoutX="96.0" layoutY="72.0" mnemonicParsing="false" text="dark" />
<Button layoutX="170.0" layoutY="72.0" mnemonicParsing="false" text="default" />
<Button id="light-theme" layoutX="242.0" layoutY="71.0" prefHeight="30.0" prefWidth="62.0" text="light" />
<Button id="dark-theme" layoutX="172.0" layoutY="71.0" prefHeight="30.0" prefWidth="62.0" text="dark" />
<Button id="default-theme" layoutX="100.0" layoutY="71.0" prefHeight="30.0" prefWidth="62.0" text="default" />
<Label layoutX="35.0" layoutY="75.0" text="Theme:" textFill="WHITE">
<font>
<Font name="Centaur" size="17.0" />
</font>
</Label>
</children>
</Pane>

View File

@ -13,6 +13,30 @@
-fx-fill: #0d0d39;
}
#default-theme,#dark-theme, #light-theme {
-fx-background-color: #181a39;
-fx-background-radius: 0em;
-fx-text-fill: white;
}
#default-theme:hover {
-fx-background-color: #0d0c39;
-fx-background-radius: 0em;
-fx-text-fill: white;
}
#dark-theme:hover {
-fx-background-color: #1c1c1c;
-fx-background-radius: 0em;
-fx-text-fill: white;
}
#light-theme:hover {
-fx-background-color: #bcbcbc;
-fx-background-radius: 0em;
-fx-text-fill: black;
}
#Modpack-back {
-fx-fill: #0a0e2e;
}