buoy.event
Class MouseReleasedEvent
- WidgetEvent
public class MouseReleasedEvent
This is an event corresponding to the mouse button being released.
MouseReleasedEvent(Widget source, long when, int modifiers, int x, int y, int clickCount, boolean popupTrigger, int button) - Create a MouseReleasedEvent.
|
MouseReleasedEvent
public MouseReleasedEvent(Widget source,
long when,
int modifiers,
int x,
int y,
int clickCount,
boolean popupTrigger,
int button)
Create a MouseReleasedEvent.
source
- the Widget which generated this eventwhen
- the time at which the event occurredmodifiers
- describes the state of various keys and buttons at the time when the event occurred
(a sum of the constants defined by InputEvent)x
- the x coordinate at which the event occurredy
- the y coordinate at which the event occurredclickCount
- the number of successive times the mouse has been clickedpopupTrigger
- true if this event corresponds to the platform-specific trigger for displaying
popup menusbutton
- the flag for the button which has just changed state
Written by Peter Eastman.