1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597
|
/* Glazed Lists (c) 2003-2006 */
/* http://publicobject.com/glazedlists/ publicobject.com,*/
/* O'Dell Engineering Ltd.*/
package ca.odell.glazedlists.swing;
import ca.odell.glazedlists.EventList;
import ca.odell.glazedlists.SortedList;
import ca.odell.glazedlists.gui.AbstractTableComparatorChooser;
import ca.odell.glazedlists.gui.AdvancedTableFormat;
import ca.odell.glazedlists.gui.TableFormat;
import ca.odell.glazedlists.impl.SortIconFactory;
import ca.odell.glazedlists.impl.gui.SortingStrategy;
import java.awt.AWTEventMulticaster;
import java.awt.Component;
import java.awt.Cursor;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.MouseAdapter;
import java.awt.event.MouseEvent;
import java.beans.PropertyChangeEvent;
import java.beans.PropertyChangeListener;
import java.util.Comparator;
import javax.swing.Icon;
import javax.swing.JLabel;
import javax.swing.JTable;
import javax.swing.SwingConstants;
import javax.swing.event.TableModelEvent;
import javax.swing.event.TableModelListener;
import javax.swing.plaf.UIResource;
import javax.swing.table.DefaultTableCellRenderer;
import javax.swing.table.TableCellRenderer;
import javax.swing.table.TableColumnModel;
/**
* A TableComparatorChooser is a tool that allows the user to sort a table by clicking
* on the table's headers. It requires that the {@link JTable}s model is an
* {@link AdvancedTableModel} with a {@link SortedList} as a source.
*
* <p>This class includes custom arrow icons that indicate the sort
* order. The icons used are chosen based on the current Swing look and feel.
* Icons are available for the following look and feels: Mac OS X, Metal, Windows.
*
* <p>This class supports multiple sort strategies for each
* column, specified by having muliple comparators for each column. This may
* be useful when you want to sort a single column in either of two ways. For
* example, when sorting movie names, "The Phantom Menace" may be sorted under
* "T" for "The", or "P" for "Phantom".
*
* <p>This class supports sorting multiple columns simultaneously.
* In this mode, the user clicks a first column to sort by, and then the user
* clicks subsequent columns. The list is sorted by the first column and ties
* are broken by the second column.
*
* <p>If the {@link AdvancedTableModel} uses an {@link AdvancedTableFormat}, its
* {@link AdvancedTableFormat#getColumnComparator} method will be used to
* populate the initial column {@link Comparator}s.
*
* @see <a href="https://glazedlists.dev.java.net/issues/show_bug.cgi?id=4">Bug 4</a>
* @see <a href="https://glazedlists.dev.java.net/issues/show_bug.cgi?id=31">Bug 31</a>
* @see <a href="https://glazedlists.dev.java.net/issues/show_bug.cgi?id=391">Bug 391</a>
*
* @author <a href="mailto:jesse@swank.ca">Jesse Wilson</a>
*/
public class TableComparatorChooser<E> extends AbstractTableComparatorChooser<E> {
/**
* the header renderer which decorates an underlying renderer
* (the table header's default renderer) with a sort arrow icon.
*/
private SortArrowHeaderRenderer sortArrowHeaderRenderer;
/** listen for UI delegate changes to the table header */
private final TableHeaderUIHandler tableHeaderUIHandler = new TableHeaderUIHandler();
/** listen for table and property change events */
private final TableModelHandler tableModelHandler = new TableModelHandler();
/** the table being sorted */
private JTable table;
/** listeners to sort change events */
private ActionListener sortListener;
/** the sort icons to use */
private static Icon[] icons = SortIconFactory.loadIcons();
/** when somebody clicks on the header, update the sorting state */
private final HeaderClickHandler headerClickHandler;
/**
* Creates and installs a TableComparatorChooser.
*
* @deprecated replaced with {@link #install}, which is functionally
* identical but uses a more fitting name to convey the action that is
* performed and fixes an API flaw by explicitly requiring the TableFormat.
*/
public TableComparatorChooser(JTable table, SortedList<E> sortedList, boolean multipleColumnSort) {
this(table, sortedList, multipleColumnSort ? MULTIPLE_COLUMN_MOUSE : SINGLE_COLUMN);
}
/**
* Creates and installs a TableComparatorChooser.
*
* @deprecated 9/25/06 replaced with {@link #install}, which is functionally
* identical but uses a more fitting name to convey the action that is
* performed and fixes an API flaw by explicitly requiring the TableFormat.
*/
public TableComparatorChooser(JTable table, SortedList<E> sortedList, Object strategy) {
this(table, sortedList,strategy,((AdvancedTableModel<E>)table.getModel()).getTableFormat());
}
/**
* Creates and installs a TableComparatorChooser.
*
* @param table the table with headers that can be clicked on
* @param sortedList the sorted list to update
* @param strategy an implementations of {@link ca.odell.glazedlists.impl.gui.SortingStrategy}, typically one of
* <ul>
* <li> {@link ca.odell.glazedlists.gui.AbstractTableComparatorChooser#SINGLE_COLUMN}
* <li> {@link ca.odell.glazedlists.gui.AbstractTableComparatorChooser#MULTIPLE_COLUMN_MOUSE}
* <li> {@link ca.odell.glazedlists.gui.AbstractTableComparatorChooser#MULTIPLE_COLUMN_KEYBOARD}
* <li> {@link ca.odell.glazedlists.gui.AbstractTableComparatorChooser#MULTIPLE_COLUMN_MOUSE_WITH_UNDO}
* @param tableFormat the TableFormat providing the columns for the table
*/
protected TableComparatorChooser(JTable table, SortedList<E> sortedList, Object strategy, TableFormat<? super E> tableFormat) {
super(sortedList, tableFormat);
validateSortingStrategy(strategy);
// save the Swing-specific state
this.table = table;
this.table.addPropertyChangeListener("model", tableModelHandler);
this.table.getTableHeader().addPropertyChangeListener("UI", tableHeaderUIHandler);
// wrap the default table header with logic that decorates it with a sorting icon
wrapDefaultTableHeaderRenderer();
// listen for events on the specified table
table.getModel().addTableModelListener(tableModelHandler);
// install the sorting strategy to interpret clicks
headerClickHandler = new HeaderClickHandler(table, (SortingStrategy)strategy);
}
/**
* A method to wrap the default renderer of the JTableHeader if it does not
* appear to be wrapped already. This is particularly useful when the UI
* delegate of the table header changes.
*/
private void wrapDefaultTableHeaderRenderer() {
final TableCellRenderer defaultRenderer = table.getTableHeader().getDefaultRenderer();
final Class defaultRendererType = defaultRenderer == null ? null : defaultRenderer.getClass();
// if the renderer does not appear to be wrapped, do it
if (defaultRendererType != SortArrowHeaderRenderer.class && defaultRendererType != null) {
// decorate the default table header renderer with sort arrows
sortArrowHeaderRenderer = new SortArrowHeaderRenderer(defaultRenderer);
table.getTableHeader().setDefaultRenderer(sortArrowHeaderRenderer);
}
}
/**
* Installs a new TableComparatorChooser that responds to clicks on the
* header of the specified table and uses them to sort the specified
* <code>sortedList</code> by delegating to the given <code>strategy</code>
* If at any time the table should no longer sort, the behaviour can be
* removed calling {@link #dispose()} on the object returned by this method.
*
* <p>This method assumes that the JTable is backed by an AdvancedTableModel
* and it is from that AdvancedTableModel that the TableFormat should be
* extracted. This is, by far, the typical case and so we provide this
* simpler install method for convenience.
*
* @param table the table with headers that can be clicked on
* @param sortedList the sorted list to update
* @param strategy an implementations of {@link SortingStrategy}, typically one of
* <ul>
* <li> {@link AbstractTableComparatorChooser#SINGLE_COLUMN}
* <li> {@link AbstractTableComparatorChooser#MULTIPLE_COLUMN_MOUSE}
* <li> {@link AbstractTableComparatorChooser#MULTIPLE_COLUMN_KEYBOARD}
* <li> {@link AbstractTableComparatorChooser#MULTIPLE_COLUMN_MOUSE_WITH_UNDO}
* </ul>
* @return TableComparatorChooser object that is responsible for translating
* mouse clicks on the table header into sorting actions on the sortedList.
*/
public static <E> TableComparatorChooser<E> install(JTable table, SortedList<E> sortedList, Object strategy) {
return install(table, sortedList, strategy, ((AdvancedTableModel<E>)table.getModel()).getTableFormat());
}
/**
* Installs a new TableComparatorChooser that responds to clicks on the
* header of the specified table and uses them to sort the specified
* <code>sortedList</code> by delegating to the given <code>strategy</code>
* If at any time the table should no longer sort, the behaviour can be
* removed calling {@link #dispose()} on the object returned by this method.
*
* <p>This method makes no assumptions about the TableModel implementation
* that backs the JTable. As such, it requires the TableFormat as an explicit
* parameter and expects the TableFormat to be constant (i.e. never changes)
* for the life of the TableComparatorChooser.
*
* @param table the table with headers that can be clicked on
* @param tableFormat the TableFormat providing the columns for the table
* @param sortedList the sorted list to update
* @param strategy an implementations of {@link SortingStrategy}, typically one of
* <ul>
* <li> {@link AbstractTableComparatorChooser#SINGLE_COLUMN}
* <li> {@link AbstractTableComparatorChooser#MULTIPLE_COLUMN_MOUSE}
* <li> {@link AbstractTableComparatorChooser#MULTIPLE_COLUMN_KEYBOARD}
* <li> {@link AbstractTableComparatorChooser#MULTIPLE_COLUMN_MOUSE_WITH_UNDO}
* </ul>
* @return TableComparatorChooser object that is responsible for translating
* mouse clicks on the table header into sorting actions on the sortedList.
*/
public static <E> TableComparatorChooser<E> install(JTable table, SortedList<E> sortedList, Object strategy, TableFormat<? super E> tableFormat) {
return new TableComparatorChooser<E>(table, sortedList, strategy, tableFormat);
}
/**
* Ensures the given <code>strategy</code> is an accepted value. It is
* possible for people to define their own sorting strategies, so this
* validation can only ensure that the given <code>strategy</code>
* implements the {@link SortingStrategy} interface.
*
* @throws IllegalArgumentException if <code>strategy</code> is not an
* accepted value
*/
private static void validateSortingStrategy(Object strategy) {
if (!(strategy instanceof SortingStrategy))
throw new IllegalArgumentException("Unrecognized sorting strategy, \"" + strategy + "\", use one of AbstractTableComparatorChooser.SINGLE_COLUMN, AbstractTableComparatorChooser.MULTIPLE_COLUMN_MOUSE, or AbstractTableComparatorChooser.MULTIPLE_COLUMN_KEYBOARD");
}
/**
* Registers the specified {@link ActionListener} to receive notification whenever
* the {@link JTable} is sorted by this {@link TableComparatorChooser}.
*/
public void addSortActionListener(ActionListener sortActionListener) {
sortListener = AWTEventMulticaster.add(sortListener, sortActionListener);
}
/**
* Deregisters the specified {@link ActionListener} to no longer receive
* action events.
*/
public void removeSortActionListener(ActionListener sortActionListener) {
sortListener = AWTEventMulticaster.remove(sortListener, sortActionListener);
}
/**
* Decorates and returns the given <code>delegateRenderer</code> with
* functionality that attempts to install a sorting icon into the Component
* returned by the <code>delegateRenderer</code>. In particular, the
* <code>delegateRenderer</code> will be decorated with a sorting icon in
* one of two scenarios:
*
* <ul>
* <li>the delegateRenderer implements {@link SortableRenderer} - in this
* case {@link SortableRenderer#setSortIcon setSortIcon} is called on
* the delegateRenderer and it is expected to place the icon anywhere
* it desires on the Component it returns. This allows maximum
* flexibility when displaying the sort icon.
*
* <li>the Component returned by the delegateRenderer is a JLabel - in
* this case {@link JLabel#setIcon setIcon} is called on the JLabel
* with the sort icon. This caters to the typical case when a
* {@link javax.swing.table.DefaultTableCellRenderer} is used as the
* delegateRenderer.
* </ul>
*
* If neither of these scenarios are true of the given delegateRenderer
* then no sort indicator arrows will be added to the renderer's component.
*
* @param delegateRenderer the TableCellRenderer acting as a table header
* renderer and to which a sort icon should be added
* @return a TableCellRenderer that attempts to decorate the given
* <code>delegateRenderer</code> with a sort icon
*/
public TableCellRenderer createSortArrowHeaderRenderer(TableCellRenderer delegateRenderer) {
return new SortArrowHeaderRenderer(delegateRenderer);
}
/**
* Examines the current {@link Comparator} of the SortedList and
* adds icons to the table header renderers in response.
*
* <p>To do this, clicks are injected into each of the
* corresponding <code>ColumnClickTracker</code>s.
*/
@Override
protected void redetectComparator(Comparator<? super E> currentComparator) {
super.redetectComparator(currentComparator);
// force the table header to redraw itself
table.getTableHeader().revalidate();
table.getTableHeader().repaint();
}
/**
* Updates the comparator in use and applies it to the table.
*/
@Override
protected final void rebuildComparator() {
super.rebuildComparator();
// force the table header to redraw itself
table.getTableHeader().revalidate();
table.getTableHeader().repaint();
// notify interested listeners that the sorting has changed
if(sortListener != null) sortListener.actionPerformed(new ActionEvent(this, 0, "sort"));
}
/**
* Gets the sorting style currently applied to the specified column.
*/
@Override
protected final int getSortingStyle(int column) {
return super.getSortingStyle(table.convertColumnIndexToModel(column));
}
/**
* Determines if the specified mouse event shall be handled by this
* {@link TableComparatorChooser}. The default implementation handles only clicks
* with the left mouse button. Extending classes can customize which mouse
* events the table comparator chooser responds to by overriding this method.
*
* <p>As of 2005/12/20, this method is no longer called when the
* corresponding mouse press event was a popup trigger. In effect, if this
* is a right-click on Windows or a 'control-click' on the Mac.
*
* <p>As of 2008/02/05, this method is no longer called when the
* Cursor over the JTableHeader indicates a column resize is expected to
* take place, rather than a change in sort.
*/
protected boolean isSortingMouseEvent(MouseEvent e) {
// skip the sort if it's not button 1
if(e.getButton() != MouseEvent.BUTTON1) return false;
// we have no reason to dislike this mouse event!
return true;
}
/**
* Set all {@link TableComparatorChooser}s to use the icons from the directory
* specified. The folder should contain the following eight icon files:
* <li>primary_sorted.png <li>secondary_sorted.png
* <li>primary_sorted_alternate.png <li>secondary_sorted_alternate.png
* <li>primary_sorted_alternate_reverse.png <li>secondary_sorted_alternate_reverse.png
* <li>primary_sorted_reverse.png <li>secondary_sorted_reverse.png
*
* <p>Note that this path must be on the system classpath. It may be within a
* jar file.
*/
public static void setIconPath(String path) {
icons = SortIconFactory.loadIcons(path);
}
/**
* Releases the resources consumed by this {@link TableComparatorChooser} so that it
* may eventually be garbage collected.
*
* <p>A {@link TableComparatorChooser} will be garbage collected without a call to
* {@link #dispose()}, but not before its source {@link EventList} is garbage
* collected. By calling {@link #dispose()}, you allow the {@link TableComparatorChooser}
* to be garbage collected before its source {@link EventList}. This is
* necessary for situations where an {@link TableComparatorChooser} is short-lived but
* its source {@link EventList} is long-lived.
*
* <p><strong><font color="#FF0000">Warning:</font></strong> It is an error
* to call any method on a {@link TableComparatorChooser} after it has been disposed.
*/
@Override
public void dispose() {
super.dispose();
headerClickHandler.dispose();
// if the default renderer within the table header is our sort arrow renderer,
// uninstall it by restoring the table header's original default renderer
if (table.getTableHeader().getDefaultRenderer() == sortArrowHeaderRenderer)
table.getTableHeader().setDefaultRenderer(sortArrowHeaderRenderer.getDelegateRenderer());
// remove our listeners from the table's header and model
table.getModel().removeTableModelListener(tableModelHandler);
table.removePropertyChangeListener("model", tableModelHandler);
table.getTableHeader().removePropertyChangeListener("UI", tableHeaderUIHandler);
// null out our table reference for safety's sake
table = null;
}
/**
* Nested Listener class handles changes in the UI delegate for the table's
* header. It responds by rewrapping the default renderer for the table
* header, if it was replaced in the course of installing the new
* TableHeaderUI.
*/
private class TableHeaderUIHandler implements PropertyChangeListener {
public void propertyChange(PropertyChangeEvent evt) {
wrapDefaultTableHeaderRenderer();
}
}
/**
* Nested Listener class handles TableModelEvents and PropertyChangeEvents.
* TableModelEvents tell us when the TableModel's data changes in place.
* PropertyChangeEvents tell us when the TableModel has been replaced.
*/
private class TableModelHandler implements TableModelListener, PropertyChangeListener {
/**
* This method is only called when the TableModel of the JTable is
* changed. It allows us to stop listening to the previous
* EventTableModel and start listening to the new one. It also resets
* the sorting state of this TableComparatorChooser.
*/
public void propertyChange(PropertyChangeEvent evt) {
// get the two EventTableModels
final AdvancedTableModel<E> oldModel = evt.getOldValue() instanceof AdvancedTableModel ? (AdvancedTableModel<E>) evt.getOldValue() : null;
final AdvancedTableModel<E> newModel = evt.getNewValue() instanceof AdvancedTableModel ? (AdvancedTableModel<E>) evt.getNewValue() : null;
// stop listening for TableModelEvents in the oldModel and start for the newModel, if possible
if (oldModel != null) oldModel.removeTableModelListener(this);
if (newModel != null) {
newModel.addTableModelListener(this);
// the table structure has probably changed due to the new EventTableModel
// so we reset the TableFormat (which clears the sorting state)
setTableFormat(newModel.getTableFormat());
}
}
/**
* When the number of columns changes in the table, we need to
* clear the comparators and columns.
*/
public void tableChanged(TableModelEvent event) {
if(event.getFirstRow() == TableModelEvent.HEADER_ROW && event.getColumn() == TableModelEvent.ALL_COLUMNS) {
if (table.getModel() instanceof AdvancedTableModel) {
// the table structure may have changed due to a change in the table format
// so we conservatively reset the TableFormat on this TableComparatorChooser
setTableFormat(((AdvancedTableModel<E>) table.getModel()).getTableFormat());
}
}
// if the comparator has changed
final Comparator<? super E> currentComparator = sortedList.getComparator();
if(currentComparator != sortedListComparator) {
redetectComparator(currentComparator);
}
}
}
/**
* The SortArrowHeaderRenderer simply delegates most of the rendering
* to a given delegate renderer, and adds an icon to indicate sorting
* direction. This allows TableComparatorChooser to work equally well
* with any custom TableCellRenderers that are used as the default
* table header renderer.
*
* <p>This class fails to add indicator arrows on table headers where the
* default table header render does not return a JLabel or does not
* implement {@link SortableRenderer}.
*
* <p>We implement UIResource here so that changes to the UI delegate of
* the JTableHeader will replace our renderer with a new one that is
* appropriate for the new LaF. We, in turn, react to the change of UI
* delegates by *re-wrapping* the new default renderer with our sort icon
* injection logic.
*/
class SortArrowHeaderRenderer implements TableCellRenderer, UIResource {
/** the renderer to which we delegate */
private TableCellRenderer delegateRenderer;
/**
* Creates a new SortArrowHeaderRenderer that attempts to decorate the
* given <code>delegateRenderer</code> which a sorting icon.
*/
public SortArrowHeaderRenderer(TableCellRenderer delegateRenderer) {
this.delegateRenderer = delegateRenderer;
}
/**
* Returns the delegate renderer that is decorated with sort arrows.
*/
public TableCellRenderer getDelegateRenderer() {
return delegateRenderer;
}
/**
* Renders the header in the default way but with the addition of an
* icon to indicate sorting state.
*/
public Component getTableCellRendererComponent(JTable table, Object value, boolean isSelected, boolean hasFocus, int row, int column) {
// if column index is negative, just call the delegate renderer
// this is a special case for JideTable with nested table columns
if (column < 0)
return getDelegateTableCellRendererComponent(table, value, isSelected, hasFocus, row, column);
final Icon sortIcon = icons[getSortingStyle(column)];
final Component rendered;
// 1. look for our custom SortableRenderer interface
if (delegateRenderer instanceof SortableRenderer) {
((SortableRenderer) delegateRenderer).setSortIcon(sortIcon);
rendered = getDelegateTableCellRendererComponent(table, value, isSelected, hasFocus, row, column);
// 2. Otherwise check whether the rendered component is a JLabel (this is the case of the default header renderer)
} else {
rendered = getDelegateTableCellRendererComponent(table, value, isSelected, hasFocus, row, column);
// we check for a JLabel rather than a DefaultTableCellRenderer to support WinLAF,
// which installs a decorator over the DefaultTableCellRenderer
if (rendered instanceof JLabel) {
final JLabel label = (JLabel) rendered;
label.setIcon(sortIcon);
label.setHorizontalTextPosition(SwingConstants.LEADING);
}
}
return rendered;
}
/**
* Attempts to retrieve the decorated Component from the delegate
* renderer. If a RuntimeException occurs, this method replaces the
* delegate renderer with a {@link DefaultTableCellRenderer} and
* requests the Component from it. This exists because our decorating
* approach is the victim of a SUN bug in WindowsTableHeaderUI:
* http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6429812
*
* See also more information reported by Eric Burke here:
* http://stuffthathappens.com/blog/2007/10/02/rich-client-developers-avoid-java-6/
*/
private Component getDelegateTableCellRendererComponent(JTable table, Object value, boolean isSelected, boolean hasFocus, int row, int column) {
try {
return delegateRenderer.getTableCellRendererComponent(table, value, isSelected, hasFocus, row, column);
} catch (RuntimeException e) {
delegateRenderer = new DefaultTableCellRenderer();
return delegateRenderer.getTableCellRendererComponent(table, value, isSelected, hasFocus, row, column);
}
}
}
/**
* Handle clicks to the table's header by adjusting the sorting state.
*/
private class HeaderClickHandler extends MouseAdapter {
private final JTable table;
private final SortingStrategy delegate;
private boolean mouseEventIsPerformingPopupTrigger = false;
public HeaderClickHandler(JTable table, SortingStrategy delegate) {
this.table = table;
this.delegate = delegate;
table.getTableHeader().addMouseListener(this);
}
@Override
public void mouseClicked(MouseEvent e) {
// if the MouseEvent is popping up a context menu, do not sort
if (mouseEventIsPerformingPopupTrigger) return;
// if the cursor indicates we're resizing columns, do not sort
if (table.getTableHeader().getCursor() == Cursor.getPredefinedCursor(Cursor.E_RESIZE_CURSOR))
return;
// check if there is any other reason to ignore this MouseEvent
if (!isSortingMouseEvent(e)) return;
final TableColumnModel columnModel = table.getColumnModel();
final int viewColumn = columnModel.getColumnIndexAtX(e.getX());
final int column = table.convertColumnIndexToModel(viewColumn);
final int clicks = e.getClickCount();
if (clicks >= 1 && column != -1) {
final boolean shift = e.isShiftDown();
final boolean control = e.isControlDown() || e.isMetaDown();
delegate.columnClicked(sortingState, column, clicks, shift, control);
}
}
/**
* Keep track of whether the mouse is triggering a popup, so we
* can avoid sorting the table when the poor user just wants to show
* a context menu.
*/
@Override
public void mousePressed(MouseEvent mouseEvent) {
this.mouseEventIsPerformingPopupTrigger = mouseEvent.isPopupTrigger();
}
public void dispose() {
table.getTableHeader().removeMouseListener(this);
}
}
}
|