Class MouseEvent

  • All Implemented Interfaces:
    java.lang.Cloneable

    public class MouseEvent
    extends PenEvent
    MouseEvent is a mouse move, in a control or out a control events. Only occurs on devices with a mouse, like Windows 32 and Linux desktop.
    Since:
    TotalCross 1.27
    • Field Detail

      • wheelDirection

        public int wheelDirection
        See Also:
        DragEvent
      • MOUSE_MOVE

        public static final int MOUSE_MOVE
        The event type for a mouse moving over a control. This is a hardware event.
        See Also:
        Constant Field Values
      • MOUSE_IN

        public static final int MOUSE_IN
        The event type for a mouse moving into a control. This is a software event (computed internally).
        See Also:
        Constant Field Values
      • MOUSE_OUT

        public static final int MOUSE_OUT
        The event type for a mouse moving outside a control. This is a software event (computed internally).
        See Also:
        Constant Field Values
      • MOUSE_WHEEL

        public static final int MOUSE_WHEEL
        The event type for a mouse wheel. This is a hardware event.
        See Also:
        Constant Field Values
    • Constructor Detail

      • MouseEvent

        public MouseEvent()