Example usage for com.google.gwt.event.dom.client HasTouchEndHandlers interface-usage

List of usage examples for com.google.gwt.event.dom.client HasTouchEndHandlers interface-usage

Introduction

In this page you can find the example usage for com.google.gwt.event.dom.client HasTouchEndHandlers interface-usage.

Usage

From source file ch.unifr.pai.twice.dragndrop.client.intf.Draggable.java

/**
 * An interface to be implemented by widgets which shall be draggable
 * 
 * @author Oliver Schmid
 * 
 */

From source file com.sciencegadgets.client.algebra.transformations.TransformationButton.java

public abstract class TransformationButton extends SelectionButton
        implements HasClickHandlers, HasTouchEndHandlers {

    private TransformationList<? extends TransformationButton> transformList;
    public EquationNode previewNode = null;
    protected boolean isEvaluation = false;

From source file com.sciencegadgets.client.algebra.Wrapper.java

public class Wrapper extends HTML implements HasClickHandlers, HasTouchStartHandlers, HasTouchEndHandlers {

    protected EquationNode node;
    protected AbsolutePanel parentPanel;
    protected WrapDragController dragController = null;
    public boolean moved = false;

From source file com.sciencegadgets.client.ui.SelectionButton.java

public abstract class SelectionButton extends SimplePanel
        implements HasClickHandlers, HasTouchEndHandlers, HasFitParentHTML {

    private FitParentHTML buttonHTML = new FitParentHTML();
    private boolean isEnabled = true;