All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.sencha.gxt.theme.blue.client.resizable.BlueResizableAppearance Maven / Gradle / Ivy

There is a newer version: 3.1.1
Show newest version
/**
 * Sencha GXT 3.1.0-beta - Sencha for GWT
 * Copyright(c) 2007-2014, Sencha, Inc.
 * [email protected]
 *
 * http://www.sencha.com/products/gxt/license/
 */
package com.sencha.gxt.theme.blue.client.resizable;

import com.google.gwt.core.client.GWT;
import com.google.gwt.resources.client.ClientBundle;
import com.google.gwt.resources.client.ImageResource;
import com.sencha.gxt.theme.base.client.resizable.ResizableBaseAppearance;

public class BlueResizableAppearance extends ResizableBaseAppearance {

  public interface BlueResizableResources extends ResizableResources, ClientBundle {

    ImageResource handleEast();

    ImageResource handleNortheast();

    ImageResource handleNorthwest();

    ImageResource handleSouth();

    ImageResource handleSoutheast();

    ImageResource handleSouthwest();

    @Source({"com/sencha/gxt/theme/base/client/resizable/Resizable.css", "BlueResizable.css"})
    BlueResizableStyle style();

  }

  public interface BlueResizableStyle extends ResizableStyle {
  }

  public BlueResizableAppearance() {
    this(GWT. create(BlueResizableResources.class));
  }

  public BlueResizableAppearance(ResizableResources resources) {
    super(resources);
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy