Package com.reveregroup.carousel.client.events

Examples of com.reveregroup.carousel.client.events.PhotoClickHandler


        }
      }
    });
   
    //Rotate to an image when clicked.
    target.addPhotoClickHandler(new PhotoClickHandler() {
      public void photoClicked(PhotoClickEvent event) {
        target.rotateTo(event.getPhotoIndex());
      }
    });
  }
View Full Code Here


  public FocusBehavior(Carousel carousel) {
    this.target = carousel;
    handlerManager = new HandlerManager(this);
   
    carousel.addPhotoClickHandler(new PhotoClickHandler() {
      public void photoClicked(PhotoClickEvent event) {
        if (event.getPhotoIndex() == target.getCurrentPhotoIndex()) {
          PhotoFocusEvent evt = new PhotoFocusEvent();
          evt.setPhoto(event.getPhoto());
          evt.setPhotoIndex(event.getPhotoIndex());
View Full Code Here

TOP

Related Classes of com.reveregroup.carousel.client.events.PhotoClickHandler

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.