/* * #%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.collect.Lists; import org.gitools.api.analysis.IProgressMonitor; import org.gitools.api.matrix.IMatrixLayer; import org.gitools.api.matrix.MatrixDimensionKey; import org.gitools.api.matrix.SortDirection; import org.gitools.heatmap.Heatmap; import org.gitools.heatmap.HeatmapDimension; import org.gitools.heatmap.MatrixViewSorter; import org.gitools.ui.app.actions.HeatmapDimensionAction; import org.gitools.ui.core.Application; import org.gitools.ui.core.HeatmapPosition; import org.gitools.ui.core.actions.dynamicactions.IHeatmapDimensionAction; import org.gitools.ui.platform.icons.IconNames; import org.gitools.ui.platform.progress.JobRunnable; import org.gitools.ui.platform.progress.JobThread; import java.awt.event.ActionEvent; import java.awt.event.KeyEvent; import java.util.List; import static org.gitools.api.matrix.MatrixDimensionKey.ROWS; public class FastSortValueAction extends HeatmapDimensionAction implements IHeatmapDimensionAction { private SortDirection currentSort; private MatrixDimensionKey dimension; public FastSortValueAction(MatrixDimensionKey dimension) { super(dimension, "<html><i>Sort</i> " + dimension.getLabel() + " by values</html>"); this.dimension = dimension; setMnemonic(KeyEvent.VK_S); currentSort = SortDirection.ASCENDING; updateIcon(); } private void updateIcon() { if (currentSort == SortDirection.ASCENDING) { setSmallIconFromResource(IconNames.sortSelectedColumns16Desc); setLargeIconFromResource(IconNames.sortSelectedColumns24Desc); } else { setSmallIconFromResource(IconNames.sortSelectedColumns16Asc); setLargeIconFromResource(IconNames.sortSelectedColumns24Asc); } } @Override public void actionPerformed(ActionEvent e) { final Heatmap heatmap = getHeatmap(); final IMatrixLayer layer = heatmap.getLayers().getTopLayer(); final SortDirection sort = currentSort; currentSort = (currentSort == SortDirection.ASCENDING ? SortDirection.DESCENDING : SortDirection.ASCENDING); updateIcon(); JobThread.execute(Application.get(), new JobRunnable() { @Override public void run(IProgressMonitor monitor) { layer.setSortDirection(sort); List<IMatrixLayer> criteriaArray = Lists.newArrayList(layer); monitor.begin("Sorting ...", 1); MatrixViewSorter.sortByValue(heatmap, criteriaArray, getDimension().getId() == ROWS, getDimension().getId() != ROWS, monitor); Application.get().showNotification(getDimension().getId().getLabel() + "s sorted (" + sort.toString() + ")"); } }); } @Override public void onConfigure(HeatmapDimension sortDimension, HeatmapPosition position) { String layer = getHeatmap().getLayers().getTopLayer().getName(); String selected = (sortDimension.getSelected().size() > 0 ? "selected " : "aggregated "); int otherSize = sortDimension.getSelected().size(); String dimCount = (otherSize > 0 ? Integer.toString(otherSize) + " " + dimension.getLabel() + (otherSize > 1 ? "s" : "") : "all " + dimension.getLabel() + "s" ); setName("<html><i>Sort</i> " + dimCount + " " + currentSort.toString().substring(0, 3).toLowerCase() + ". by " + selected + " <b>'" + layer + "'</b></html>"); } }