Class MouseWheelEvent
- All Implemented Interfaces:
Serializable
A wheel mouse is a mouse which has a wheel in place of the middle button. This wheel can be rotated towards or away from the user. Mouse wheels are most often used for scrolling, though other uses are possible.
A MouseWheelEvent object is passed to every MouseWheelListener
object which registered to receive the "interesting" mouse events using the
component's addMouseWheelListener method. Each such listener
object gets a MouseEvent containing the mouse event.
Due to the mouse wheel's special relationship to scrolling Components, MouseWheelEvents are delivered somewhat differently than other MouseEvents. This is because while other MouseEvents usually affect a change on the Component directly under the mouse cursor (for instance, when clicking a button), MouseWheelEvents often have an effect away from the mouse cursor (moving the wheel while over a Component inside a ScrollPane should scroll one of the Scrollbars on the ScrollPane).
MouseWheelEvents start delivery from the Component underneath the mouse cursor. If MouseWheelEvents are not enabled on the Component, the event is delivered to the first ancestor Container with MouseWheelEvents enabled. This will usually be a ScrollPane with wheel scrolling enabled. The source Component and x,y coordinates will be relative to the event's final destination (the ScrollPane). This allows a complex GUI to be installed without modification into a ScrollPane, and for all MouseWheelEvents to be delivered to the ScrollPane for scrolling.
Some AWT Components are implemented using native widgets which display their own scrollbars and handle their own scrolling. The particular Components for which this is true will vary from platform to platform. When the mouse wheel is moved over one of these Components, the event is delivered straight to the native widget, and not propagated to ancestors.
Platforms offer customization of the amount of scrolling that should take place when the mouse wheel is moved. The two most common settings are to scroll a certain number of "units" (commonly lines of text in a text-based component) or an entire "block" (similar to page-up/page-down). The MouseWheelEvent offers methods for conforming to the underlying platform settings. These platform settings can be changed at any time by the user. MouseWheelEvents reflect the most recent settings.
The MouseWheelEvent class includes methods for
getting the number of "clicks" by which the mouse wheel is rotated.
The getWheelRotation() method returns the integer number
of "clicks" corresponding to the number of notches by which the wheel was
rotated. In addition to this method, the MouseWheelEvent
class provides the getPreciseWheelRotation() method which returns
a double number of "clicks" in case a partial rotation occurred.
The getPreciseWheelRotation() method is useful if a mouse supports
a high-resolution wheel, such as a freely rotating wheel with no
notches. Applications can benefit by using this method to process
mouse wheel events more precisely, and thus, making visual perception
smoother.
- Since:
- 1.4
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final intConstant representing scrolling by a "block" (like scrolling with page-up, page-down keys)static final intConstant representing scrolling by "units" (like scrolling with the arrow keys)Fields inherited from class MouseEvent
BUTTON1, BUTTON2, BUTTON3, MOUSE_CLICKED, MOUSE_DRAGGED, MOUSE_ENTERED, MOUSE_EXITED, MOUSE_FIRST, MOUSE_LAST, MOUSE_MOVED, MOUSE_PRESSED, MOUSE_RELEASED, MOUSE_WHEEL, NOBUTTONModifier and TypeFieldDescriptionstatic final intIndicates mouse button #1; used byMouseEvent.getButton().static final intIndicates mouse button #2; used byMouseEvent.getButton().static final intIndicates mouse button #3; used byMouseEvent.getButton().static final intThe "mouse clicked" event.static final intThe "mouse dragged" event.static final intThe "mouse entered" event.static final intThe "mouse exited" event.static final intThe first number in the range of ids used for mouse events.static final intThe last number in the range of ids used for mouse events.static final intThe "mouse moved" event.static final intThe "mouse pressed" event.static final intThe "mouse released" event.static final intThe "mouse wheel" event.static final intIndicates no mouse buttons; used byMouseEvent.getButton().Fields inherited from class InputEvent
ALT_DOWN_MASK, ALT_GRAPH_DOWN_MASK, ALT_GRAPH_MASK, ALT_MASK, BUTTON1_DOWN_MASK, BUTTON1_MASK, BUTTON2_DOWN_MASK, BUTTON2_MASK, BUTTON3_DOWN_MASK, BUTTON3_MASK, CTRL_DOWN_MASK, CTRL_MASK, META_DOWN_MASK, META_MASK, SHIFT_DOWN_MASK, SHIFT_MASKModifier and TypeFieldDescriptionstatic final intThe Alt key extended modifier constant.static final intThe AltGraph key extended modifier constant.static final intDeprecated.static final intDeprecated.It is recommended that ALT_DOWN_MASK andInputEvent.getModifiersEx()be used insteadstatic final intThe Mouse Button1 extended modifier constant.static final intDeprecated.It is recommended that BUTTON1_DOWN_MASK andInputEvent.getModifiersEx()be used insteadstatic final intThe Mouse Button2 extended modifier constant.static final intDeprecated.It is recommended that BUTTON2_DOWN_MASK andInputEvent.getModifiersEx()be used instead.static final intThe Mouse Button3 extended modifier constant.static final intDeprecated.It is recommended that BUTTON3_DOWN_MASK andInputEvent.getModifiersEx()be used instead.static final intThe Control key extended modifier constant.static final intDeprecated.It is recommended that CTRL_DOWN_MASK andInputEvent.getModifiersEx()be used insteadstatic final intThe Meta key extended modifier constant.static final intDeprecated.It is recommended that META_DOWN_MASK andInputEvent.getModifiersEx()be used insteadstatic final intThe Shift key extended modifier constant.static final intDeprecated.It is recommended that SHIFT_DOWN_MASK andInputEvent.getModifiersEx()be used insteadFields inherited from class ComponentEvent
COMPONENT_FIRST, COMPONENT_HIDDEN, COMPONENT_LAST, COMPONENT_MOVED, COMPONENT_RESIZED, COMPONENT_SHOWNModifier and TypeFieldDescriptionstatic final intThe first number in the range of ids used for component events.static final intThis event indicates that the component was rendered invisible.static final intThe last number in the range of ids used for component events.static final intThis event indicates that the component's position changed.static final intThis event indicates that the component's size changed.static final intThis event indicates that the component was made visible.Fields inherited from class AWTEvent
ACTION_EVENT_MASK, ADJUSTMENT_EVENT_MASK, COMPONENT_EVENT_MASK, consumed, CONTAINER_EVENT_MASK, FOCUS_EVENT_MASK, HIERARCHY_BOUNDS_EVENT_MASK, HIERARCHY_EVENT_MASK, id, INPUT_METHOD_EVENT_MASK, INVOCATION_EVENT_MASK, ITEM_EVENT_MASK, KEY_EVENT_MASK, MOUSE_EVENT_MASK, MOUSE_MOTION_EVENT_MASK, MOUSE_WHEEL_EVENT_MASK, PAINT_EVENT_MASK, RESERVED_ID_MAX, TEXT_EVENT_MASK, WINDOW_EVENT_MASK, WINDOW_FOCUS_EVENT_MASK, WINDOW_STATE_EVENT_MASKModifier and TypeFieldDescriptionstatic final longThe event mask for selecting action events.static final longThe event mask for selecting adjustment events.static final longThe event mask for selecting component events.protected booleanControls whether or not the event is sent back down to the peer once the source has processed it - false means it's sent to the peer; true means it's not.static final longThe event mask for selecting container events.static final longThe event mask for selecting focus events.static final longThe event mask for selecting hierarchy bounds events.static final longThe event mask for selecting hierarchy events.protected intThe event's id.static final longThe event mask for selecting input method events.static final longThe event mask for selecting invocation events.static final longThe event mask for selecting item events.static final longThe event mask for selecting key events.static final longThe event mask for selecting mouse events.static final longThe event mask for selecting mouse motion events.static final longThe event mask for selecting mouse wheel events.static final longThe event mask for selecting paint events.static final intThe maximum value for reserved AWT event IDs.static final longThe event mask for selecting text events.static final longThe event mask for selecting window events.static final longThe event mask for selecting window focus events.static final longThe event mask for selecting window state events.Fields inherited from class EventObject
source -
Constructor Summary
ConstructorsConstructorDescriptionMouseWheelEvent(Component source, int id, long when, int modifiers, int x, int y, int clickCount, boolean popupTrigger, int scrollType, int scrollAmount, int wheelRotation) Constructs aMouseWheelEventobject with the specified source component, type, modifiers, coordinates, scroll type, scroll amount, and wheel rotation.MouseWheelEvent(Component source, int id, long when, int modifiers, int x, int y, int xAbs, int yAbs, int clickCount, boolean popupTrigger, int scrollType, int scrollAmount, int wheelRotation) Constructs aMouseWheelEventobject with the specified source component, type, modifiers, coordinates, absolute coordinates, scroll type, scroll amount, and wheel rotation.MouseWheelEvent(Component source, int id, long when, int modifiers, int x, int y, int xAbs, int yAbs, int clickCount, boolean popupTrigger, int scrollType, int scrollAmount, int wheelRotation, double preciseWheelRotation) Constructs aMouseWheelEventobject with the specified source component, type, modifiers, coordinates, absolute coordinates, scroll type, scroll amount, and wheel rotation. -
Method Summary
Modifier and TypeMethodDescriptiondoubleReturns the number of "clicks" the mouse wheel was rotated, as a double.intReturns the number of units that should be scrolled per click of mouse wheel rotation.intReturns the type of scrolling that should take place in response to this event.intThis is a convenience method to aid in the implementation of the common-case MouseWheelListener - to scroll a ScrollPane or JScrollPane by an amount which conforms to the platform settings.intReturns the number of "clicks" the mouse wheel was rotated, as an integer.Returns a parameter string identifying this event.Methods inherited from class MouseEvent
getButton, getClickCount, getLocationOnScreen, getModifiersEx, getMouseModifiersText, getPoint, getX, getXOnScreen, getY, getYOnScreen, isPopupTrigger, translatePointModifier and TypeMethodDescriptionintReturns which, if any, of the mouse buttons has changed state.intReturns the number of mouse clicks associated with this event.Returns the absolute x, y position of the event.intReturns the extended modifier mask for this event.static StringgetMouseModifiersText(int modifiers) Returns aStringinstance describing the modifier keys and mouse buttons that were down during the event, such as "Shift", or "Ctrl+Shift".getPoint()Returns the x,y position of the event relative to the source component.intgetX()Returns the horizontal x position of the event relative to the source component.intReturns the absolute horizontal x position of the event.intgetY()Returns the vertical y position of the event relative to the source component.intReturns the absolute vertical y position of the event.booleanReturns whether or not this mouse event is the popup menu trigger event for the platform.voidtranslatePoint(int x, int y) Translates the event's coordinates to a new position by adding specifiedx(horizontal) andy(vertical) offsets.Methods inherited from class InputEvent
consume, getMaskForButton, getModifiers, getModifiersExText, getWhen, isAltDown, isAltGraphDown, isConsumed, isControlDown, isMetaDown, isShiftDownModifier and TypeMethodDescriptionvoidconsume()Consumes this event so that it will not be processed in the default manner by the source which originated it.static intgetMaskForButton(int button) A method to obtain a mask for any existing mouse button.intDeprecated.It is recommended that extended modifier keys andInputEvent.getModifiersEx()be used insteadstatic StringgetModifiersExText(int modifiers) Returns a String describing the extended modifier keys and mouse buttons, such as "Shift", "Button1", or "Ctrl+Shift".longgetWhen()Returns the difference in milliseconds between the timestamp of when this event occurred and midnight, January 1, 1970 UTC.booleanReturns whether or not the Alt modifier is down on this event.booleanReturns whether or not the AltGraph modifier is down on this event.booleanReturns whether or not this event has been consumed.booleanReturns whether or not the Control modifier is down on this event.booleanReturns whether or not the Meta modifier is down on this event.booleanReturns whether or not the Shift modifier is down on this event.Methods inherited from class ComponentEvent
getComponentMethods inherited from class EventObject
getSourceMethods inherited from class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitModifier and TypeMethodDescriptionprotected Objectclone()Creates and returns a copy of this object.booleanIndicates whether some other object is "equal to" this one.protected voidfinalize()Deprecated, for removal: This API element is subject to removal in a future version.Finalization is deprecated and subject to removal in a future release.final Class<?> getClass()Returns the runtime class of thisObject.inthashCode()Returns a hash code value for this object.final voidnotify()Wakes up a single thread that is waiting on this object's monitor.final voidWakes up all threads that are waiting on this object's monitor.final voidwait()Causes the current thread to wait until it is awakened, typically by being notified or interrupted.final voidwait(long timeoutMillis) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.final voidwait(long timeoutMillis, int nanos) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.
-
Field Details
-
WHEEL_UNIT_SCROLL
Constant representing scrolling by "units" (like scrolling with the arrow keys)- See Also:
-
WHEEL_BLOCK_SCROLL
Constant representing scrolling by a "block" (like scrolling with page-up, page-down keys)- See Also:
-
-
Constructor Details
-
MouseWheelEvent
public MouseWheelEvent(Component source, int id, long when, int modifiers, int x, int y, int clickCount, boolean popupTrigger, int scrollType, int scrollAmount, int wheelRotation) Constructs aMouseWheelEventobject with the specified source component, type, modifiers, coordinates, scroll type, scroll amount, and wheel rotation.Absolute coordinates xAbs and yAbs are set to source's location on screen plus relative coordinates x and y. xAbs and yAbs are set to zero if the source is not showing.
Note that passing in an invalid
idresults in unspecified behavior. This method throws anIllegalArgumentExceptionifsourceisnull.- Parameters:
source- theComponentthat originated the eventid- the integer that identifies the eventwhen- a long that gives the time the event occurredmodifiers- the modifier keys down during event (shift, ctrl, alt, meta)x- the horizontal x coordinate for the mouse locationy- the vertical y coordinate for the mouse locationclickCount- the number of mouse clicks associated with eventpopupTrigger- a boolean, true if this event is a trigger for a popup-menuscrollType- the type of scrolling which should take place in response to this event; valid values areWHEEL_UNIT_SCROLLandWHEEL_BLOCK_SCROLLscrollAmount- for scrollTypeWHEEL_UNIT_SCROLL, the number of units to be scrolledwheelRotation- the integer number of "clicks" by which the mouse wheel was rotated- Throws:
IllegalArgumentException- ifsourceis null- See Also:
-
MouseWheelEvent
public MouseWheelEvent(Component source, int id, long when, int modifiers, int x, int y, int xAbs, int yAbs, int clickCount, boolean popupTrigger, int scrollType, int scrollAmount, int wheelRotation) Constructs aMouseWheelEventobject with the specified source component, type, modifiers, coordinates, absolute coordinates, scroll type, scroll amount, and wheel rotation.Note that passing in an invalid
idresults in unspecified behavior. This method throws anIllegalArgumentExceptionifsourceisnull.Even if inconsistent values for relative and absolute coordinates are passed to the constructor, the MouseWheelEvent instance is still created and no exception is thrown.
- Parameters:
source- theComponentthat originated the eventid- the integer that identifies the eventwhen- a long that gives the time the event occurredmodifiers- the modifier keys down during event (shift, ctrl, alt, meta)x- the horizontal x coordinate for the mouse locationy- the vertical y coordinate for the mouse locationxAbs- the absolute horizontal x coordinate for the mouse locationyAbs- the absolute vertical y coordinate for the mouse locationclickCount- the number of mouse clicks associated with eventpopupTrigger- a boolean, true if this event is a trigger for a popup-menuscrollType- the type of scrolling which should take place in response to this event; valid values areWHEEL_UNIT_SCROLLandWHEEL_BLOCK_SCROLLscrollAmount- for scrollTypeWHEEL_UNIT_SCROLL, the number of units to be scrolledwheelRotation- the integer number of "clicks" by which the mouse wheel was rotated- Throws:
IllegalArgumentException- ifsourceis null- Since:
- 1.6
- See Also:
-
MouseWheelEvent
public MouseWheelEvent(Component source, int id, long when, int modifiers, int x, int y, int xAbs, int yAbs, int clickCount, boolean popupTrigger, int scrollType, int scrollAmount, int wheelRotation, double preciseWheelRotation) Constructs aMouseWheelEventobject with the specified source component, type, modifiers, coordinates, absolute coordinates, scroll type, scroll amount, and wheel rotation.Note that passing in an invalid
idparameter results in unspecified behavior. This method throws anIllegalArgumentExceptionifsourceequalsnull.Even if inconsistent values for relative and absolute coordinates are passed to the constructor, a
MouseWheelEventinstance is still created and no exception is thrown.- Parameters:
source- theComponentthat originated the eventid- the integer value that identifies the eventwhen- a long value that gives the time when the event occurredmodifiers- the modifier keys down during event (shift, ctrl, alt, meta)x- the horizontalxcoordinate for the mouse locationy- the verticalycoordinate for the mouse locationxAbs- the absolute horizontalxcoordinate for the mouse locationyAbs- the absolute verticalycoordinate for the mouse locationclickCount- the number of mouse clicks associated with the eventpopupTrigger- a boolean value,trueif this event is a trigger for a popup-menuscrollType- the type of scrolling which should take place in response to this event; valid values areWHEEL_UNIT_SCROLLandWHEEL_BLOCK_SCROLLscrollAmount- for scrollTypeWHEEL_UNIT_SCROLL, the number of units to be scrolledwheelRotation- the integer number of "clicks" by which the mouse wheel was rotatedpreciseWheelRotation- the double number of "clicks" by which the mouse wheel was rotated- Throws:
IllegalArgumentException- ifsourceis null- Since:
- 1.7
- See Also:
-
-
Method Details
-
getScrollType
public int getScrollType()Returns the type of scrolling that should take place in response to this event. This is determined by the native platform. Legal values are:- MouseWheelEvent.WHEEL_UNIT_SCROLL
- MouseWheelEvent.WHEEL_BLOCK_SCROLL
- Returns:
- either MouseWheelEvent.WHEEL_UNIT_SCROLL or MouseWheelEvent.WHEEL_BLOCK_SCROLL, depending on the configuration of the native platform.
- See Also:
-
getScrollAmount
public int getScrollAmount()Returns the number of units that should be scrolled per click of mouse wheel rotation. Only valid ifgetScrollTypereturnsMouseWheelEvent.WHEEL_UNIT_SCROLL- Returns:
- number of units to scroll, or an undefined value if
getScrollTypereturnsMouseWheelEvent.WHEEL_BLOCK_SCROLL - See Also:
-
getWheelRotation
public int getWheelRotation()Returns the number of "clicks" the mouse wheel was rotated, as an integer. A partial rotation may occur if the mouse supports a high-resolution wheel. In this case, the method returns zero until a full "click" has been accumulated.- Returns:
- negative values if the mouse wheel was rotated up/away from the user, and positive values if the mouse wheel was rotated down/ towards the user
- See Also:
-
getPreciseWheelRotation
public double getPreciseWheelRotation()Returns the number of "clicks" the mouse wheel was rotated, as a double. A partial rotation may occur if the mouse supports a high-resolution wheel. In this case, the return value will include a fractional "click".- Returns:
- negative values if the mouse wheel was rotated up or away from the user, and positive values if the mouse wheel was rotated down or towards the user
- Since:
- 1.7
- See Also:
-
getUnitsToScroll
public int getUnitsToScroll()This is a convenience method to aid in the implementation of the common-case MouseWheelListener - to scroll a ScrollPane or JScrollPane by an amount which conforms to the platform settings. (Note, however, thatScrollPaneandJScrollPanealready have this functionality built in.)This method returns the number of units to scroll when scroll type is MouseWheelEvent.WHEEL_UNIT_SCROLL, and should only be called if
getScrollTypereturns MouseWheelEvent.WHEEL_UNIT_SCROLL.Direction of scroll, amount of wheel movement, and platform settings for wheel scrolling are all accounted for. This method does not and cannot take into account value of the Adjustable/Scrollable unit increment, as this will vary among scrolling components.
A simplified example of how this method might be used in a listener:
mouseWheelMoved(MouseWheelEvent event) { ScrollPane sp = getScrollPaneFromSomewhere(); Adjustable adj = sp.getVAdjustable() if (MouseWheelEvent.getScrollType() == WHEEL_UNIT_SCROLL) { int totalScrollAmount = event.getUnitsToScroll() * adj.getUnitIncrement(); adj.setValue(adj.getValue() + totalScrollAmount); } }- Returns:
- the number of units to scroll based on the direction and amount of mouse wheel rotation, and on the wheel scrolling settings of the native platform
- See Also:
-
paramString
Returns a parameter string identifying this event. This method is useful for event-logging and for debugging.- Overrides:
paramStringin classMouseEvent- Returns:
- a string identifying the event and its attributes
-
InputEvent.getModifiersEx()be used instead