Added things

This commit is contained in:
Michael-Jouanneau 2016-12-22 17:56:01 +01:00
parent f4272851c2
commit 0e269a5b64
5 changed files with 13 additions and 10 deletions

View File

@ -23,10 +23,7 @@ import javafx.collections.ObservableList;
import javafx.scene.Node; import javafx.scene.Node;
import javafx.scene.Parent; import javafx.scene.Parent;
import javafx.scene.Scene; import javafx.scene.Scene;
import javafx.scene.control.Button; import javafx.scene.control.*;
import javafx.scene.control.Label;
import javafx.scene.control.PasswordField;
import javafx.scene.control.TextField;
import javafx.scene.image.Image; import javafx.scene.image.Image;
import javafx.scene.image.ImageView; import javafx.scene.image.ImageView;
import javafx.scene.input.MouseEvent; import javafx.scene.input.MouseEvent;
@ -72,6 +69,8 @@ public class Main extends Application {
private PasswordField Password_minecraft; private PasswordField Password_minecraft;
Node activeTab, settings_activeTab; Node activeTab, settings_activeTab;
private Label dialog_changer; private Label dialog_changer;
private CheckBox RAM_Default;
private Slider RAM_slider;
Async stringUpdater; Async stringUpdater;
@ -111,7 +110,6 @@ public class Main extends Application {
dragBar = (Rectangle) root.lookup("#rectangle"); dragBar = (Rectangle) root.lookup("#rectangle");
Home_btn = (Button) root.lookup("#Home-btn"); Home_btn = (Button) root.lookup("#Home-btn");
Modpack_btn = (Button) root.lookup("#Modpacks-btn"); Modpack_btn = (Button) root.lookup("#Modpacks-btn");
Settings_btn = (Button) root.lookup("#Settings-btn"); Settings_btn = (Button) root.lookup("#Settings-btn");
@ -221,6 +219,11 @@ public class Main extends Application {
System.out.println("Logging in ...."); System.out.println("Logging in ....");
}); });
}); });
RAM_Default = (CheckBox) Tabs.load("settings_minecraft").lookup("#RAM-Default");
RAM_slider = (Slider) Tabs.load("settings_minecraft").lookup("#RAM-slider");
RAM_slider.setDisable(true);
RAM_Default.setSelected(true);
} }
}); });

View File

@ -20,13 +20,13 @@
</font></Label> </font></Label>
<Button id="minecraft-login-btn" layoutX="90.0" layoutY="71.0" mnemonicParsing="false" prefHeight="30.0" prefWidth="59.0" text="Login" /> <Button id="minecraft-login-btn" layoutX="90.0" layoutY="71.0" mnemonicParsing="false" prefHeight="30.0" prefWidth="59.0" text="Login" />
<Label id="login" layoutX="160.0" layoutY="78.0" text="Not logged in" /> <Label id="login" layoutX="160.0" layoutY="78.0" text="Not logged in" />
<Slider id="lable" blockIncrement="1.0" disable="true" layoutX="15.0" layoutY="147.0" majorTickUnit="1.0" max="16.0" minorTickCount="0" prefHeight="37.0" prefWidth="286.0" showTickLabels="true" showTickMarks="true" value="8.0" /> <Slider id="RAM-slider" blockIncrement="1.0" layoutX="15.0" layoutY="147.0" majorTickUnit="1.0" max="16.0" minorTickCount="0" prefHeight="37.0" prefWidth="286.0" showTickLabels="true" showTickMarks="true" value="8.0" />
<Label id="lable" layoutX="14.0" layoutY="123.0" text="Alocated RAM :"> <Label id="lable" layoutX="14.0" layoutY="123.0" text="Alocated RAM :">
<font> <font>
<Font name="Century" size="15.0" /> <Font name="Century" size="15.0" />
</font> </font>
</Label> </Label>
<CheckBox id="lable" layoutX="149.0" layoutY="124.0" mnemonicParsing="false" selected="true" text="Use Systems Default"> <CheckBox id="RAM-Default" layoutX="149.0" layoutY="124.0" mnemonicParsing="false" text="Use Systems Default">
<font> <font>
<Font name="Century" size="13.0" /> <Font name="Century" size="13.0" />
</font> </font>

View File

@ -57,7 +57,7 @@
-fx-text-fill: black; -fx-text-fill: black;
} }
#lable { #lable, #RAM-Default, #RAM-slider {
-fx-text-fill: white; -fx-text-fill: white;
} }

View File

@ -57,7 +57,7 @@
-fx-text-fill: black; -fx-text-fill: black;
} }
#lable { #lable, #RAM-Default, #RAM-slider {
-fx-text-fill: white; -fx-text-fill: white;
} }

View File

@ -57,7 +57,7 @@
-fx-text-fill: black; -fx-text-fill: black;
} }
#lable { #lable, #RAM-Default, #RAM-slider {
-fx-text-fill: black; -fx-text-fill: black;
} }