use of net.sourceforge.nattable.sort.event.SortColumnEvent in project translationstudio8 by heartsome.
the class RowSelectionPreserver method handleLayerEvent.
/**
* On a change in the underlying data:
* <ol>
* <li>Clears the selection
* <li>Re-select the row objects selected earlier.
* </ol>
*/
public void handleLayerEvent(IVisualChangeEvent event) {
if (ObjectUtils.isEmpty(selectedRowObjects)) {
return;
}
if (event instanceof RowStructuralRefreshEvent || event instanceof RowStructuralChangeEvent || event instanceof SortColumnEvent) {
selectionLayer.clear();
selectionProvider.setSelection(new StructuredSelection(getValidSelections()));
}
}
use of net.sourceforge.nattable.sort.event.SortColumnEvent in project translationstudio8 by heartsome.
the class SortCommandHandler method doCommand.
@Override
public boolean doCommand(final SortColumnCommand command) {
final int columnIndex = command.getLayer().getColumnIndexByPosition(command.getColumnPosition());
final SortDirectionEnum newSortDirection = sortModel.getSortDirection(columnIndex).getNextSortDirection();
// Fire command - with busy indicator
Runnable sortRunner = new Runnable() {
public void run() {
sortModel.sort(columnIndex, newSortDirection, command.isAccumulate());
}
};
BusyIndicator.showWhile(null, sortRunner);
// Fire event
SortColumnEvent sortEvent = new SortColumnEvent(sortHeaderLayer, command.getColumnPosition());
sortHeaderLayer.fireLayerEvent(sortEvent);
return true;
}
Aggregations