blob: 507b2671a5802496e1f66624485b385ecbe98fa9 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2012, 2020 Original authors and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Original authors and others - initial API and implementation
******************************************************************************/
package org.eclipse.nebula.widgets.nattable.filterrow.event;
import static org.eclipse.nebula.widgets.nattable.util.ObjectUtils.isNotNull;
import org.eclipse.nebula.widgets.nattable.NatTable;
import org.eclipse.nebula.widgets.nattable.grid.GridRegion;
import org.eclipse.nebula.widgets.nattable.layer.LabelStack;
import org.eclipse.nebula.widgets.nattable.ui.NatEventData;
import org.eclipse.nebula.widgets.nattable.ui.matcher.IMouseEventMatcher;
import org.eclipse.swt.events.MouseEvent;
public class FilterRowMouseEventMatcher implements IMouseEventMatcher {
@Override
public boolean matches(NatTable natTable, MouseEvent event,
LabelStack regionLabels) {
NatEventData eventData = NatEventData.createInstanceFromEvent(event);
LabelStack labels = eventData.getRegionLabels();
if (isNotNull(labels)) {
return labels.contains(GridRegion.FILTER_ROW);
}
return false;
}
}