t

japgolly.scalajs.react.raw

SyntheticWheelEvent

trait SyntheticWheelEvent[+DOMEventTarget <: Node] extends Object with SyntheticMouseEvent[DOMEventTarget]

https://github.com/facebook/react/blob/master/packages/react-dom/src/events/SyntheticWheelEvent.js

Annotations
@RawJSType() @native()
Linear Supertypes
SyntheticMouseEvent[DOMEventTarget], SyntheticUIEvent[DOMEventTarget], SyntheticEvent[DOMEventTarget], Object, Any, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. SyntheticWheelEvent
  2. SyntheticMouseEvent
  3. SyntheticUIEvent
  4. SyntheticEvent
  5. Object
  6. Any
  7. AnyRef
  8. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. val altKey: Boolean
    Definition Classes
    SyntheticMouseEvent
  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. val bubbles: Boolean
    Definition Classes
    SyntheticEvent
  7. val button: Int

    0 = left mouse button, 1 = middle, 2 = right

    0 = left mouse button, 1 = middle, 2 = right

    Definition Classes
    SyntheticMouseEvent
  8. val buttons: Int
    Definition Classes
    SyntheticMouseEvent
  9. val cancelable: Boolean
    Definition Classes
    SyntheticEvent
  10. val clientX: Double
    Definition Classes
    SyntheticMouseEvent
  11. val clientY: Double
    Definition Classes
    SyntheticMouseEvent
  12. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native() @HotSpotIntrinsicCandidate()
  13. val ctrlKey: Boolean
    Definition Classes
    SyntheticMouseEvent
  14. val currentTarget: DOMEventTarget
    Definition Classes
    SyntheticEvent
  15. def defaultPrevented: Boolean
    Definition Classes
    SyntheticEvent
  16. val deltaMode: Double

    Browsers without "deltaMode" is reporting in raw wheel delta where one notch on the scroll is always +/- 120, roughly equivalent to pixels.

    Browsers without "deltaMode" is reporting in raw wheel delta where one notch on the scroll is always +/- 120, roughly equivalent to pixels. A good approximation of DOM_DELTA_LINE (1) is 5% of viewport size or ~40 pixels, for DOM_DELTA_SCREEN (2) it is 87.5% of viewport size.

  17. val deltaX: Double
  18. val deltaY: Double
  19. val deltaZ: Double
  20. def detail: Double

    Specifies some detail information about the Event, depending on the type of event.

    Specifies some detail information about the Event, depending on the type of event. The un-initialized value of this attribute must be 0.

    Definition Classes
    SyntheticUIEvent
  21. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  22. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  23. val eventPhase: Double
    Definition Classes
    SyntheticEvent
  24. val eventType: String
    Definition Classes
    SyntheticEvent
    Annotations
    @JSName( "type" )
  25. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  26. def getModifierState(keyArg: String): Boolean
    Definition Classes
    SyntheticMouseEvent
  27. def hasOwnProperty(v: String): Boolean
    Definition Classes
    Object
  28. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  29. def isDefaultPrevented(): Boolean
    Definition Classes
    SyntheticEvent
  30. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  31. def isPersistent(): Boolean
    Definition Classes
    SyntheticEvent
  32. def isPropagationStopped(): Boolean
    Definition Classes
    SyntheticEvent
  33. def isPrototypeOf(v: Object): Boolean
    Definition Classes
    Object
  34. val isTrusted: Boolean
    Definition Classes
    SyntheticEvent
  35. val metaKey: Boolean
    Definition Classes
    SyntheticMouseEvent
  36. val movementX: Long

    Definition Classes
    SyntheticMouseEvent
    Since

    React 16.5

  37. val movementY: Long

    Definition Classes
    SyntheticMouseEvent
    Since

    React 16.5

  38. val nativeEvent: WheelEvent
  39. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  40. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  41. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  42. val pageX: Double
    Definition Classes
    SyntheticMouseEvent
  43. val pageY: Double
    Definition Classes
    SyntheticMouseEvent
  44. def persist(): Unit

    If you want to access the event properties in an asynchronous way, call this on the event, which will remove the synthetic event from the pool and allow references to the event to be retained by user code.

    If you want to access the event properties in an asynchronous way, call this on the event, which will remove the synthetic event from the pool and allow references to the event to be retained by user code.

    Definition Classes
    SyntheticEvent
  45. def preventDefault(): Unit

    Stops the default action of an element from happening.

    Stops the default action of an element from happening. For example: Prevent a submit button from submitting a form Prevent a link from following the URL

    Definition Classes
    SyntheticEvent
  46. def propertyIsEnumerable(v: String): Boolean
    Definition Classes
    Object
  47. val relatedTarget: EventTarget
    Definition Classes
    SyntheticMouseEvent
  48. val screenX: Double
    Definition Classes
    SyntheticMouseEvent
  49. val screenY: Double
    Definition Classes
    SyntheticMouseEvent
  50. val shiftKey: Boolean
    Definition Classes
    SyntheticMouseEvent
  51. def stopPropagation(): Unit

    Stops the bubbling of an event to parent elements, preventing any parent event handlers from being executed.

    Stops the bubbling of an event to parent elements, preventing any parent event handlers from being executed.

    Definition Classes
    SyntheticEvent
  52. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  53. val target: DOMEventTarget
    Definition Classes
    SyntheticEvent
  54. val timeStamp: Double
    Definition Classes
    SyntheticEvent
  55. def toLocaleString(): String
    Definition Classes
    Object
  56. def toString(): String
    Definition Classes
    AnyRef → Any
  57. def valueOf(): Any
    Definition Classes
    Object
  58. val view: Object

    The view attribute identifies the AbstractView from which the event was generated.

    The view attribute identifies the AbstractView from which the event was generated. The un-initialized value of this attribute must be null.

    Definition Classes
    SyntheticUIEvent
  59. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  60. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  61. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] ) @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

Inherited from SyntheticMouseEvent[DOMEventTarget]

Inherited from SyntheticUIEvent[DOMEventTarget]

Inherited from SyntheticEvent[DOMEventTarget]

Inherited from Object

Inherited from Any

Inherited from AnyRef

Inherited from Any

Ungrouped