Interface EventTypes


public interface EventTypes
Event type constants
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final String
    Called when a node is appended onto another node.
    static final String
    Called when the mouse is clicked Details Bubbles false Cancellable false Type MouseEvent Tags All
    static final String
    Called when an element stops being active after being clicked.
    static final String
    Called when a document is about to be closed.
    static final String
    Called when the DOM has been fully loaded and is about to be spawned.
    static final String
    Called when the DOM has been spawned after being loaded
    static final String
    Called when an attribute is modified.
    static final String
    Called when an option is modified.
    static final String
    Called when a cursor enter an element's bounds.
    static final String
    Called when a cursor leaves an element's bounds.
    static final String
    Called when the mouse is moved inside of an element.
    static final String
    Called when the mouse scrolls up or down.
    static final String
    Called when a node is removed from another node Details Bubbles false Cancellable false Type MutationEvent Tags All
  • Field Details

    • MOUSE_ENTER

      static final String MOUSE_ENTER
      Called when a cursor enter an element's bounds.
      Details
      Bubbles true
      Cancellable false
      Type MouseEvent
      Tags All
      See Also:
    • MOUSE_LEAVE

      static final String MOUSE_LEAVE
      Called when a cursor leaves an element's bounds.
      Details
      Bubbles true
      Cancellable false
      Type MouseEvent
      Tags All
      See Also:
    • MOUSE_MOVE

      static final String MOUSE_MOVE
      Called when the mouse is moved inside of an element.

      This event will only be called if the mouse movement happens inside of an element, if the mouse moves in or out of an element, then MOUSE_LEAVE or MOUSE_ENTER will be called instead.

      Details
      Bubbles false
      Cancellable false
      Type MouseEvent
      Tags All
      See Also:
    • MOUSE_SCROLL

      static final String MOUSE_SCROLL
      Called when the mouse scrolls up or down.
      Details
      Bubbles false
      Cancellable false
      Type MouseEvent
      Tags All
      See Also:
    • CLICK

      static final String CLICK
      Called when the mouse is clicked
      Details
      Bubbles false
      Cancellable false
      Type MouseEvent
      Tags All
      See Also:
    • CLICK_EXPIRE

      static final String CLICK_EXPIRE
      Called when an element stops being active after being clicked.

      Length of time between clicking and the active state expiring is determined by Document.ACTIVE_TICKS

      Details
      Bubbles false
      Cancellable false
      Type MouseEvent
      Tags All
      See Also:
    • APPEND_CHILD

      static final String APPEND_CHILD
      Called when a node is appended onto another node.
      Details
      Bubbles false
      Cancellable false
      Type MutationEvent
      Tags All
      See Also:
    • REMOVE_CHILD

      static final String REMOVE_CHILD
      Called when a node is removed from another node
      Details
      Bubbles false
      Cancellable false
      Type MutationEvent
      Tags All
      See Also:
    • MODIFY_ATTR

      static final String MODIFY_ATTR
      Called when an attribute is modified.
      Details
      Bubbles false
      Cancellable false
      Type AttributeMutateEvent
      Tags All
      See Also:
    • MODIFY_OPTION

      static final String MODIFY_OPTION
      Called when an option is modified.
      Details
      Bubbles false
      Cancellable false
      Type AttributeMutateEvent
      Tags All
      See Also:
    • DOM_LOADED

      static final String DOM_LOADED
      Called when the DOM has been fully loaded and is about to be spawned.

      This event is only dispatched on Document instances.

      Details
      Bubbles false
      Cancellable false
      Type Event
      Tags None, only triggered on the Document itself
      See Also:
    • DOM_SPAWNED

      static final String DOM_SPAWNED
      Called when the DOM has been spawned after being loaded

      This event is only dispatched on Document instances.

      Details
      Bubbles false
      Cancellable false
      Type Event
      Tags None, only triggered on the Document itself
      See Also:
    • DOM_CLOSING

      static final String DOM_CLOSING
      Called when a document is about to be closed.

      This event is only dispatched on Document instances.

      Details
      Bubbles false
      Cancellable false
      Type Event
      Tags None, only triggered on the Document itself
      See Also: