In SWT, for MouseListener interface, the methods available are mouseUp(), mouseDown() and mouseDoubleClick()

How to fire an event based on the user click?

We can do this by conjunction of mouseUp() and mouseDown() but isn't there any trivial solution like mouseClick() method in SWT?

Thanks.

link|improve this question

67% accept rate
1  
What kind of object? Just a Composite? (Most of the native wrapper types have SelectionListeners to implement this, but otherwise mouse down and mouse up are unambiguous. "Click" less so.) – Edward Thomson Jan 12 at 3:41
I am drawing an image using GC(GraphicsContext) How to fire an event when the user clicks on the image ? – ynwa Jan 12 at 5:34
You write "How to fire an event based on the user click?" What do you mean? The SWT listeners listens for events from the display... – Tonny Madsen Jan 13 at 7:57
feedback

1 Answer

How would a mouse-click event be defined? Mouse-down followed by mouse-up without mouse leaving the bounds of the control (otherwise it would be drag-start), right? By that definition, mouse-click event couldn't be associated with a single point, but rather with an area (1) or a control (2). The first case wouldn't fit into generic SWT event, which only has a location (x and y), and you'd still need additional code to check whether the click area was inside your image. In the second case where the mouse-click would only be defined using a control (and no location), the event would be useless to you.

When you have implemented your own single-click detection you can fire any events on the control you like, even those not defined by SWT.

link|improve this answer
I am not getting the context where the mouseClick() event will be useless. Can you be a bit more explanative ? – ynwa Jan 12 at 18:22
@ynwa Updated my answer. This is just theoretical and doesn't change the fact that there is no MouseClick event in SWT :) – Martti Käärik Jan 13 at 6:42
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.