Skip to content
Snippets Groups Projects
Commit e308ff5c authored by gpawel's avatar gpawel
Browse files

LMS-2502 image transformations: proper initialization

SVN: 22945
parent 8cc7efa0
No related branches found
No related tags found
No related merge requests found
......@@ -42,6 +42,7 @@ import ch.systemsx.cisd.openbis.plugin.screening.shared.basic.dto.DatasetImagesR
import ch.systemsx.cisd.openbis.plugin.screening.shared.basic.dto.DatasetOverlayImagesReference;
import ch.systemsx.cisd.openbis.plugin.screening.shared.basic.dto.ImageChannel;
import ch.systemsx.cisd.openbis.plugin.screening.shared.basic.dto.ImageDatasetParameters;
import ch.systemsx.cisd.openbis.plugin.screening.shared.basic.dto.ImageTransformationInfo;
import ch.systemsx.cisd.openbis.plugin.screening.shared.basic.dto.WellSearchCriteria.AnalysisProcedureCriteria;
/**
......@@ -90,6 +91,9 @@ class ChannelChooser
this.basicChannelCodes =
getInitialChannelCodes(defaultChannelState, basicImage.getChannelsCodes());
this.imageTransformationCodeOrNull =
tryGetInitialImageTransformationCode(defaultChannelState, basicChannelCodes,
basicImage.getImagetParameters());
this.defaultChannelState = defaultChannelState;
this.selectedOverlayChannels = new HashSet<ImageDatasetChannel>();
}
......@@ -305,4 +309,37 @@ class ChannelChooser
return defaultChannels;
}
private static String tryGetInitialImageTransformationCode(
IDefaultChannelState defaultChannelState, List<String> channels,
ImageDatasetParameters imageParameters)
{
if (imageParameters != null && channels.size() == 1)
{
String channel = channels.get(0);
String initialTransformation = defaultChannelState.tryGetDefaultTransformation(channel);
if (ChannelChooserPanel.DEFAULT_TRANSFORMATION_CODE.equals(initialTransformation))
{
return null;
}
String defaultSelection = null;
List<ImageTransformationInfo> transformations =
imageParameters.getAvailableImageTransformationsFor(channel);
for (ImageTransformationInfo transformation : transformations)
{
if (transformation.getCode().equals(initialTransformation))
{
return initialTransformation;
}
if (transformation.isDefault() && defaultSelection == null)
{
defaultSelection = transformation.getCode();
}
}
return defaultSelection;
}
return null;
}
}
......@@ -70,10 +70,10 @@ public class ChannelChooserPanel extends LayoutContainer
void selectionChanged(List<String> channels, String imageTransformationCodeOrNull);
}
private static final String DEFAULT_CODE = "$DEFAULT$";
public static final String DEFAULT_TRANSFORMATION_CODE = "$DEFAULT$";
private static final LabeledItem<ImageTransformationInfo> DEFAULT_TRANSFORMATION =
convertToLabeledItem(new ImageTransformationInfo(DEFAULT_CODE, "Default",
convertToLabeledItem(new ImageTransformationInfo(DEFAULT_TRANSFORMATION_CODE, "Default",
"Default transformation or original picture if not tranformed.", "", false));
private final IMessageProvider messageProvider;
......@@ -344,7 +344,7 @@ public class ChannelChooserPanel extends LayoutContainer
String code =
transformationsComboBox.getSelection().get(0).getValue().getItem().getCode();
if (DEFAULT_CODE.equals(code))
if (DEFAULT_TRANSFORMATION_CODE.equals(code))
{
return null;
} else
......
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