Search in sources :

Example 1 with RowSelectionDragMode

use of net.sourceforge.nattable.selection.action.RowSelectionDragMode in project translationstudio8 by heartsome.

the class RowOnlySelectionBindings method configureBodyMouseDragMode.

@Override
protected void configureBodyMouseDragMode(UiBindingRegistry uiBindingRegistry) {
    IDragMode dragMode = new RowSelectionDragMode();
    uiBindingRegistry.registerFirstMouseDragMode(MouseEventMatcher.bodyLeftClick(SWT.NONE), dragMode);
    uiBindingRegistry.registerFirstMouseDragMode(MouseEventMatcher.bodyLeftClick(SWT.SHIFT), dragMode);
    uiBindingRegistry.registerFirstMouseDragMode(MouseEventMatcher.bodyLeftClick(SWT.CONTROL), dragMode);
    uiBindingRegistry.registerFirstMouseDragMode(MouseEventMatcher.bodyLeftClick(SWT.SHIFT | SWT.CONTROL), dragMode);
}
Also used : IDragMode(net.sourceforge.nattable.ui.action.IDragMode) RowSelectionDragMode(net.sourceforge.nattable.selection.action.RowSelectionDragMode)

Aggregations

RowSelectionDragMode (net.sourceforge.nattable.selection.action.RowSelectionDragMode)1 IDragMode (net.sourceforge.nattable.ui.action.IDragMode)1