Example usage for com.google.gwt.user.client.ui Image subclass-usage

List of usage examples for com.google.gwt.user.client.ui Image subclass-usage

Introduction

In this page you can find the example usage for com.google.gwt.user.client.ui Image subclass-usage.

Usage

From source file asquare.gwt.tk.client.ui.Icon.java

/**
 * An icon is an image which requires its dimensions be specifed at construction
 * time. Useful for static layouts. 
 */
public class Icon extends Image {
    /**

From source file ch.heftix.mailxel.client.LoginButton.java

public class LoginButton extends Image {

    public static final int LOGGED_IN = 1;
    public static final int LOGGED_OUT = 2;
    public static final int ERROR = 3;
    private int state = LOGGED_OUT;

From source file ch.unifr.pai.ice.client.clickblobs.Blob.java

public class Blob extends Image {

    Vector<CursorXY> blobClickVector;

    int iteration = 0;
    int nbIter = 0;

From source file ch.unifr.pai.ice.client.dragNdrop.DraggableBlob.java

public class DraggableBlob extends Image implements Draggable {

    String blobName = "";
    int blobNumber = 0;
    double dragStartTime;
    double dropTime;

From source file ch.unifr.pai.mindmap.client.QRUrl.java

/**
 * A {@link TWICEModule} that provides a visual tag (QR code) of the current URL by requesting its data from the {@link QRCodeGeneratorServlet}
 * 
 * @author Oliver Schmid
 * 
 */

From source file client.ui.components.Image.java

/**
 * Image loaded from an asset URL.
 */
public class Image extends com.google.gwt.user.client.ui.Image {
    /**
     * Set image to display.

From source file com.dianaui.universal.core.client.ui.Image.java

/**
 * @author Joshua Godi
 * @author <a href='mailto:donbeave@gmail.com'>Alexey Zhokhov</a>
 */
public class Image extends com.google.gwt.user.client.ui.Image
        implements HasType<ImageType>, HasResponsiveness, HasPull, HasCenterBlock, HasId {

From source file com.ephesoft.dcma.gwt.core.client.ui.RotatableImage.java

public class RotatableImage extends Image {

    public RotatableImage() {
        super();
        sinkEvents(Event.ONCONTEXTMENU);
    }

From source file com.ephesoft.gxt.core.client.ui.widget.RotatableImage.java

public class RotatableImage extends Image {

    public RotatableImage() {
        super();
        sinkEvents(Event.ONCONTEXTMENU);
    }

From source file com.extjs.gxt.ui.client.widget.PngImage.java

/**
 * Image widget that overcomes PNG browser incompatabilities.
 * 
 * <p>
 * Implementation adapted from GWT Widget Library
 * (http://gwt-widget.sourceforge.net/).