blob: d84e0176c3ef5d8c70440926d8bcd71afc0a97f9 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2006 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.jface.text.source;
/**
* Extension interface for {@link org.eclipse.jface.text.source.IAnnotationHover} for
* <ul>
* <li>providing whether the information control can interact with the mouse wheel</li>
* </ul>
*
* @see org.eclipse.jface.text.source.IAnnotationHover
* @since 3.2
*/
public interface IAnnotationHoverExtension2 {
/**
* Returns whether the provided information control can interact with the mouse wheel. I.e. the
* hover will not be closed when the mouse wheel is moved.
*
* @return <code>true</code> if the mouse wheel is handled by the hover
*/
boolean canHandleMouseWheel();
}