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

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

Introduction

In this page you can find the example usage for com.google.gwt.event.dom.client HasTouchStartHandlers 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.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.ToggleSlide.java

public class ToggleSlide extends FlowPanel implements HasClickHandlers, HasTouchStartHandlers {
    HTML firstOption = new HTML();
    HTML secondOption = new HTML();
    HTML selectedOption = null;

    public ToggleSlide(String first, String second, boolean firstIsSelected, ClickHandler clickHandler) {

From source file de.eckhartarnold.client.ImagePanel.java

/**
 * Displays a photo on an absolute panel. 
 * 
 * <p>The image is scaled so as to use as much space of the
 * panel as possible without distorting the aspect ratio of the image. 
 * When the image is exchanged the old image is faded out while

From source file de.swm.commons.mobile.client.widgets.Button.java

/**
 * A button.
 */
public class Button extends HTML
        implements DragEventsHandler, IsSWMMobileWidget, HasTouchStartHandlers, HasClickHandlers {

From source file de.swm.commons.mobile.client.widgets.SearchBoxLikeButton.java

/**
 * A button which looks like a search widget.
 *
 * @author Dnaiel.Wiese
 */
public class SearchBoxLikeButton extends Composite