view flys-client/src/main/java/de/intevation/flys/client/client/ui/ImgLink.java @ 1495:bd6c8b06cb94

Improved the StyledEditorWindow to support a list of pointsizes. flys-client/trunk@3588 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Ingo Weinzierl <ingo.weinzierl@intevation.de>
date Wed, 04 Jan 2012 16:05:39 +0000
parents 0d3d3860beb5
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