Package com.googlecode.mgwt.ui.client.widget.animation

Examples of com.googlecode.mgwt.ui.client.widget.animation.AnimationWidget


  /**
   * Construct an animation helper
   */
  public AnimationHelper() {
    this(new AnimationWidget());
  }
View Full Code Here


   *
   * @param css a {@link com.googlecode.mgwt.ui.client.theme.base.DialogCss} object.
   */
  public DialogBase(DialogAppearance appearance) {
    this.appearance = appearance;
    display = new AnimationWidget();

    display.addStyleName(appearance.dialogCss().animationContainerShadow());
    display.addStyleName(appearance.dialogCss().z_index());

    touchDelegate = new TouchDelegate(display);
View Full Code Here

    historyHandler.handleCurrentHistory();

  }

  private void createPhoneDisplay(ClientFactory clientFactory) {
    AnimationWidget display = new AnimationWidget();

    PhoneActivityMapper appActivityMapper = new PhoneActivityMapper(clientFactory);

    PhoneAnimationMapper appAnimationMapper = new PhoneAnimationMapper();
View Full Code Here

  private void createTabletDisplay(ClientFactory clientFactory) {


    OverlayMenu overlayMenu = new OverlayMenu();

    AnimationWidget navDisplay = new AnimationWidget();


    ActivityMapper navActivityMapper = new TabletNavActivityMapper(clientFactory);

    AnimationMapper navAnimationMapper = new TabletNavAnimationMapper();

    AnimatingActivityManager navActivityManager = new AnimatingActivityManager(navActivityMapper, navAnimationMapper, clientFactory.getEventBus());

    navActivityManager.setDisplay(navDisplay);
    overlayMenu.setMaster(navDisplay);

    AnimationWidget mainDisplay = new AnimationWidget();

    TabletMainActivityMapper tabletMainActivityMapper = new TabletMainActivityMapper(clientFactory);

    AnimationMapper tabletMainAnimationMapper = new TabletMainAnimationMapper();
View Full Code Here

  private HandlerRegistration hideTabBarHandler;

  private HandlerRegistration showTabBarHandler;

  public RootTabPanel() {
    this(new AnimationWidget());
  }
View Full Code Here

    this(DEFAULT_APPEARANCE);
  }

  public DialogOverlay(DialogOverlayAppearance appearance) {
    this.appearance = appearance;
    display = new AnimationWidget();
    display.addStyleName(appearance.overlayCss().dialogOverlay());
    touchDelegateForDisplay = new TouchDelegate(display);
    display.addStyleName(appearance.overlayCss().animationContainerShadow());

    container = new RootFlexPanel();
View Full Code Here

TOP

Related Classes of com.googlecode.mgwt.ui.client.widget.animation.AnimationWidget

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.