diff 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 diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/flys-client/src/main/java/de/intevation/flys/client/client/ui/ImgLink.java	Mon Oct 17 17:28:24 2011 +0000
@@ -0,0 +1,17 @@
+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