Using SVG in GWT - Stack Overflow most recent 30 from stackoverflow.com 2009-11-26T15:44:42Z http://stackoverflow.com/feeds/question/691809 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/691809/using-svg-in-gwt 2 Using SVG in GWT nevets1219 2009-03-27T23:32:14Z 2009-11-03T10:17:14Z <p>I was wondering if it is possible to include SVG content inside a panel (or whatever would work in GWT), be able to add more to the SVG (like add a circle or a curve) programmatically , and handle mouse events (would this be in SVG or GWT?). I've tried creating an HTML object adding something along the lines of:</p> <p><code>&lt;svg xmlns="http://www.w3.org/2000/svg" version="1.1"&gt;</code> <code>&lt;circle cx="50" cy="50" r="30" /&gt;</code> <code>&lt;/svg&gt;</code></p> <p>That didn't work (nothing visible in output) but I'm not sure if it was because I did it wrong or it's not allowed.</p> <p>I was able to do a simple example in GWT with Google Visualization's LineChart but I'd like to move away from Google Visualization and be able to generate the SVG myself and customize it further. I've looked around and many resources points to using Canvas but I'm not sure if that's the best route yet.</p> <p>I'm also a bit baffled about the example <a href="https://developer.mozilla.org/en/SVG%5FIn%5FHTML%5FIntroduction" rel="nofollow">here</a>. I tried a simple copy-paste of it to try locally and it didn't seem to work at all. I was however able to get another sample working with just HTM (embed with src pointing to SVG file) L + separate SVG file but I haven't been able to access it using GWT using RootPanel.get(...).</p> <p>EDIT: I've read about SVG not working with Hosted Browser and compiling it does work but I am uncertain how to refer to the SVG (which I have placed into the HTML via ). If I can access it then presumably I can add to its innerHTML. I've tried in RootPanel.get("hi").getElement().setInnerHTML("...") but that doesn't seem to work or did I mess up? <strong>I guess the goal is to be able to manipulate a SVG file which I linked somehow (whether in GWT or in HTML) and be able to modify it based on user's input.</strong></p> <p><strong>2nd EDIT</strong> So far, I've been programming functionality inside of the actual SVG file. In our setup, our SVG is an embedded object and we passed 'document' to the embedded SVG. Passing information from an embed object to and from HTML is quite doable since the HTML has access to our SVG functions and the SVG has access to the 'document'.</p> <p>There are more transparent ways of doing so (Rapahel) where FireBug could see the SVG directly which is nice but now not quite necessary. Thus far, I don't think any of the solutions I've looked at were IFrames but I could be wrong. A little warning, SVG can be pretty slow sometimes.</p> <p>I would say my issue is solved (sort of?) but I'm not using Raphael, jQuery, nor GWT at the moment but the method I described in my answer should still work if I want to use GWT.</p> http://stackoverflow.com/questions/691809/using-svg-in-gwt/700753#700753 2 Answer by xabbu for Using SVG in GWT xabbu 2009-03-31T12:47:17Z 2009-03-31T12:47:17Z <p>You might stuble about the html vs xhtml problem: inline SVG needs to be interpreted as XML/XHTML, but at least for me, I cannot persuade GWT to live with applicaton/xhtml+xml as a content type. For the local test you wonder about: try to save the file as .xhtml and load it into Firefox - then it works, because FF in this case interprets it as XHTML.</p> <p>See <a href="http://wiki.svg.org/Inline_SVG" rel="nofollow">http://wiki.svg.org/Inline_SVG</a> for background information.</p> <p>If you find a solution to the problem, please post. Regards, Axel</p> http://stackoverflow.com/questions/691809/using-svg-in-gwt/727147#727147 1 Answer by nevets1219 for Using SVG in GWT nevets1219 2009-04-07T18:57:57Z 2009-04-07T18:57:57Z <p>After playing around a bit, I've been most successful with using <a href="http://raphaeljs.com/" rel="nofollow">Raphaël</a> (which handles cross-browser compatibility) though I suspect anything along those lines would work just fine. Basically I do the following in <strong>JavaScript</strong>:</p> <pre><code>var r = Raphael("someID", WND_WIDTH, WND_HEIGHT); // additional configuration and setup if needed.... </code></pre> <p>Then I would do the following in <strong>GWT</strong>:</p> <pre><code>public native JavaScriptObject getRaphael() /*-{ return $wnd.r; }-*/; // I now have access to the JavaScript object and could do the following: public native void drawCircle(JavaScriptObject obj, int x, int y, int r) /*-{ obj.circle(x, y, r); }-*/; </code></pre> <p>I've also been reading around and it seems that porting Raphaël into GWT (this <a href="http://googlewebtoolkit.blogspot.com/2008/08/getting-to-really-know-gwt-part-2.html" rel="nofollow">article</a> is a good read) will not only increase performance (as per some post I read on Google Groups but can't find at the moment - they mentioned the compiler does quite a bit of work) but also facilitate coding &amp; debugging.</p> <p>So I accomplished my goal of being able to manipulate the SVG directly (somewhat until I port Raphaël into Java or at least create wrappers). I have yet to look seriously into the Google Visualization API but I suspect it might work just as well but I'm not sure if it is robust enough for my needs.</p> <p>An important thing I believe I was missing as stated on Raphaël's site was the following:</p> <blockquote> <p>This means every graphical object you create is also a DOM object, so you can attach JavaScript event handlers or modify them later.</p> </blockquote> http://stackoverflow.com/questions/691809/using-svg-in-gwt/727187#727187 1 Answer by Pierre for Using SVG in GWT Pierre 2009-04-07T19:11:01Z 2009-04-07T19:11:01Z <p>If you cannot see your SVG it may be because your browser see your document as an HTML file but NOT as an XHTML file. Try to change the extension of your file (.xhtml), check your html is well formed, add an html 'meta' tag etc.. </p> <p>FYI , There is also a SVG module for GWT: <a href="http://gwt-widget.sourceforge.net/" rel="nofollow">http://gwt-widget.sourceforge.net/</a></p> <p>Pierre </p> http://stackoverflow.com/questions/691809/using-svg-in-gwt/821096#821096 0 Answer by san for Using SVG in GWT san 2009-05-04T17:38:12Z 2009-05-04T17:38:12Z <p>Be warned that SVG will not work in current GWT Shell (Hosted mode) up to 1.6 inclusive, because:</p> <p>1) on windows, it uses IE component</p> <p>2) on Linux, it uses Firefox 1.0 or equal mozilla runtime, which has no support for SVG.</p> <p>Compiled code works fine in non-IE browsers.</p> <p>Also, it works regardless of HTML/XHTML in browsers, because in GWT you use createElementNS (you can code method yourself using JSNI). Also, your SVG tag may need width/height attributes (see SVG spec).</p> http://stackoverflow.com/questions/691809/using-svg-in-gwt/864505#864505 0 Answer by Olivier Hoareau for Using SVG in GWT Olivier Hoareau 2009-05-14T16:57:09Z 2009-05-14T16:57:09Z <p>Interesting!</p> <p>I've tried to use Raphael through GWT/Java code but I can't seem to be able to use your trick.</p> <p>I have the following block in my HTML page :</p> <pre><code>&lt;script type="text/javascript" language="javascript" &gt;&lt;br/&gt; window.onload=function(){ var rr = Raphael(20,20, 200,200); rr.circle(50,40,30); } &lt;/script&gt; </code></pre> <p>When I compile/browse the page in Firefox, I get my circle in my page, no problem.</p> <p>Then I add the following native java to my module entrypoint method and call it :</p> <pre><code> private native JavaScriptObject returnRaphael() /*-{ return $wnd.rr; }-*/; </code></pre> <p>Debugging shows that the returned object is always <code>null</code>...</p> <p>Plus, I don't understand why I could not simply do the following in my Java code:</p> <pre><code>public native void createRaphael()/*-{ Raphael("some_div", 200,200); }-*/; </code></pre> <p>GWT keeps telling me that Raphael does not exist, though, as I see through firebug, the library is perfectly included. This does not work either :</p> <pre><code>public native void createRaphael()/*-{ $wnd.Raphael("some_div", 200,200); }-*/; </code></pre> <p>Surprinsingly, I manage to access draw2d (openJacob draw2d) classes and functions with that <code>$wnd</code> but not my Raphael objects... There must be something I did not get...</p> http://stackoverflow.com/questions/691809/using-svg-in-gwt/1666429#1666429 0 Answer by Jared Garst for Using SVG in GWT Jared Garst 2009-11-03T10:17:14Z 2009-11-03T10:17:14Z <p>I don't entirely understand why, but the createElementNS JavaScript method allows you to create and correctly format xhtml within html.</p> <p>Because there is no equivalent in explorer, GWT does not implement createElementNS, but you can with a quick native method : </p> <pre><code>private static native Element createElementNS(final String ns, final String name)/*-{ return document.createElementNS(ns, name);` }-*/; </code></pre> <p>it makes sense to put this in a SVGPanel class</p> <pre><code>import com.google.gwt.user.client.Element; import com.google.gwt.user.client.ui.ComplexPanel; public class SVGPanel extends ComplexPanel{ private static final String SVG_NAMESPACE = "http://www.w3.org/2000/svg"; public SVGPanel() { setElement(createElementNS(SVG_NAMESPACE, "svg")); showcaseSVG(); //Demonstrate that SVG works! Inexplicably! } private void showcaseSVG(){ Element svgElement = createElementNS(SVG_NAMEPSACE, "circle"); svgElement.setAttribute("cx", "50"); svgElement.setAttribute("cy", "50"); svgElement.setAttribute("r", "30"); getElement().appendChild(svgElement); } } </code></pre> <p>This should produce some simple SVG when added to your program. Congratulations! You are now sticking it to the xhtml man.</p>