File for global gui constants.
This commit is contained in:
36
src/main/java/gui/src/constants/GUIConstants.java
Normal file
36
src/main/java/gui/src/constants/GUIConstants.java
Normal file
@@ -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
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user