Package com.gwtmobile.ui.client.event

Examples of com.gwtmobile.ui.client.event.DragController


    /**
     * Start touch. Useful when you have more than one touch target on
     * different tabs of the same page.
     */
    public void startTouch() {
      DragController drag = DragController.get();
      if (drag instanceof DragControllerMobile)
          ((DragControllerMobile) drag).setStartPropagation();
    }
View Full Code Here


   
    /**
     * Stop touch.
     */
    public void stopTouch() {
      DragController drag = DragController.get();
      if (drag instanceof DragControllerMobile)
          ((DragControllerMobile) drag).setStopPropagation();
    }
View Full Code Here

TOP

Related Classes of com.gwtmobile.ui.client.event.DragController

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.