Skip to content
Snippets Groups Projects
Commit 16f23cf2 authored by Locatelli's avatar Locatelli
Browse files

New acquisition

- Add active option
- Summary of detectors settings
parent d85a5066
No related branches found
Tags 4.3.24
No related merge requests found
......@@ -120,6 +120,7 @@ public abstract class ColorFactory {
protected static final int[] commandLineResultsBackground = new int[] {240, 240, 208};
protected static final int[] error = new int[] {230, 0, 0};
protected static final int[] warning = new int[] {244, 241, 15};
protected static final int[] locked = new int[] {60, 246, 11};
protected static final int[] fixed = new int[] {150, 150, 150};
......
......@@ -91,6 +91,7 @@ public class SWTColorFactory extends ColorFactory {
private static final RGB commandLineResultsBackgroundRGB = createRGB(commandLineResultsBackground[0], commandLineResultsBackground[1], commandLineResultsBackground[2]);
private static final RGB errorRGB = createRGB(error[0], error[1], error[2]);
private static final RGB warningRGB = createRGB(warning[0], warning[1], warning[2]);
private static final RGB lockedRGB = createRGB(locked[0], locked[1], locked[2]);
private static final RGB fixedRGB = createRGB(fixed[0], fixed[1], fixed[2]);
......@@ -377,6 +378,10 @@ public class SWTColorFactory extends ColorFactory {
return getColor(commandLineResultsBackgroundRGB);
}
public static Color getErrorColor() {
return getColor(errorRGB);
}
public static Color getWarningColor() {
return getColor(warningRGB);
}
......
......@@ -97,6 +97,12 @@ DETECTOR_SETTINGS.INDEXPART=indexPart
DETECTOR_SETTINGS.NBGGS=nbGGs
DETECTOR_SETTINGS.GGINDICE=ggIndice
DETECTOR_SETTINGS.GGTYPE=ggType
DETECTOR_SETTINGS.ACQCARDNAME=acqCardName
DETECTOR_SETTINGS.ACQNBINDEX=acqNbIndex
DETECTOR_SETTINGS.ACQINDEXMISSING=acqIndexMissing
DETECTOR_SETTINGS.ACQINDEX=acqIndex
DETECTOR_SETTINGS.ACQDETECTORNAME=acqDetectorName
DETECTOR_SETTINGS.ACQSTATUS=acqStatus
DETECTOR_SETTINGS.ADD_DET_COMMAND=adddet
DETECTOR_SETTINGS.REMOVE_DET_COMMAND=removedet
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment