com.guigarage.gestures.GestureMagnificationEvent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gestures-wrapper Show documentation
Show all versions of gestures-wrapper Show documentation
Wrapper for multitoch gestures
The newest version!
package com.guigarage.gestures;
import javax.swing.JComponent;
/**
* A event that indicates that a magnification gesture occured on a component.
* @author hendrikebbers
*
*/
public class GestureMagnificationEvent extends GestureEvent {
private static final long serialVersionUID = 1L;
private final double magnification;
/**
* Constructs a GestureMagnificationEvent
object with the
* specified source component
* @param source the component on with the event occured
* @param magnification the magnification value
*/
public GestureMagnificationEvent(JComponent source, double magnification) {
super(source);
this.magnification = magnification;
}
/**
* Returns the magnification value
* @return the magnification value
*/
public double getMagnification() {
return magnification;
}
}