$Date: 2005/10/23 11:21:01 $
$Revision: 1.9 $
-- Mouse button down event
-- Mouse button up event
-- Mouse clicked event
-- Mouse drag start event
-- Mouse drag stop event
-- Mouse dragged event
-- Mouse entered event
-- Mouse exited event
-- Mouse moved event
-- Mouse wheel down event
-- Mouse wheel up event
Mouse sensitive objects which dispatches mouse events.
Subscribe on an event-type you want to be notified.
In case of a mouse click the event order is:
mouse_button_down_event
mouse_button_up_event
mouse_clicked_event
In case of a mouse drag the event order is:
mouse_button_down_event
mouse_drag_start_event
mouse_dragged_event (as long as the mouse is moved)
mouse_button_up_event
mouse_drag_stop_event
Note: it is possible NOT to receive a mouse_drag_stop_event if the mouse exited during dragging.
You will then receive a mouse_exited_event instead. If the mouse is dragged outside the area and
back in, you will receive a mouse_exited_event and mouse_entered_event event in between
mouse_dragged_events.