commit f2faa017462cc1f0a571c2b91a9718f9aa212058
parent aeeb1ed2f8f61f0d9fff14091553186bb337a432
Author: A Koens <[email protected]>
Date: Wed, 7 Sep 2022 21:29:41 +0200
CSS example / images
Added some css as an example and some images for later use.
Diffstat:
7 files changed, 35 insertions(+), 34 deletions(-)
diff --git a/pom.xml b/pom.xml
@@ -69,7 +69,7 @@
<!-- Default configuration for running with: mvn clean javafx:run -->
<id>default-cli</id>
<configuration>
- <mainClass>com.example.isygameclient/com.example.isygameclient.HelloApplication</mainClass>
+ <mainClass>com.example.isygameclient/com.example.isygameclient.Application</mainClass>
<launcher>app</launcher>
<jlinkZipName>app</jlinkZipName>
<jlinkImageName>app</jlinkImageName>
diff --git a/src/main/java/com/example/isygameclient/Application.java b/src/main/java/com/example/isygameclient/Application.java
@@ -0,0 +1,22 @@
+package com.example.isygameclient;
+
+import javafx.fxml.FXMLLoader;
+import javafx.scene.Scene;
+import javafx.stage.Stage;
+
+import java.io.IOException;
+
+public class Application extends javafx.application.Application {
+ @Override
+ public void start(Stage stage) throws IOException {
+ FXMLLoader fxmlLoader = new FXMLLoader(Application.class.getResource("views/hello-view.fxml"));
+ Scene scene = new Scene(fxmlLoader.load(), 320, 240);
+ stage.setTitle("Hello!");
+ stage.setScene(scene);
+ stage.show();
+ }
+
+ public static void main(String[] args) {
+ launch();
+ }
+}
+\ No newline at end of file
diff --git a/src/main/java/com/example/isygameclient/HelloApplication.java b/src/main/java/com/example/isygameclient/HelloApplication.java
@@ -1,23 +0,0 @@
-package com.example.isygameclient;
-
-import javafx.application.Application;
-import javafx.fxml.FXMLLoader;
-import javafx.scene.Scene;
-import javafx.stage.Stage;
-
-import java.io.IOException;
-
-public class HelloApplication extends Application {
- @Override
- public void start(Stage stage) throws IOException {
- FXMLLoader fxmlLoader = new FXMLLoader(HelloApplication.class.getResource("views/hello-view.fxml"));
- Scene scene = new Scene(fxmlLoader.load(), 320, 240);
- stage.setTitle("Hello!");
- stage.setScene(scene);
- stage.show();
- }
-
- public static void main(String[] args) {
- launch();
- }
-}
-\ No newline at end of file
diff --git a/src/main/resources/com/example/isygameclient/css/hello.css b/src/main/resources/com/example/isygameclient/css/hello.css
@@ -0,0 +1,3 @@
+.button {
+ -fx-background-color: #2196F3;
+}
+\ No newline at end of file
diff --git a/src/main/resources/com/example/isygameclient/images/reversie_logo.png b/src/main/resources/com/example/isygameclient/images/reversie_logo.png
Binary files differ.
diff --git a/src/main/resources/com/example/isygameclient/images/tictactoe_logo.png b/src/main/resources/com/example/isygameclient/images/tictactoe_logo.png
Binary files differ.
diff --git a/src/main/resources/com/example/isygameclient/views/hello-view.fxml b/src/main/resources/com/example/isygameclient/views/hello-view.fxml
@@ -1,16 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?>
-<?import javafx.geometry.Insets?>
-<?import javafx.scene.control.Label?>
-<?import javafx.scene.layout.VBox?>
+<?import javafx.geometry.*?>
+<?import javafx.scene.control.*?>
+<?import javafx.scene.layout.*?>
-<?import javafx.scene.control.Button?>
-<VBox alignment="CENTER" spacing="20.0" xmlns:fx="http://javafx.com/fxml"
- fx:controller="com.example.isygameclient.controllers.HelloController">
+<VBox alignment="CENTER" spacing="20.0" stylesheets="@../css/hello.css" xmlns:fx="http://javafx.com/fxml/1" xmlns="http://javafx.com/javafx/16" fx:controller="com.example.isygameclient.controllers.HelloController">
<padding>
- <Insets bottom="20.0" left="20.0" right="20.0" top="20.0"/>
+ <Insets bottom="20.0" left="20.0" right="20.0" top="20.0" />
</padding>
- <Label fx:id="welcomeText"/>
- <Button text="Hello!" onAction="#onHelloButtonClick"/>
+ <Label fx:id="welcomeText" />
+ <Button onAction="#onHelloButtonClick" text="Hello!" />
</VBox>