diff options
Diffstat (limited to 'src/jcgp/gui/GUI.java')
-rw-r--r-- | src/jcgp/gui/GUI.java | 57 |
1 files changed, 0 insertions, 57 deletions
diff --git a/src/jcgp/gui/GUI.java b/src/jcgp/gui/GUI.java index 8735ccd..d99bfbc 100644 --- a/src/jcgp/gui/GUI.java +++ b/src/jcgp/gui/GUI.java @@ -46,63 +46,6 @@ import jcgp.gui.settings.SettingsPane; * */ public class GUI extends Application { - - /* Colours */ - /** - * A string containing the hexadecimal colour used for representing neutrality. - */ - public static final String NEUTRAL_COLOUR = "#FFFFFF"; - /** - * A string containing the hexadecimal colour used for representing a hard highlight. - * A "hard" select, for instance, happens when an output path is locked on the chromosome - * pane. - */ - public static final String HARD_HIGHLIGHT_COLOUR = "#5496FF"; - /** - * A string containing the hexadecimal colour used for a medium highlight. - * One example of such a selection is the colour applied to a node - * when it is hovered over. - */ - public static final String MEDIUM_HIGHLIGHT_COLOUR = "#75BAFF"; - /** - * A string containing the hexadecimal colour used for a soft highlight. - * When hovering over a node, its connections are soft-selected. - */ - public static final String SOFT_HIGHLIGHT_COLOUR = "#C7DFFF"; - - /** - * A string containing the hexadecimal colour used for representing a good selection. - * Ideally a shade of green, used for instance when a manual connection is valid. - */ - public static final String GOOD_SELECTION_COLOUR = "#38C25B"; - /** - * A string containing the hexadecimal colour used for representing a neutral selection. - * Ideally a shade of yellow, used for instance when a manual connection is already the - * current connection. - */ - public static final String NEUTRAL_SELECTION_COLOUR = "#FFEF73"; - /** - * A string containing the hexadecimal colour used for representing a bad selection. - * Ideally a shade of red, use for instance when a manual connection is not valid. - */ - public static final String BAD_SELECTION_COLOUR = "#FF5C5C"; - - /* Sizes and distances */ - /** - * The width or height of the area that can be clicked on - * to drag-resize a pane. - */ - public static final double RESIZE_MARGIN = 5.0; - /** - * The minimum width of the settings pane, to prevent it - * from being resized beyond visibility. - */ - public static final double SETTINGS_MIN_WIDTH = 200; - /** - * The minimum width of the console pane, to prevent it - * from being resized beyond visibility. - */ - public static final double CONSOLE_MIN_HEIGHT = 100; /* * Actual GUI elements |