All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ca.odell.glazedlists.gui.AbstractTableComparatorChooser Maven / Gradle / Ivy

There is a newer version: 1.9.1
Show newest version
/* Glazed Lists                                                 (c) 2003-2006 */
/* http://publicobject.com/glazedlists/                      publicobject.com,*/
/*                                                     O'Dell Engineering Ltd.*/
package ca.odell.glazedlists.gui;

import ca.odell.glazedlists.SortedList;
import ca.odell.glazedlists.impl.gui.MouseKeyboardSortingStrategy;
import ca.odell.glazedlists.impl.gui.MouseOnlySortingStrategy;
import ca.odell.glazedlists.impl.gui.SortingState;
import ca.odell.glazedlists.impl.sort.TableColumnComparator;

import java.beans.PropertyChangeEvent;
import java.beans.PropertyChangeListener;
import java.util.Comparator;
import java.util.List;

/**
 * A TableComparatorChooser is a tool that allows the user to sort a table
 * widget by clicking on the table's headers. It requires that the table has a
 * SortedList as a source as the sorting on that list is used.
 *
 * @author Kevin Maltby
 */
public abstract class AbstractTableComparatorChooser {

    /**
     * Emulate the sorting behaviour of Windows Explorer and Mac OS X Finder.
     *
     * 

Single clicks toggles between forward and reverse. If multiple comparators * are available for a particular column, they will be cycled in order. * *

At most one column can be sorted at a time. */ public static final Object SINGLE_COLUMN = new MouseOnlySortingStrategy(false); /** * Sort multiple columns without use of the keyboard. Single clicks cycle * through comparators, double clicks clear them. * *

This is the original sorting strategy provided by Glazed Lists, with a * limitation that it is impossible to clear a sort order that is already in * place. It's designed to be used with multiple columns and multiple comparators * per column. * *

The overall behaviour is as follows: * *

  • Click: sort this column. If it's already sorted, reverse the sort order. * If its already reversed, sort using the column's next comparator in forward * order. If there are no more comparators, go to the first comparator. If there * are multiple sort columns, sort this column after those columns. * *
  • Double click: like a single click, but clear all sorting columns first. */ public static final Object MULTIPLE_COLUMN_MOUSE = new MouseOnlySortingStrategy(true); /** * Emulate the sorting behaviour of SUN's TableSorter, by Philip Milne et. al. * *

    This is not a direct adaptation since we choose to support potentially * many Comparators per column, wheras TableSorter is limited to one. * *

    For reference, this is TableSorter's behaviour, copied shamelessly * from that project's source file: * *

  • Mouse-click: Clears the sorting gui of all other columns and advances * the sorting gui of that column through three values: * {NOT_SORTED, ASCENDING, DESCENDING} (then back to NOT_SORTED again). * *
  • SHIFT-mouse-click: Clears the sorting gui of all other columns and * cycles the sorting gui of the column through the same three values, * in the opposite order: {NOT_SORTED, DESCENDING, ASCENDING}. * *
  • CONTROL-mouse-click and CONTROL-SHIFT-mouse-click: as above except that the * changes to the column do not cancel the statuses of columns that are * already sorting - giving a way to initiate a compound sort. * * @see Table tutorial */ public static final Object MULTIPLE_COLUMN_KEYBOARD = new MouseKeyboardSortingStrategy(); /** the sorted list to choose the comparators for */ protected SortedList sortedList; /** the columns to sort over */ private TableFormat tableFormat; /** the potentially foreign comparator associated with the sorted list */ protected Comparator sortedListComparator = null; /** manage which columns are sorted and in which order */ protected final SortingState sortingState = new SortingState(this); /** * Create a {@link AbstractTableComparatorChooser} that sorts the specified * {@link SortedList} over the specified columns. */ protected AbstractTableComparatorChooser(SortedList sortedList, TableFormat tableFormat) { this.sortedList = sortedList; this.setTableFormat(tableFormat); this.sortingState.addPropertyChangeListener(new SortingStateListener()); } /** * Handle changes to the sorting state by applying the new comparator * to the {@link SortedList}. */ private class SortingStateListener implements PropertyChangeListener { public void propertyChange(PropertyChangeEvent propertyChangeEvent) { rebuildComparator(); } } /** * Updates the comparator in use and applies it to the table. */ protected void rebuildComparator() { final Comparator rebuiltComparator = sortingState.buildComparator(); // select the new comparator sortedList.getReadWriteLock().writeLock().lock(); try { sortedListComparator = rebuiltComparator; sortedList.setComparator(rebuiltComparator); } finally { sortedList.getReadWriteLock().writeLock().unlock(); } } /** * Adjusts the TableFormat this comparator chooser uses when selecting * comparators. Calling this method will clear any active sorting. */ protected void setTableFormat(TableFormat tableFormat) { this.tableFormat = tableFormat; // handle a change in the layout of our columns sortingState.rebuildColumns(tableFormat); } /** * Gets the list of comparators for the specified column. The user is * free to add comparators to this list or clear the list if the specified * column cannot be sorted. */ public List getComparatorsForColumn(int column) { return sortingState.getColumns().get(column).getComparators(); } /** * Get the columns that the TableComparatorChooser is sorting by. * * @return a List of Integers. The first Integer is the primary sorting column, * the second is the secondary, etc. This list may be empty but never null. */ public List getSortingColumns() { return sortingState.getSortingColumnIndexes(); } /** * Gets the index comparator in use for the specified column. This comparator * may be retrieved using {@link #getComparatorsForColumn(int)}. * * @return the comparator index for the specified column, or -1 if that column * is not being used to sort. */ public int getColumnComparatorIndex(int column) { return sortingState.getColumns().get(column).getComparatorIndex(); } /** * Gets whether the comparator in use for the specified column is reverse. */ public boolean isColumnReverse(int column) { return sortingState.getColumns().get(column).isReverse(); } /** * Append the comparator specified by the column, comparator index and reverse * parameters to the end of the sequence of comparators this * {@link AbstractTableComparatorChooser} is sorting the {@link SortedList} * by. * *

    Append implies that if this {@link AbstractTableComparatorChooser} * is already sorting that list by another column, this comparator will only * be used to break ties from that {@link Comparator}. If the table is already * sorting by the specified column, it will be silently discarded. * *

    Suppose we're currently not sorting the table, this method will cause * the table to be sorted by the column specified. If we are sorting the table * by some column c, this will sort by that column first and the column * specified here second. * *

    If this {@link AbstractTableComparatorChooser} doesn't support multiple * column sort, this will replace the current {@link Comparator} rather than * appending to it. * * @param column the column to sort by * @param comparatorIndex the comparator to use, specify 0 for the * default comparator. * @param reverse whether to reverse the specified comparator. */ public void appendComparator(int column, int comparatorIndex, boolean reverse) { sortingState.appendComparator(column, comparatorIndex, reverse); sortingState.fireSortingChanged(); } /** * Clear all sorting state and set the {@link SortedList} to use its * natural order. */ public void clearComparator() { sortingState.clearComparators(); sortingState.fireSortingChanged(); } /** * Examines the current {@link Comparator} of the SortedList and * adds icons to the table header renderers in response. * *

    To do this, clicks are injected into each of the * corresponding ColumnClickTrackers. */ protected void redetectComparator(Comparator currentComparator) { sortedListComparator = currentComparator; sortingState.detectStateFromComparator(currentComparator); } /** * Gets the sorting style currently applied to the specified column. */ protected int getSortingStyle(int column) { return sortingState.getColumns().get(column).getSortingStyle(); } /** * Creates a {@link Comparator} that can compare list elements * given a {@link Comparator} that can compare column values for the specified * column. This returns a {@link Comparator} that extracts the table values for * the specified column and then delegates the actual comparison to the specified * comparator. */ public Comparator createComparatorForElement(Comparator comparatorForColumn, int column) { return new TableColumnComparator(tableFormat, column, comparatorForColumn); } /** * Encode the current sorting state as a {@link String}. This specially formatted * {@link String} is ideal for persistence using any preferences API. The * state of this {@link AbstractTableComparatorChooser} can be restored * by passing the return value of this method to {@link #fromString(String)}. */ public String toString() { return sortingState.toString(); } /** *

    This class is capable of representing its own state with a String, to * persist sorting state externally. The format uses zero or more column specifications, * separated by commas. Here are some valid examples: * *

    * * * * * * *
    String RepresentationDescription
    "column 3"Sort using the column at index 3, using that column's first comparator, in forward order
    "column 3 reversed"Sort using the column at index 3, using that column's first comparator, in reverse order
    "column 3, column 1"Sort using the column at index 3, using that column's first comparator, in forward order
    * then by
    the column at index 1, using that column's first comparator, in forward order.
    "column 3 comparator 2"Sort using the column at index 3, using that column's comparator at index 2, in forward order
    "column 3 comparator 2 reversed"Sort using the column at index 3, using that column's comparator at index 2, in reverse order
    "column 3 reversed, column 1 comparator 2, column 5 comparator 1 reversed, column 0"Sort using the column at index 3, using that column's first comparator, in reverse order
    * then by
    the column at index 1, using that column's comparator at index 2, in forward order
    * then by
    the column at index 5, using that column's comparator at index 1, in reverse order
    * then by
    the column at index 0, using that column's first comparator, in forward order.
    * *

    More formally, the grammar for this String representation is as follows: *
    <COLUMN> = column <COLUMN INDEX> (comparator <COMPARATOR INDEX>)? (reversed)? *
    <COMPARATOR SPEC> = ( <COLUMN> (, <COLUMN>)* )? */ public void fromString(String stringEncoded) { sortingState.fromString(stringEncoded); sortingState.fireSortingChanged(); } public void dispose() { // null out references to potentially long lived objects this.sortedList = null; this.tableFormat = null; this.sortedListComparator = null; } }





  • © 2015 - 2024 Weber Informatics LLC | Privacy Policy