I want to draw a circle in GWT, with some mouse over and drag-and-drop support. Is it possible to do so in GWT? can you provide an example code?
|
Yes you can. The pseudo code will be something like this -
Add Handlers as follows - 1) Mouse down handler to get the start of the drag
1) Mouse up handler to get the end the start of the drag
3) Mouse move handler to create the circle
EDIT - Take a look at this good example on how to get started with GWT HTML5 canvas |
|||
|
|
|
That is one approach. The other is to use a framework such as Lienzo which abstracts all that code. You get events, animations, and transformations out the box. Lienzo is a graphics toolkit in Java implemented using GWT, targeting HTML5's canvas. Lienzo is Apache 2, so it is free for all. To do a circle using Lienzo, you would do something like:
There are more events you can listen to, but that one is the most common. Good luck! |
||||
|
|