blob: e2b417eefc24e42102d82e003ce55dfcfe7fa3b8 [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.ui.matcher;
import org.eclipse.nebula.widgets.nattable.NatTable;
import org.eclipse.nebula.widgets.nattable.layer.LabelStack;
import org.eclipse.swt.events.MouseEvent;
public interface IMouseEventMatcher {
/**
* Figures out if the mouse event occurred in the supplied region.
*
* @param natTable
* The NatTable on which the {@link MouseEvent} occured.
* @param event
* The SWT {@link MouseEvent}.
* @param regionLabels
* The {@link LabelStack} with the region labels of the
* {@link MouseEvent} coordinates.
* @return <code>true</code> if the {@link MouseEvent} matches this
* {@link IMouseEventMatcher} and should therefore be handled,
* <code>false</code> if not
*/
public boolean matches(NatTable natTable, MouseEvent event, LabelStack regionLabels);
}