Autoscroll animation (Smart GWT) : Animation « GWT « Java

Home
Java
1.2D Graphics GUI
2.3D
3.Advanced Graphics
4.Ant
5.Apache Common
6.Chart
7.Class
8.Collections Data Structure
9.Data Type
10.Database SQL JDBC
11.Design Pattern
12.Development Class
13.EJB3
14.Email
15.Event
16.File Input Output
17.Game
18.Generics
19.GWT
20.Hibernate
21.I18N
22.J2EE
23.J2ME
24.JDK 6
25.JNDI LDAP
26.JPA
27.JSP
28.JSTL
29.Language Basics
30.Network Protocol
31.PDF RTF
32.Reflection
33.Regular Expressions
34.Scripting
35.Security
36.Servlets
37.Spring
38.Swing Components
39.Swing JFC
40.SWT JFace Eclipse
41.Threads
42.Tiny Application
43.Velocity
44.Web Services SOA
45.XML
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Java » GWT » AnimationScreenshots 
Autoscroll animation (Smart GWT)
Autoscroll animation (Smart GWT)
   
/*
 * SmartGWT (GWT for SmartClient)
 * Copyright 2008 and beyond, Isomorphic Software, Inc.
 *
 * SmartGWT is free software; you can redistribute it and/or modify it
 * under the terms of the GNU Lesser General Public License version 3
 * as published by the Free Software Foundation.  SmartGWT is also
 * available under typical commercial license terms - see
 * http://smartclient.com/license
 * This software is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
 * Lesser General Public License for more details.
 */
package com.smartgwt.sample.showcase.client;

import com.google.gwt.core.client.EntryPoint;
import com.google.gwt.user.client.ui.RootPanel;
import com.smartgwt.client.types.Alignment;
import com.smartgwt.client.types.AnimationEffect;
import com.smartgwt.client.types.DragAppearance;
import com.smartgwt.client.types.Overflow;
import com.smartgwt.client.widgets.AnimationCallback;
import com.smartgwt.client.widgets.Canvas;
import com.smartgwt.client.widgets.HTMLPane;
import com.smartgwt.client.widgets.IButton;
import com.smartgwt.client.widgets.Slider;
import com.smartgwt.client.widgets.events.ClickEvent;
import com.smartgwt.client.widgets.events.ClickHandler;
import com.smartgwt.client.widgets.events.DragRepositionStopEvent;
import com.smartgwt.client.widgets.events.DragRepositionStopHandler;
import com.smartgwt.client.widgets.events.DragResizeStopEvent;
import com.smartgwt.client.widgets.events.DragResizeStopHandler;
import com.smartgwt.client.widgets.form.DynamicForm;
import com.smartgwt.client.widgets.form.fields.RadioGroupItem;
import com.smartgwt.client.widgets.form.fields.events.ChangedEvent;
import com.smartgwt.client.widgets.form.fields.events.ChangedHandler;

public class Showcase implements EntryPoint {

  public void onModuleLoad() {
    RootPanel.get().add(getViewPanel());
  }

  public Canvas getViewPanel() {
    Canvas canvas = new Canvas();
    canvas.setWidth100();
    canvas.setHeight100();
    
    final Canvas dest = new Canvas();
    dest.setOverflow(Overflow.HIDDEN);
    dest.setAlign(Alignment.CENTER);
    dest.setShowEdges(true);
    dest.setEdgeSize(5);
    dest.setBackgroundColor("#FFFFA0");
    dest.setCanDragReposition(true);
    dest.setCanDragResize(true);
    dest.setDragAppearance(DragAppearance.TARGET);
    dest.setContents("<b>Destination</b> (drag to move or resize)");
    dest.setLeft(400);
    dest.setTop(200);
    dest.setWidth(200);
    dest.setHeight(200);

    dest.addDragRepositionStopHandler(new DragRepositionStopHandler() {
        public void onDragRepositionStop(DragRepositionStopEvent event) {
            dest.sendToBack();
        }
    });

    dest.addDragResizeStopHandler(new DragResizeStopHandler() {
        public void onDragResizeStop(DragResizeStopEvent event) {
            dest.sendToBack();
        }
    });
    canvas.addChild(dest);

    final Canvas anim = new Canvas();
    anim.setOverflow(Overflow.HIDDEN);
    anim.setBorder("1px solid black");
    anim.setBackgroundColor("#A0FFA0");
    anim.setCanDragReposition(true);
    anim.setCanDragResize(true);
    anim.setDragAppearance(DragAppearance.TARGET);
    anim.setSmoothFade(true);
    anim.setContents("1<br>2<br>3<br><b>Animated Object</b> (drag to move or resize)<br>3<br>2<br>1");
    anim.setLeft(100);
    anim.setTop(250);
    anim.setWidth(100);
    anim.setHeight(100);
    canvas.addChild(anim);

    String numberStackHTML = "0";
    for (int i = 1; i < 100; i++) {
        numberStackHTML += "<br>" + i;
    }

    final HTMLPane scroller = new HTMLPane();
    scroller.setShowEdges(true);
    scroller.setEdgeSize(5);
    scroller.setBackgroundColor("#D0D0FF");
    scroller.setCanDragReposition(true);
    scroller.setCanDragResize(true);
    scroller.setDragAppearance(DragAppearance.TARGET);
    scroller.setContents(numberStackHTML);
    scroller.setLeft(640);
    scroller.setTop(10);
    scroller.setWidth(100);
    scroller.setHeight(100);
    canvas.addChild(scroller);

    final Slider timeSlider = new Slider();
    timeSlider.setLeft(20);
    timeSlider.setTop(0);
    timeSlider.setVertical(false);
    timeSlider.setValue(1000);
    timeSlider.setMinValue(250);
    timeSlider.setMaxValue(4000);
    timeSlider.setNumValues(16);
    timeSlider.setTitle("Duration (ms)");
    timeSlider.setAnimateThumb(true);
    timeSlider.setAnimateThumbInit(true);
    canvas.addChild(timeSlider);

    IButton reset = new IButton("<b>Reset</b>");
    reset.setLeft(260);
    reset.setTop(150);
    reset.addClickHandler(new ClickHandler() {
        public void onClick(ClickEvent event) {
            anim.setRect(100250100100);
            anim.setOpacity(100);
            anim.scrollTo(00);
            anim.show();
            dest.setRect(400200200200);
            scroller.setRect(64010100160);
            scroller.scrollTo(00);
        }
    });
    canvas.addChild(reset);

    IButton move = new IButton("Move");
    move.setLeft(20);
    move.setTop(80);
    move.addClickHandler(new ClickHandler() {
        public void onClick(ClickEvent event) {
            anim.animateMove(dest.getLeft(), dest.getTop(), null, (inttimeSlider.getValue());
        }
    });
    canvas.addChild(move);

    IButton resize = new IButton("Resize");
    resize.setLeft(20);
    resize.setTop(110);
    resize.addClickHandler(new ClickHandler() {
        public void onClick(ClickEvent event) {
            anim.animateResize(dest.getLeft(), dest.getTop(), null, (inttimeSlider.getValue());
        }
    });
    canvas.addChild(resize);

    IButton moveResize = new IButton("Move &amp; Resize");
    moveResize.setLeft(140);
    moveResize.setTop(80);
    moveResize.addClickHandler(new ClickHandler() {
        public void onClick(ClickEvent event) {
            anim.animateRect(dest.getLeft(), dest.getTop(), dest.getWidth(), dest.getHeight(), null, (inttimeSlider.getValue());
        }
    });
    canvas.addChild(moveResize);

    IButton moveFollowedByResize = new IButton("Move, Resize");
    moveFollowedByResize.setLeft(140);
    moveFollowedByResize.setTop(110);
    moveFollowedByResize.addClickHandler(new ClickHandler() {
        public void onClick(ClickEvent event) {
            anim.animateMove(dest.getLeft(), dest.getTop()new AnimationCallback() {
                public void execute(boolean earlyFinish) {
                    anim.animateResize(dest.getWidth(), dest.getHeight(), null, (inttimeSlider.getValue());
                }
            }(inttimeSlider.getValue());
        }
    });
    canvas.addChild(moveFollowedByResize);

    IButton fadeOut = new IButton("Fade Out");
    fadeOut.setLeft(260);
    fadeOut.setTop(80);
    fadeOut.addClickHandler(new ClickHandler() {
        public void onClick(ClickEvent event) {
            anim.animateHide(AnimationEffect.FADE, null, (inttimeSlider.getValue());
        }
    });
    canvas.addChild(fadeOut);

    IButton fadeIn = new IButton("Fade In");
    fadeIn.setLeft(260);
    fadeIn.setTop(110);
    fadeIn.addClickHandler(new ClickHandler() {
        public void onClick(ClickEvent event) {
            anim.animateShow(AnimationEffect.FADE, null, (inttimeSlider.getValue());
        }
    });
    canvas.addChild(fadeIn);

    IButton slideOut = new IButton("Slide Out");
    slideOut.setLeft(380);
    slideOut.setTop(80);
    slideOut.addClickHandler(new ClickHandler() {
        public void onClick(ClickEvent event) {
            anim.animateHide(AnimationEffect.SLIDE, null, (inttimeSlider.getValue());
        }
    });
    canvas.addChild(slideOut);

    IButton slideIn = new IButton("Slide In");
    slideIn.setLeft(380);
    slideIn.setTop(110);
    slideIn.addClickHandler(new ClickHandler() {
        public void onClick(ClickEvent event) {
            anim.animateShow(AnimationEffect.SLIDE, null, (inttimeSlider.getValue());
        }
    });
    canvas.addChild(slideIn);

    IButton wipeOut = new IButton("Wipe Out");
    wipeOut.setLeft(500);
    wipeOut.setTop(80);
    wipeOut.addClickHandler(new ClickHandler() {
        public void onClick(ClickEvent event) {
            anim.animateHide(AnimationEffect.WIPE, null, (inttimeSlider.getValue());
        }
    });
    canvas.addChild(wipeOut);

    IButton wipeIn = new IButton("Wipe In");
    wipeIn.setLeft(500);
    wipeIn.setTop(110);
    wipeIn.addClickHandler(new ClickHandler() {
        public void onClick(ClickEvent event) {
            anim.animateShow(AnimationEffect.WIPE, null, (inttimeSlider.getValue());
        }
    });
    canvas.addChild(wipeIn);

    IButton scrollTop = new IButton("Scroll Top");
    scrollTop.setLeft(760);
    scrollTop.setTop(50);
    scrollTop.addClickHandler(new ClickHandler() {
        public void onClick(ClickEvent event) {
            scroller.animateScroll(00, null, (inttimeSlider.getValue());
        }
    });
    canvas.addChild(scrollTop);

    IButton scrollMiddle = new IButton("Scroll Middle");
    scrollMiddle.setLeft(760);
    scrollMiddle.setTop(80);
    scrollMiddle.addClickHandler(new ClickHandler() {
        public void onClick(ClickEvent event) {
            scroller.animateScroll(0(scroller.getScrollHeight() - scroller.getHeight()) 2, null, (inttimeSlider.getValue());
        }
    });
    canvas.addChild(scrollMiddle);

    IButton scrollEnd = new IButton("Scroll End");
    scrollEnd.setLeft(760);
    scrollEnd.setTop(110);
    scrollEnd.addClickHandler(new ClickHandler() {
        public void onClick(ClickEvent event) {
            scroller.animateScroll(0, scroller.getScrollBottom(), null, (inttimeSlider.getValue());
        }
    });
    canvas.addChild(scrollEnd);

    DynamicForm form new DynamicForm();
    form.setLeft(150);
    form.setTop(550);
    form.setWidth(300);
    form.setBackgroundColor("white");
    form.setBorder("1px solid black");
    form.setTitlePrefix("<b>");
    form.setTitleSuffix("<b>");

    RadioGroupItem radioGroupItem = new RadioGroupItem();
    radioGroupItem.setName("Acceleration");
    radioGroupItem.setValueMap("smoothStart""smoothEnd""smoothStartEnd""none""custom");
    radioGroupItem.setDefaultValue("smoothEnd");
    radioGroupItem.addChangedHandler(new ChangedHandler() {
        public void onChanged(ChangedEvent event) {
            String value = event.getValue().toString();
            if (value.equals("custom")) {

            else {

            }
        }
    });
    form.setFields(radioGroupItem);
    //canvas.addChild(form);

    return canvas;
  }

}

   
    
    
  
SmartGWT.zip( 9,880 k)
Related examples in the same category
1.GWT animation: fade in and fade out
2.Animation: Expand and collapse (Smart GWT)Animation: Expand and collapse (Smart GWT)
3.Animation Sequence Sample (Smart GWT)Animation Sequence Sample (Smart GWT)
4.Slide in and slide out animation (Smart GWT)Slide in and slide out animation (Smart GWT)
5.Zoom image animation (Smart GWT)Zoom image animation (Smart GWT)
6.Fade in and fade out animation (Smart GWT)Fade in and fade out animation (Smart GWT)
7.Layout animation (Smart GWT)Layout animation (Smart GWT)
8.Move in and move out animation (Smart GWT)Move in and move out animation (Smart GWT)
9.Window expanding and collapsing animation (Smart GWT)Window expanding and collapsing animation (Smart GWT)
10.Wipe in and wipe out animation (Smart GWT)Wipe in and wipe out animation (Smart GWT)
11.Image zooming and shrinking animation (Smart GWT)Image zooming and shrinking animation (Smart GWT)
12.Control the animation duration (Smart GWT)Control the animation duration (Smart GWT)
13.Timer based animation (Smart GWT)Timer based animation (Smart GWT)
14.orbit-path animation (Smart GWT)orbit-path animation (Smart GWT)
15.Slide in and slide out (Ext GWT)Slide in and slide out (Ext GWT)
16.Fade in and Fade out (Ext GWT)Fade in and Fade out (Ext GWT)
17.Move to a position (Ext GWT)Move to a position (Ext GWT)
18.Blinking (Ext GWT)
19.Set Widget position (Ext GWT)
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.