From 544a3fd9b35a6e24a25ca2fa13f6c3542efeb316 Mon Sep 17 00:00:00 2001 From: WickedJack99 Date: Wed, 1 Nov 2023 20:53:14 +0100 Subject: [PATCH] File for global gui constants. --- .../java/gui/src/constants/GUIConstants.java | 36 +++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 src/main/java/gui/src/constants/GUIConstants.java diff --git a/src/main/java/gui/src/constants/GUIConstants.java b/src/main/java/gui/src/constants/GUIConstants.java new file mode 100644 index 0000000..54fca9b --- /dev/null +++ b/src/main/java/gui/src/constants/GUIConstants.java @@ -0,0 +1,36 @@ +/** + * @author Aaron Moser + * @date 31.10.2023 + */ + +package gui.src.constants; + +public class GUIConstants { + /** + * Represents kinds of frames. + */ + public static enum Frame { + MainFrame, + } + + /** + * Represents kinds of panels. + */ + public static enum Panel { + MonitoringPanel, + ControllingPanel + } + + /** + * Represents kinds of themes. + */ + public static enum Theme { + Dark, + Light + } + + public static enum Languages { + German, + English + } +}