Package com.google.gwt.topspin.ui.client

Examples of com.google.gwt.topspin.ui.client.DoubleClickListener


              calloutModel.update(offset, 0, shortDescription, 0, true);
            }
          }));

      listenerOwner.manageEventListener(DoubleClickEvent.addDoubleClickListener(
          this, markElem, new DoubleClickListener() {
            public void onDoubleClick(DoubleClickEvent event) {
              if (zoomRight) {
                mainTimeline.transitionTo(
                    mainTimeline.getModel().getLeftBound(), offset);
              } else {
View Full Code Here


    MouseDownEvent.addMouseDownListener(overViewTimeLine,
        overViewTimeLine.getElement(), selectionMouseListener);

    // Double Click Zoom
    DoubleClickEvent.addDoubleClickListener(overViewTimeLine,
        overViewTimeLine.getElement(), new DoubleClickListener() {

          public void onDoubleClick(DoubleClickEvent event) {
            int newX = getXOffset(event.getNativeEvent().getClientX());
            zoomAndCenterToMouse(newX);
          }
View Full Code Here

TOP

Related Classes of com.google.gwt.topspin.ui.client.DoubleClickListener

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.