blob: aca494eb453e70b1ecc014ab64824609c8c2fa21 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2012, 2020 Original 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 authors and others - initial API and implementation
******************************************************************************/
package org.eclipse.nebula.widgets.nattable.resize.event;
import org.eclipse.nebula.widgets.nattable.NatTable;
import org.eclipse.nebula.widgets.nattable.grid.GridRegion;
import org.eclipse.nebula.widgets.nattable.layer.ILayer;
import org.eclipse.nebula.widgets.nattable.layer.LabelStack;
import org.eclipse.nebula.widgets.nattable.ui.matcher.MouseEventMatcher;
import org.eclipse.nebula.widgets.nattable.ui.util.CellEdgeDetectUtil;
import org.eclipse.swt.events.MouseEvent;
import org.eclipse.swt.graphics.Point;
public class RowResizeEventMatcher extends MouseEventMatcher {
public RowResizeEventMatcher(int stateMask, int button) {
this(stateMask, GridRegion.ROW_HEADER, button);
}
public RowResizeEventMatcher(int stateMask, String eventRegion, int button) {
super(stateMask, eventRegion, button);
}
@Override
public boolean matches(NatTable natTable, MouseEvent event, LabelStack regionLabels) {
return super.matches(natTable, event, regionLabels) && indexIsResizable(natTable, event);
}
private boolean indexIsResizable(ILayer natLayer, MouseEvent event) {
int rowPosition = CellEdgeDetectUtil.getRowPositionToResize(natLayer, new Point(event.x, event.y));
if (rowPosition < 0) {
return false;
} else {
return natLayer.isRowPositionResizable(rowPosition);
}
}
}