Package com.googlecode.mgwt.dom.client.recognizer.pinch

Examples of com.googlecode.mgwt.dom.client.recognizer.pinch.PinchRecognizer


  public void ensurePinchRecognizer(UIObject object) {
    if (pinchRecognizer != null) {
      return;
    }

    pinchRecognizer = new PinchRecognizer(source, new UIObjectToOffsetProvider(object));
    source.addTouchHandler(pinchRecognizer);
  }
View Full Code Here

TOP

Related Classes of com.googlecode.mgwt.dom.client.recognizer.pinch.PinchRecognizer

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.