Re: can gwt work with javax.swing.* ?

2009-01-11 Thread Tom Schindl
Hi, Though what you are saying is perfectly right there are on going efforts in Eclipse 4.x (short e4) to provide an SWT-implementation for RIA toolkits like GWT, Flex, ... . Tom DaBlick schrieb: GWT gets translated to Javascript. Now, you might argue So? I heard Swing is pure Java. Why

Re: Help with GWT + PHP + Eclipse setup

2009-01-18 Thread Tom Schindl
You only need to open the .project-file and add the missing pdt-nature to it though I'm not sure if this will have any side effects. We are doing GWT+PHP development by having 2 projects where and the GWT one sources in the PHP-Files by using Subversions svn:externals. Tom Arthur Kalmenson

Re: GDE Alpha Released: GWT Development Environment based on Eclipse/ RCP Technology

2009-02-03 Thread Tom Schindl
Hi, Amazing stuff. If you now put this together with the E4 efforts of providing an SWT-Port for GWT and/or by using the UFaceKit [1] project we are working on (we are just restarting with a GWT-Implementation) this is going to be a nice thing. Did you ever thought to join the E4-Project (we

Re: Question on Code Generation inconjunction with JS-Libraries to optimize size

2009-12-23 Thread Tom Schindl
Hi Isaac, Looks like you read my mind because this exactly what I've started experimenting with. My code now looks like this: public class JSNIJs { @Target(ElementType.TYPE) public @interface JsResource { String[] resources(); } } public class AWrapper {

Re: Use smartgwt or not

2009-12-27 Thread Tom Schindl
Just to mention that there are other Widget-Projects besides SmartGWT and GXT. I'm working on a library called QxWT [1] which works similar to SmartGWT by wrapping an JavaScript-Library. We are (yet) not at the point where GXT and SmartGWT are but we are working hard on to get there. For me and

Re: Ext/GXT/ExtGWT v2.1.0 vs. SmartGWT v2.0

2010-02-01 Thread Tom Schindl
Though many people think that Overloading/Overwriting and JSNI don't really fit together. I think they do if you are a bit creative. If you are interested in how I solved this problem for QxWT you should take a look at this series of posts.

Re: How to write a simple overlay implementation?

2010-02-01 Thread Tom Schindl
My current work on a GWT-Wrapper for Raphael might be interesting to you [1]. Tom [1]http://tomsondev.bestsolution.at/2010/01/31/qxwt-1-0-1-0-rc1-and-other-cool-stuff/ On Tue, Jan 26, 2010 at 6:45 PM, markww mar...@gmail.com wrote: Ok this is what I came up with:  public class SVGRect

Re: Use Annotation to generate client side code

2010-02-03 Thread Tom Schindl
Hi, I've written a set of blog posts about code generation which are exploiting annoation to generate JS-Code and Java-Classes. http://tomsondev.bestsolution.at/2010/01/05/background-to-qxwt-and-gwt-generator-integration/ http://tomsondev.bestsolution.at/2010/01/10/qxwt-explained-part-2/

Re: Problem with Thread in GWT2.0

2010-02-08 Thread Tom Schindl
You might want to have something like comet. Take a look at http://code.google.com/p/gwteventservice/ Tom On Mon, Feb 8, 2010 at 1:22 PM, SergeZ comp1...@gmail.com wrote: Can you give a simple example of how to make this looped asynccallback call ? On 8 фев, 11:39, Joe Cheng

Re: library for SVG support in GWT

2010-02-11 Thread Tom Schindl
I wrote a wrapper for Raphael. http://tomsondev.bestsolution.at/2010/01/31/qxwt-1-0-1-0-rc1-and-other-cool-stuff/ On Wed, Feb 10, 2010 at 10:08 PM, Lukas Laag laa...@gmail.com wrote: Hi, I am working on an open-source library to provide SVG support to GWT. I plan to use it to develop a 2D

Re: Ext/GXT/ExtGWT v2.1.0 vs. SmartGWT v2.0

2010-02-11 Thread Tom Schindl
On Thu, Feb 11, 2010 at 5:29 PM, cretz chad.r...@gmail.com wrote: I too have seen many negative comments on SmartGWT. I am not associated with the project in any way, but I do use it for several projects lately. I do agree that some of it is difficult to debug/ understand do to the extensive

Re: [gwt-contrib] Questions on JsArray*

2010-02-02 Thread Tom Schindl
On Tue, Feb 2, 2010 at 8:19 PM, John Tamplin j...@google.com wrote: On Tue, Feb 2, 2010 at 2:16 PM, Tom tomson...@gmail.com wrote: I have some questions and proposals around the JsArray-classes because they are handy when working with JSNI but I believe they could be improved a bit. a) Why