Extending UI Binder

2010-12-06 Thread Abdullah Shaikh
files, I want to integrated GWT with it, so that the user can define the gwt ui, using the same xml files. Any links of extending UI binder or how the GWT compiler works will be helpful ? Thanks, Abdullah -- You received this message because you are subscribed to the Google Groups Google Web

Re: Extending UI-Binder

2010-03-11 Thread Gal Dolber
It should be... I have seen the custom parsers on the gwt source, but I didn't see if is there any extension system to declare one of your own. You can still do this: g:HorizontalPanel g:HTML SVG rect ... / circle ... / /SVG /g:HTML /g:HorizontalPanel 2010/3/11 Jan Ehrhardt

Re: Extending UI-Binder

2010-03-11 Thread Chris Lercher
Well, you can import any package, and bind it to a namespace prefix as explained here: http://code.google.com/webtoolkit/doc/latest/DevGuideUiBinder.html#Hello_Widget_World I imagine, that it would also be possible to have an addRect(), addCircle() method etc in your SVG class (or maybe some

Extending UI-Binder

2010-03-10 Thread Jan Ehrhardt
Hi, I would like to extend the UI-Binder to handle custom types. In my case these are SVG DOM elements. I would like to do something like: g:HorizontalPanel SVG rect ... / circle ... / /SVG /g:HorizontalPanel In the above example, SVG is a subclass of Widget, that wraps the svgweb