/* * #%L * gitools-ui-app * %% * Copyright (C) 2013 Universitat Pompeu Fabra - Biomedical Genomics group * %% * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as * published by the Free Software Foundation, either version 3 of the * License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public * License along with this program. If not, see * <http://www.gnu.org/licenses/gpl-3.0.html>. * #L% */ package org.gitools.ui.app.actions.data; import com.google.common.base.Predicate; import org.gitools.api.matrix.view.IMatrixView; import org.gitools.heatmap.Heatmap; import org.gitools.heatmap.HeatmapDimension; import org.gitools.heatmap.header.HeatmapDecoratorHeader; import org.gitools.heatmap.header.HeatmapHeader; import org.gitools.ui.core.HeatmapPosition; import org.gitools.ui.core.actions.AbstractAction; import org.gitools.ui.core.actions.dynamicactions.IHeatmapHeaderAction; import java.awt.event.ActionEvent; public class HideNumericHeaderAction extends AbstractAction implements IHeatmapHeaderAction { private boolean greater; private String title; private double thresholdValue; private HeatmapDecoratorHeader header; public HideNumericHeaderAction(boolean greater, String title) { super(title); this.greater = greater; this.title = title; } @Override public boolean isEnabledByModel(Object model) { return model instanceof Heatmap || model instanceof IMatrixView; } @Override public void actionPerformed(ActionEvent e) { if (header == null) { return; } final HeatmapDimension dimension = header.getHeatmapDimension(); dimension.show(new Predicate<String>() { @Override public boolean apply(String identifier) { String value = dimension.getAnnotations().getAnnotation(identifier, header.getSortLabel()); try { if (value == null) { return false; } double numericValue = Double.parseDouble(value); if ((greater && numericValue > thresholdValue) || (!greater && numericValue < thresholdValue)) { return false; } } catch (NumberFormatException ex) { } return true; } }); } @Override public void onConfigure(HeatmapHeader header, HeatmapPosition position) { if (!(header instanceof HeatmapDecoratorHeader)) { setEnabled(false); return; } setEnabled(true); this.header = (HeatmapDecoratorHeader) header; this.header.setSortLabel(position.getHeaderAnnotation()); try { this.thresholdValue = Double.parseDouble(position.headerDecoration.getValue()); } catch (NumberFormatException e) { setEnabled(false); } setName("<html><i>Hide</i> " + title + " than <b>" + position.headerDecoration.getFormatedValue() + "</b></html>"); } }