commit 921c055c7da45a870242cc0394567220b95688f4 parent 42e72c32964e246e09efcd89386bb7fb41b88e2b Author: A Koens <[email protected]> Date: Wed, 12 Oct 2022 16:59:20 +0200 Basic Css Setup Have some a theme going in css. Also trying to add icons. Diffstat:
16 files changed, 462 insertions(+), 22 deletions(-)
diff --git a/.gitignore b/.gitignore @@ -40,4 +40,4 @@ target/* hs_err_pid* replay_pid* -.DS_Store +.DS_Store +\ No newline at end of file diff --git a/pom.xml b/pom.xml @@ -13,26 +13,38 @@ <junit.version>5.9.0</junit.version> </properties> <dependencies> + + <!-- JavaFx Dependencies --> <dependency> <groupId>org.openjfx</groupId> <artifactId>javafx-controls</artifactId> - <version>18.0.2</version> + <version>19</version> </dependency> <dependency> <groupId>org.openjfx</groupId> <artifactId>javafx-fxml</artifactId> - <version>18.0.2</version> + <version>19</version> </dependency> <dependency> <groupId>org.controlsfx</groupId> <artifactId>controlsfx</artifactId> <version>11.1.1</version> </dependency> + + <!-- JavaFX Styling Dependencies --> + <dependency> + <groupId>com.jfoenix</groupId> + <artifactId>jfoenix</artifactId> + <version>9.0.10</version> + </dependency> + <!-- https://mvnrepository.com/artifact/de.jensd/fontawesomefx --> <dependency> - <groupId>org.kordamp.bootstrapfx</groupId> - <artifactId>bootstrapfx-core</artifactId> - <version>0.4.0</version> + <groupId>de.jensd</groupId> + <artifactId>fontawesomefx</artifactId> + <version>8.9</version> </dependency> + + <!-- Junit Dependencies --> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> @@ -45,6 +57,8 @@ <version>${junit.version}</version> <scope>test</scope> </dependency> + + <!-- Lombok --> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> @@ -73,7 +87,7 @@ <!-- Default configuration for running with: mvn clean javafx:run --> <id>default-cli</id> <configuration> - <mainClass>nl.isygameclient/nl.isygameclient.Application</mainClass> + <mainClass>nl.isygameclient.Application</mainClass> <launcher>app</launcher> <jlinkZipName>app</jlinkZipName> <jlinkImageName>app</jlinkImageName> diff --git a/settings.properties b/settings.properties @@ -1,6 +1,6 @@ #Application Settings -#Thu Oct 06 02:16:19 CEST 2022 +#Wed Oct 12 16:40:16 CEST 2022 +screenWidth=680 fullscreen=false screenHeight=480 -screenWidth=680 title=ISY Game Client diff --git a/src/main/java/nl/isygameclient/Application.java b/src/main/java/nl/isygameclient/Application.java @@ -9,8 +9,8 @@ import nl.isygameclient.util.SettingsHandler; public class Application extends javafx.application.Application { @Override public void start(Stage primaryStage) throws IOException { - FXMLLoader fxmlLoader = new FXMLLoader(getClass().getResource("views/hello-view.fxml")); - Scene scene = new Scene(fxmlLoader.load(), SettingsHandler.getSettings().getScreenWidth(), SettingsHandler.getSettings().getScreenHeight()); + FXMLLoader fxmlLoader = new FXMLLoader(getClass().getResource("views/GameSelectorMenu.fxml")); + Scene scene = new Scene(fxmlLoader.load()); primaryStage.setTitle(SettingsHandler.getSettings().getTitle()); primaryStage.setScene(scene); primaryStage.setFullScreen(SettingsHandler.getSettings().isFullscreen()); diff --git a/src/main/java/nl/isygameclient/controllers/GameSelectorMenuController.java b/src/main/java/nl/isygameclient/controllers/GameSelectorMenuController.java @@ -0,0 +1,15 @@ +package nl.isygameclient.controllers; + +import javafx.scene.control.Button; +import javafx.scene.control.TextField; + +public class GameSelectorMenuController { + + public TextField searchBox; + public Button searchDeleteButton; + + public void handleClearSearchText() { + + } + +} diff --git a/src/main/resources/nl/isygameclient/css/colors.module.css b/src/main/resources/nl/isygameclient/css/colors.module.css @@ -0,0 +1,162 @@ +.on-error-container { + -fx-background-color: -md-color-on-error-container; +} +.on-error-container-text { + -fx-text-fill: -md-neutral100; +} +.on-error { + -fx-background-color: -md-color-on-error; +} +.on-error-text { + -fx-text-fill: -md-neutral100; +} +.error-container { + -fx-background-color: -md-color-error-container; +} +.error-container-text { + -fx-text-fill: -md-neutral100; +} +.on-tertiary-container { + -fx-background-color: -md-color-on-tertiary-container; +} +.on-tertiary-container-text { + -fx-text-fill: -md-neutral100; +} +.on-tertiary { + -fx-background-color: -md-color-on-tertiary; +} +.on-tertiary-text { + -fx-text-fill: -md-neutral100; +} +.tertiary-container { + -fx-background-color: -md-color-tertiary-container; +} +.tertiary-container-text { + -fx-text-fill: -md-neutral100; +} +.tertiary { + -fx-background-color: -md-color-tertiary; +} +.tertiary-text { + -fx-text-fill: -md-neutral100; +} +.shadow { + -fx-background-color: -md-color-shadow; +} +.shadow-text { + -fx-text-fill: -md-neutral100; +} +.error { + -fx-background-color: -md-color-error; +} +.error-text { + -fx-text-fill: -md-neutral100; +} +.outline { + -fx-background-color: -md-color-outline; +} +.outline-text { + -fx-text-fill: -md-neutral100; +} +.on-background { + -fx-background-color: -md-color-on-background; +} +.on-background-text { + -fx-text-fill: -md-neutral100; +} +.background { + -fx-background-color: -md-color-background; +} +.background-text { + -fx-text-fill: -md-neutral100; +} +.inverse-on-surface { + -fx-background-color: -md-color-inverse-on-surface; +} +.inverse-on-surface-text { + -fx-text-fill: -md-neutral100; +} +.inverse-surface { + -fx-background-color: -md-color-inverse-surface; +} +.inverse-surface-text { + -fx-text-fill: -md-neutral100; +} +.on-surface-variant { + -fx-background-color: -md-color-on-surface-variant; +} +.on-surface-variant-text { + -fx-text-fill: -md-neutral100; +} +.on-surface { + -fx-background-color: -md-color-on-surface; +} +.on-surface-text { + -fx-text-fill: -md-neutral100; +} +.surface-variant { + -fx-background-color: -md-color-surface-variant; +} +.surface-variant-text { + -fx-text-fill: -md-neutral100; +} +.surface { + -fx-background-color: -md-color-surface; +} +.surface-text { + -fx-text-fill: -md-neutral100; +} +.on-secondary-container { + -fx-background-color: -md-color-on-secondary-container; +} +.on-secondary-container-text { + -fx-text-fill: -md-neutral100; +} +.on-secondary { + -fx-background-color: -md-color-on-secondary; +} +.on-secondary-text { + -fx-text-fill: -md-neutral100; +} +.secondary-container { + -fx-background-color: -md-color-secondary-container; +} +.secondary-container-text { + -fx-text-fill: -md-neutral100; +} +.secondary { + -fx-background-color: -md-color-secondary; +} +.secondary-text { + -fx-text-fill: -md-neutral100; +} +.inverse-primary { + -fx-background-color: -md-color-inverse-primary; +} +.inverse-primary-text { + -fx-text-fill: -md-neutral100; +} +.on-primary-container { + -fx-background-color: -md-color-on-primary-container; +} +.on-primary-container-text { + -fx-text-fill: -md-neutral100; +} +.on-primary { + -fx-background-color: -md-color-on-primary; +} +.on-primary-text { + -fx-text-fill: -md-neutral100; +} +.primary-container { + -fx-background-color: -md-color-primary-container; +} +.primary-container-text { + -fx-text-fill: -md-neutral100; +} +.primary { + -fx-background-color: -md-color-primary; +} +.primary-text { + -fx-text-fill: -md-neutral100; +} diff --git a/src/main/resources/nl/isygameclient/css/hello.css b/src/main/resources/nl/isygameclient/css/hello.css @@ -1,3 +0,0 @@ -.button { - -fx-background-color: #2196F3; -} -\ No newline at end of file diff --git a/src/main/resources/nl/isygameclient/css/icons.module.css b/src/main/resources/nl/isygameclient/css/icons.module.css @@ -0,0 +1,11 @@ +.search { + -fx-shape: "M9 2C5.1458514 2 2 5.1458514 2 9C2 12.854149 5.1458514 16 9 16C10.747998 16 12.345009 15.348024 13.574219 14.28125L14 14.707031L14 16L20 22L22 20L16 14L14.707031 14L14.28125 13.574219C15.348024 12.345009 16 10.747998 16 9C16 5.1458514 12.854149 2 9 2 z M 9 4C11.773268 4 14 6.2267316 14 9C14 11.773268 11.773268 14 9 14C6.2267316 14 4 11.773268 4 9C4 6.2267316 6.2267316 4 9 4 z"; +} + +.close { + -fx-shape: "M4.7070312 3.2929688L3.2929688 4.7070312L10.585938 12L3.2929688 19.292969L4.7070312 20.707031L12 13.414062L19.292969 20.707031L20.707031 19.292969L13.414062 12L20.707031 4.7070312L19.292969 3.2929688L12 10.585938L4.7070312 3.2929688 z"; +} + +.settings { + -fx-shape: "M11.423828 2C11.179828 2 10.969688 2.1769687 10.929688 2.4179688L10.646484 4.1230469C10.159736 4.2067166 9.689176 4.3360771 9.2363281 4.5039062L8.1347656 3.1679688C7.9797656 2.9789688 7.7100469 2.9297344 7.4980469 3.0527344L6.5019531 3.6289062C6.2899531 3.7509062 6.1972031 4.0083281 6.2832031 4.2363281L6.8886719 5.8535156C6.513238 6.1663963 6.1663963 6.513238 5.8535156 6.8886719L4.2363281 6.2832031C4.0083281 6.1972031 3.7509062 6.2899531 3.6289062 6.5019531L3.0527344 7.4980469C2.9297344 7.7100469 2.9789688 7.9797656 3.1679688 8.1347656L4.5039062 9.2363281C4.3360771 9.689176 4.2067166 10.159736 4.1230469 10.646484L2.4179688 10.929688C2.1769687 10.970688 2 11.178828 2 11.423828L2 12.576172C2 12.820172 2.1769687 13.030312 2.4179688 13.070312L4.1230469 13.353516C4.2067166 13.840264 4.3360771 14.310824 4.5039062 14.763672L3.1679688 15.865234C2.9789687 16.020234 2.9307344 16.289953 3.0527344 16.501953L3.6289062 17.498047C3.7509062 17.710047 4.0083281 17.802797 4.2363281 17.716797L5.8535156 17.111328C6.1663963 17.486762 6.513238 17.833604 6.8886719 18.146484L6.2832031 19.763672C6.1972031 19.992672 6.2909531 20.249094 6.5019531 20.371094L7.4980469 20.947266C7.7100469 21.069266 7.9797656 21.020031 8.1347656 20.832031L9.234375 19.496094C9.6877476 19.664236 10.15912 19.793178 10.646484 19.876953L10.929688 21.582031C10.970688 21.823031 11.178828 22 11.423828 22L12.576172 22C12.820172 22 13.030312 21.823031 13.070312 21.582031L13.353516 19.876953C13.840264 19.793283 14.310824 19.663923 14.763672 19.496094L15.865234 20.832031C16.020234 21.021031 16.289953 21.069266 16.501953 20.947266L17.498047 20.371094C17.710047 20.249094 17.802797 19.991672 17.716797 19.763672L17.111328 18.146484C17.486762 17.833604 17.833604 17.486762 18.146484 17.111328L19.763672 17.716797C19.992672 17.802797 20.249094 17.709047 20.371094 17.498047L20.947266 16.501953C21.069266 16.289953 21.020031 16.020234 20.832031 15.865234L19.496094 14.765625C19.664236 14.312252 19.793178 13.84088 19.876953 13.353516L21.582031 13.070312C21.823031 13.029312 22 12.821172 22 12.576172L22 11.423828C22 11.179828 21.823031 10.969688 21.582031 10.929688L19.876953 10.646484C19.793283 10.159736 19.663923 9.689176 19.496094 9.2363281L20.832031 8.1347656C21.021031 7.9797656 21.069266 7.7100469 20.947266 7.4980469L20.371094 6.5019531C20.249094 6.2899531 19.991672 6.1972031 19.763672 6.2832031L18.146484 6.8886719C17.833604 6.513238 17.486762 6.1663963 17.111328 5.8535156L17.716797 4.2363281C17.802797 4.0073281 17.709047 3.7509062 17.498047 3.6289062L16.501953 3.0527344C16.289953 2.9307344 16.020234 2.9799687 15.865234 3.1679688L14.765625 4.5039062C14.312252 4.3357635 13.84088 4.2068225 13.353516 4.1230469L13.070312 2.4179688C13.029312 2.1769687 12.821172 2 12.576172 2L11.423828 2 z M 11 6.0898438L11 9.1738281 A 3 3 0 0 0 9 12 A 3 3 0 0 0 9.0507812 12.548828L6.3789062 14.089844C6.1382306 13.438833 6 12.736987 6 12C6 9.0161425 8.1553612 6.5637988 11 6.0898438 z M 13 6.0898438C15.844639 6.5637988 18 9.0161425 18 12C18 12.737875 17.86037 13.440133 17.619141 14.091797L14.947266 12.546875 A 3 3 0 0 0 15 12 A 3 3 0 0 0 13 9.1757812L13 6.0898438 z M 13.947266 14.277344L16.628906 15.826172C15.530388 17.156023 13.868625 18 12 18C10.131375 18 8.4696124 17.156023 7.3710938 15.826172L10.050781 14.279297 A 3 3 0 0 0 12 15 A 3 3 0 0 0 13.947266 14.277344 z"; +} diff --git a/src/main/resources/nl/isygameclient/css/style.css b/src/main/resources/nl/isygameclient/css/style.css @@ -0,0 +1,41 @@ +.button { + -height: 20; + -width: 20; + -fill: -md-primary400; + + -fx-padding: 5; + -fx-min-height: -height; + -fx-min-width: -width; + -fx-max-height: -height; + -fx-max-width: -width; +} + +.search-bar { + -fx-padding: 0 0 0 25; + -fx-text-fill: -md-color-text; + -fx-border-color: -md-color-on-surface; + -fx-border-width: 2; + -fx-border-radius: 10 10 10 10; +} + +.transparent { + -fx-background-color: transparent; +} + +.button:hover { + -fill: -md-primary300; +} + +.button:armed { + -fill: -md-primary500; +} + +.exit-button { + -height: 16; + -width: 16; + -fill: -md-color-on-surface; +} + +.exit-button:hover { + -fill: -md-color-on-error; +} diff --git a/src/main/resources/nl/isygameclient/css/theme.css b/src/main/resources/nl/isygameclient/css/theme.css @@ -0,0 +1,4 @@ +@import url(tokens.css); +@import url(colors.module.css); +@import url(icons.module.css); +@import url(style.css); diff --git a/src/main/resources/nl/isygameclient/css/tokens.css b/src/main/resources/nl/isygameclient/css/tokens.css @@ -0,0 +1,122 @@ +* { + -md-source: #4caf50; + -md-color-black: #000000; + -md-color-white: #ffffff; + + /* error */ + -md-error50: #ffebee; + -md-error100: #ffcdd2; + -md-error200: #ef9a9a; + -md-error300: #e57373; + -md-error400: #ef5350; + -md-error500: #f44336; + -md-error600: #e53935; + -md-error700: #d32f2f; + -md-error800: #c62828; + -md-error900: #b71c1c; + + /* primary */ + -md-primary50: #e8f5e9; + -md-primary100: #c8e6c9; + -md-primary200: #a5d6a7; + -md-primary300: #81c784; + -md-primary400: #66bb6a; + -md-primary500: #4caf50; + -md-primary600: #43a047; + -md-primary700: #388e3c; + -md-primary800: #2e7d32; + -md-primary900: #1b5e20; + + /* secondary */ + -md-secondary50: #fff3e0; + -md-secondary100: #ffe0b2; + -md-secondary200: #ffcc80; + -md-secondary300: #ffb74d; + -md-secondary400: #ffa726; + -md-secondary500: #ff9800; + -md-secondary600: #fb8c00; + -md-secondary700: #f57c00; + -md-secondary800: #ef6c00; + -md-secondary900: #e65100; + + /* tertiary */ + -md-tertiary50: #e0f2f1; + -md-tertiary100: #b2dfdb; + -md-tertiary200: #80cbc4; + -md-tertiary300: #4db6ac; + -md-tertiary400: #26a69a; + -md-tertiary500: #009688; + -md-tertiary600: #00897b; + -md-tertiary700: #00796b; + -md-tertiary800: #00695c; + -md-tertiary900: #004d40; + + /* neutral */ + -md-neutral50: #fafafa; + -md-neutral100: #f5f5f5; + -md-neutral200: #eeeeee; + -md-neutral300: #e0e0e0; + -md-neutral400: #bdbdbd; + -md-neutral500: #787579; + -md-neutral600: #757575; + -md-neutral700: #616161; + -md-neutral800: #424242; + -md-neutral900: #212121; + + /* neutral-variant */ + -md-neutral-variant50: #eceff1; + -md-neutral-variant100: #cfd8dc; + -md-neutral-variant200: #b0bec5; + -md-neutral-variant300: #90a4ae; + -md-neutral-variant400: #78909c; + -md-neutral-variant500: #607d8b; + -md-neutral-variant600: #546e7a; + -md-neutral-variant700: #455a64; + -md-neutral-variant800: #37474f; + -md-neutral-variant900: #263238; + + /* Primary */ + -md-color-inverse-primary: -md-primary200; + -md-color-on-primary-container: -md-primary100; + -md-color-on-primary: -md-primary500; + -md-color-primary-container: -md-primary400; + -md-color-primary: -md-primary300; + + /* Secondary */ + -md-color-on-secondary-container: -md-secondary200; + -md-color-on-secondary: -md-secondary500; + -md-color-secondary-container: -md-secondary400; + -md-color-secondary: -md-secondary300; + + /* Tertiary */ + -md-color-on-tertiary-container: -md-error200; + -md-color-on-tertiary: -md-error400; + -md-color-tertiary-container: -md-error500; + -md-color-tertiary: -md-error300; + + /* Error */ + -md-color-on-error-container: -md-error300; + -md-color-on-error: -md-error500; + -md-color-error-container: -md-error600; + -md-color-error: -md-error300; + + /* Surface */ + -md-color-inverse-on-surface: -md-neutral500; + -md-color-inverse-surface: -md-neutral100; + + -md-color-on-surface-variant: -md-neutral-variant300; + -md-color-on-surface: -md-neutral300; + -md-color-surface-variant: -md-neutral700; + -md-color-surface: -md-neutral800; + + /* Background */ + -md-color-shadow: -md-color-black; + -md-color-outline: -md-neutral600; + -md-color-on-background: -md-neutral300; + -md-color-background: -md-neutral800; + + /* Text Colors */ + -md-color-text-highlight: -md-color-white; + -md-color-text-sub: -md-neutral400; + -md-color-text: -md-neutral200; +} diff --git a/src/main/resources/nl/isygameclient/images/icons/svg/icons8_close.svg b/src/main/resources/nl/isygameclient/images/icons/svg/icons8_close.svg @@ -0,0 +1,4 @@ +<?xml version="1.0" encoding="utf-8"?><s +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="480" height="480"> + <path d="M4.7070312 3.2929688L3.2929688 4.7070312L10.585938 12L3.2929688 19.292969L4.7070312 20.707031L12 13.414062L19.292969 20.707031L20.707031 19.292969L13.414062 12L20.707031 4.7070312L19.292969 3.2929688L12 10.585938L4.7070312 3.2929688 z" fill="#5B5B5B" /> +</svg> +\ No newline at end of file diff --git a/src/main/resources/nl/isygameclient/images/icons/svg/icons8_search_1.svg b/src/main/resources/nl/isygameclient/images/icons/svg/icons8_search_1.svg @@ -0,0 +1,4 @@ +<?xml version="1.0" encoding="utf-8"?><s +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="480" height="480"> + <path d="M9 2C5.1458514 2 2 5.1458514 2 9C2 12.854149 5.1458514 16 9 16C10.747998 16 12.345009 15.348024 13.574219 14.28125L14 14.707031L14 16L20 22L22 20L16 14L14.707031 14L14.28125 13.574219C15.348024 12.345009 16 10.747998 16 9C16 5.1458514 12.854149 2 9 2 z M 9 4C11.773268 4 14 6.2267316 14 9C14 11.773268 11.773268 14 9 14C6.2267316 14 4 11.773268 4 9C4 6.2267316 6.2267316 4 9 4 z" fill="#5B5B5B" /> +</svg> +\ No newline at end of file diff --git a/src/main/resources/nl/isygameclient/images/icons/svg/icons8_settings.svg b/src/main/resources/nl/isygameclient/images/icons/svg/icons8_settings.svg @@ -0,0 +1,4 @@ +<?xml version="1.0" encoding="utf-8"?><s +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="480" height="480"> + <path d="M11.423828 2C11.179828 2 10.969688 2.1769687 10.929688 2.4179688L10.646484 4.1230469C10.159736 4.2067166 9.689176 4.3360771 9.2363281 4.5039062L8.1347656 3.1679688C7.9797656 2.9789688 7.7100469 2.9297344 7.4980469 3.0527344L6.5019531 3.6289062C6.2899531 3.7509062 6.1972031 4.0083281 6.2832031 4.2363281L6.8886719 5.8535156C6.513238 6.1663963 6.1663963 6.513238 5.8535156 6.8886719L4.2363281 6.2832031C4.0083281 6.1972031 3.7509062 6.2899531 3.6289062 6.5019531L3.0527344 7.4980469C2.9297344 7.7100469 2.9789688 7.9797656 3.1679688 8.1347656L4.5039062 9.2363281C4.3360771 9.689176 4.2067166 10.159736 4.1230469 10.646484L2.4179688 10.929688C2.1769687 10.970688 2 11.178828 2 11.423828L2 12.576172C2 12.820172 2.1769687 13.030312 2.4179688 13.070312L4.1230469 13.353516C4.2067166 13.840264 4.3360771 14.310824 4.5039062 14.763672L3.1679688 15.865234C2.9789687 16.020234 2.9307344 16.289953 3.0527344 16.501953L3.6289062 17.498047C3.7509062 17.710047 4.0083281 17.802797 4.2363281 17.716797L5.8535156 17.111328C6.1663963 17.486762 6.513238 17.833604 6.8886719 18.146484L6.2832031 19.763672C6.1972031 19.992672 6.2909531 20.249094 6.5019531 20.371094L7.4980469 20.947266C7.7100469 21.069266 7.9797656 21.020031 8.1347656 20.832031L9.234375 19.496094C9.6877476 19.664236 10.15912 19.793178 10.646484 19.876953L10.929688 21.582031C10.970688 21.823031 11.178828 22 11.423828 22L12.576172 22C12.820172 22 13.030312 21.823031 13.070312 21.582031L13.353516 19.876953C13.840264 19.793283 14.310824 19.663923 14.763672 19.496094L15.865234 20.832031C16.020234 21.021031 16.289953 21.069266 16.501953 20.947266L17.498047 20.371094C17.710047 20.249094 17.802797 19.991672 17.716797 19.763672L17.111328 18.146484C17.486762 17.833604 17.833604 17.486762 18.146484 17.111328L19.763672 17.716797C19.992672 17.802797 20.249094 17.709047 20.371094 17.498047L20.947266 16.501953C21.069266 16.289953 21.020031 16.020234 20.832031 15.865234L19.496094 14.765625C19.664236 14.312252 19.793178 13.84088 19.876953 13.353516L21.582031 13.070312C21.823031 13.029312 22 12.821172 22 12.576172L22 11.423828C22 11.179828 21.823031 10.969688 21.582031 10.929688L19.876953 10.646484C19.793283 10.159736 19.663923 9.689176 19.496094 9.2363281L20.832031 8.1347656C21.021031 7.9797656 21.069266 7.7100469 20.947266 7.4980469L20.371094 6.5019531C20.249094 6.2899531 19.991672 6.1972031 19.763672 6.2832031L18.146484 6.8886719C17.833604 6.513238 17.486762 6.1663963 17.111328 5.8535156L17.716797 4.2363281C17.802797 4.0073281 17.709047 3.7509062 17.498047 3.6289062L16.501953 3.0527344C16.289953 2.9307344 16.020234 2.9799687 15.865234 3.1679688L14.765625 4.5039062C14.312252 4.3357635 13.84088 4.2068225 13.353516 4.1230469L13.070312 2.4179688C13.029312 2.1769687 12.821172 2 12.576172 2L11.423828 2 z M 11 6.0898438L11 9.1738281 A 3 3 0 0 0 9 12 A 3 3 0 0 0 9.0507812 12.548828L6.3789062 14.089844C6.1382306 13.438833 6 12.736987 6 12C6 9.0161425 8.1553612 6.5637988 11 6.0898438 z M 13 6.0898438C15.844639 6.5637988 18 9.0161425 18 12C18 12.737875 17.86037 13.440133 17.619141 14.091797L14.947266 12.546875 A 3 3 0 0 0 15 12 A 3 3 0 0 0 13 9.1757812L13 6.0898438 z M 13.947266 14.277344L16.628906 15.826172C15.530388 17.156023 13.868625 18 12 18C10.131375 18 8.4696124 17.156023 7.3710938 15.826172L10.050781 14.279297 A 3 3 0 0 0 12 15 A 3 3 0 0 0 13.947266 14.277344 z" fill="#5B5B5B" /> +</svg> +\ No newline at end of file diff --git a/src/main/resources/nl/isygameclient/views/GameSelectorMenu.fxml b/src/main/resources/nl/isygameclient/views/GameSelectorMenu.fxml @@ -0,0 +1,54 @@ +<?xml version="1.0" encoding="UTF-8"?> + +<?import java.lang.*?> +<?import javafx.scene.control.*?> +<?import javafx.scene.layout.*?> +<?import de.jensd.fx.glyphs.fontawesome.FontAwesomeIconView?> + + +<AnchorPane minHeight="480.0" minWidth="600.0" prefHeight="480.0" prefWidth="600.0" styleClass="background" stylesheets="@../css/theme.css" xmlns="http://javafx.com/javafx/16" xmlns:fx="http://javafx.com/fxml/1" fx:controller="nl.isygameclient.controllers.GameSelectorMenuController"> + <BorderPane AnchorPane.bottomAnchor="0.0" AnchorPane.leftAnchor="0.0" AnchorPane.rightAnchor="0.0" AnchorPane.topAnchor="0.0"> + <center> + <VBox BorderPane.alignment="CENTER"> + <Label styleClass="error-container-text" text="Label" /> + <Separator maxWidth="50.0" prefWidth="10.0" /> + <FontAwesomeIconView/> + </VBox> + </center> + <left> + <AnchorPane BorderPane.alignment="CENTER"> + <VBox AnchorPane.bottomAnchor="0.0" AnchorPane.leftAnchor="0.0" AnchorPane.rightAnchor="0.0" AnchorPane.topAnchor="0.0"> + <Label alignment="CENTER" styleClass="background-text" text="Games"> + </Label> + <Button text="Close"> + </Button> + <StackPane styleClass="highlight-rectangle"> + <TextField fx:id="searchBox" promptText="Search"> + <styleClass> + <String fx:value="transparent" /> + <String fx:value="search-bar" /> + </styleClass></TextField> + <Button fx:id="searchDeleteButton" mnemonicParsing="false" onAction="#handleClearSearchText" StackPane.alignment="CENTER_RIGHT"> + <styleClass> + <String fx:value="button" /> + <String fx:value="exit-button" /> + <String fx:value="close" /> + </styleClass></Button> + <Button mnemonicParsing="false" StackPane.alignment="CENTER_LEFT"> + <styleClass> + <String fx:value="button" /> + <String fx:value="search-button" /> + <String fx:value="search" /> + </styleClass></Button> + </StackPane> + <AnchorPane VBox.vgrow="ALWAYS"> + <ListView styleClass="background" AnchorPane.bottomAnchor="0.0" AnchorPane.leftAnchor="0.0" AnchorPane.topAnchor="0.0" /> + </AnchorPane> + </VBox> + </AnchorPane> + </left> + <top> + <HBox prefHeight="28.0" prefWidth="600.0" BorderPane.alignment="CENTER" /> + </top> + </BorderPane> +</AnchorPane> diff --git a/src/main/resources/nl/isygameclient/views/hello-view.fxml b/src/main/resources/nl/isygameclient/views/hello-view.fxml @@ -4,11 +4,16 @@ <?import javafx.scene.control.*?> <?import javafx.scene.layout.*?> -<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="nl.isygameclient.controllers.HelloController"> - <padding> - <Insets bottom="20.0" left="20.0" right="20.0" top="20.0" /> - </padding> - <Label fx:id="welcomeText" /> - <Button fx:id="welcomeButton" onAction="#onHelloButtonClick" text="Hello!" /> -</VBox> +<AnchorPane minHeight="-Infinity" minWidth="-Infinity" prefHeight="600.0" prefWidth="800.0" xmlns="http://javafx.com/javafx/16" xmlns:fx="http://javafx.com/fxml/1" fx:controller="nl.isygameclient.controllers.HelloController"> + <children> + <VBox alignment="CENTER" spacing="20.0" stylesheets="@../css/hello.css" AnchorPane.bottomAnchor="0.0" AnchorPane.leftAnchor="0.0" AnchorPane.rightAnchor="0.0" AnchorPane.topAnchor="0.0"> + <padding> + <Insets bottom="20.0" left="20.0" right="20.0" top="20.0" /> + </padding> + + <Label fx:id="welcomeText" /> + <Button fx:id="welcomeButton" onAction="#onHelloButtonClick" text="Hello!" /> + </VBox> + </children> +</AnchorPane>