view flys-client/src/main/java/de/intevation/flys/client/client/ui/ImgLink.java @ 1343:0d3d3860beb5

Added a ImgLink class which creates an html link with an image. flys-client/trunk@2997 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Ingo Weinzierl <ingo.weinzierl@intevation.de>
date Mon, 17 Oct 2011 17:28:24 +0000
parents
children 3c8ae5605a51
line wrap: on
line source
package de.intevation.flys.client.client.ui;

import com.smartgwt.client.types.Overflow;
import com.smartgwt.client.widgets.HTMLPane;


public class ImgLink extends HTMLPane {

    public ImgLink(String imgUrl, String href, int width, int height) {
        super();

        setContents("<a href='" + href + "'><img src='" + imgUrl + "'></a>");
        setWidth(width);
        setHeight(height);
        setOverflow(Overflow.VISIBLE);
    }
}

http://dive4elements.wald.intevation.org