I have my sonyericsson Smart Watch responding to Touch events quite nicely. Now I have to move on to other interactions. Is there a LONG_PRESS event implemented or do I just use the fact that there are several down events and one up?
An example of a SWIPE_EVENT would be welcome too.
The SmartWatch supports the control extensions by sending touch events and swipe events. For touch, you will e.g. get PRESS, RELEASE and LONGPRESS events along with the coordinates. So yes, TOUCH_ACTION_LONGPRESS is implemented. Example:
And for swipe, you will get the direction of the swipe.
We just published two extensions as open source for your convenience: SmartWatch open source announcement. Especially the 8 game extension has some nice examples of what you are asking for, i.e. examples of touch and swipe.
And a link to the Smart Extension SDK.
Hope this helps!