Re: DOMImpl for iPhone: How to do ?

2009-12-31 Thread gaill...@audemat.com
Maybe you could have a look at Sasha Maps : http://www.maryanovsky.com/sasha/maps/ There is some code for IPhone -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to google-web-tool...@googlegroups.com. To

Re: DOMImpl for iPhone: How to do ?

2009-12-31 Thread DaveC
..also I override the eventGetTypeInt(String) method in order to add the html5 drag and drop events, is this what you did? Cheers, Dave On Dec 31, 2:16 pm, DaveC wrote: > Ignored those warnings/errors and renamed anyway it it compiled/runs > in hosted mode fine... > > The only problem is that th

Re: DOMImpl for iPhone: How to do ?

2009-12-31 Thread DaveC
Ignored those warnings/errors and renamed anyway it it compiled/runs in hosted mode fine... The only problem is that the events aren't being captured (or the handlers aren't being added correctly)... would you be able to post one of your Event classes? Cheers, DaveC On Dec 31, 1:45 pm, DaveC wr

Re: DOMImpl for iPhone: How to do ?

2009-12-31 Thread DaveC
Tried to rename the package, but I get an error and a warning: Error: Method 'eventGetTypeInt(String)' in type 'com.applegreen.gwt.html5.dom.DOMImplMozillaHtml5' is native. Running the modified program will cause UnsatisfiedLinkError. Warn: Package 'com.google.gwt.user.client.impl' already exists

Re: DOMImpl for iPhone: How to do ?

2009-12-31 Thread DaveC
Ah, cool thanks - I've done all that just didn't put the MyDomImpl in com.google.gwt.user.client.impl... Cheers, Dave On Dec 31, 1:15 am, fvisticot wrote: > Hello, > I have worked on the pb and i have made some progress !!! > > 1. I have overloaded the DOMImpl class. The new overloaded class mus

Re: DOMImpl for iPhone: How to do ?

2009-12-30 Thread fvisticot
Hello, I have worked on the pb and i have made some progress !!! 1. I have overloaded the DOMImpl class. The new overloaded class must be in a package named com.google.gwt.user.client.impl 2. I have created dedicated events (extending DomEvent) 3. I have created dedicated handlers (extending Event

Re: DOMImpl for iPhone: How to do ?

2009-12-30 Thread DaveC
It seems I'm trying to do the same thing http://groups.google.com/group/google-web-toolkit/browse_thread/thread/e1c6bd5a5d196ecf... and have come up against the same barriers. If I find the answer I'll let you know. Cheers, Dave On Dec 30, 10:23 pm, fvisticot wrote: > I would like to manage the

DOMImpl for iPhone: How to do ?

2009-12-30 Thread fvisticot
I would like to manage the iPhone touchstart touchmove... events with a clean solution. It seems that i need to create my own DOMImpl for the iPhone and link this new DOMImpl to the iPhone userAgent. Do i need to recompile the GWT sources for that ? It seems that i can not override the DOMImplSafa