blob: fe32836d7a9e82a0d68320e7ea9fa252be0ae632 [file] [log] [blame]
/*=============================================================================#
# Copyright (c) 2012, 2021 Original NatTable authors and others.
#
# This program and the accompanying materials are made available under the
# terms of the Eclipse Public License 2.0 which is available at
# https://www.eclipse.org/legal/epl-2.0.
#
# SPDX-License-Identifier: EPL-2.0
#
# Contributors:
# Original NatTable authors and others - initial API and implementation
#=============================================================================*/
package org.eclipse.statet.ecommons.waltable.viewport;
import org.eclipse.statet.ecommons.waltable.command.AbstractLayerCommandHandler;
import org.eclipse.statet.ecommons.waltable.coordinate.Orientation;
import org.eclipse.statet.ecommons.waltable.layer.AbstractLayer;
import org.eclipse.statet.ecommons.waltable.selection.SelectDimPositionsCommand;
public class ViewportSelectDimPositionsCommandHandler extends AbstractLayerCommandHandler<ViewportSelectDimPositionsCommand> {
private final AbstractLayer viewportLayer;
private final Orientation orientation;
public ViewportSelectDimPositionsCommandHandler(final AbstractLayer viewportLayer) {
this(viewportLayer, null);
}
public ViewportSelectDimPositionsCommandHandler(final AbstractLayer viewportLayer,
final Orientation orientation) {
this.viewportLayer= viewportLayer;
this.orientation= orientation;
}
@Override
public Class<ViewportSelectDimPositionsCommand> getCommandClass() {
return ViewportSelectDimPositionsCommand.class;
}
@Override
protected boolean doCommand(final ViewportSelectDimPositionsCommand command) {
if (this.orientation != null && command.getOrientation() != this.orientation) {
return false;
}
this.viewportLayer.doCommand(new SelectDimPositionsCommand(
this.viewportLayer.getDim(command.getOrientation()),
command.getRefPosition(), command.getPositions(), 0,
command.getSelectionFlags(), command.getPositionToReveal() ));
return true;
}
}