Adding drag and drop support to the mobile web app. The desktop TaskEditView now has a list of templates.  Users can drag a template over the edit form to populate the fields.

I found a few holes in the drag and drop API, which are also fixed in this patch. I added the missing DragStartEvent, DragEvent, and DragEndEvent, which are part of the HTML5 spec. Also, the native dragexit event is deprecated and only used by older versions of firefox, so I switch the DragExitEvent to use the correct event type "dragleave". I modified sinkEvents to handle the new bitless drag event types. I also added the DataTransfer JSO, which is required to actually use drag and drop (I didn't implement the entire API until I have more time to test the other methods in DataTransfer, but the important ones are there).

I updated DragAndDropEventsSinkTest to use a WidgetCreator instead of duplicating code all over the place. Also, we don't need to test every subclass of FocusWidget, since FocusWidget itself adds the drag handlers.

Demo at http://gwt-cloudtasks.appspot.com/.  Note that in IE9, you have to select text before you can trigger a drag event, and you must drop directly over the input boxes in the form.  In other browsers, this is not the case.

Review at http://gwt-code-reviews.appspot.com/1420811

Review by: rice@google.com

git-svn-id: https://google-web-toolkit.googlecode.com/svn/trunk@10138 8db76d5a-ed1c-0410-87a9-c151d255dfc7
41 files changed