lz.GlobalMouseService
Application-wide control of and information about the mouse.

JavaScript: lz.GlobalMouseService
extends lz.Eventable »

lz.GlobalMouse is the single instance of the class lz.GlobalMouseService.

The lz.GlobalMouse service sends events any time the mouse button state changes, even if mouse events are locked using the lz.ModeManager API. The lz.GlobalMouse is also useful for detecting when the mouse button goes up or down on a non-clickable view.

edit

Use the lz.GlobalMouse service in conjunction with lz.ModeManager's event lock.

Class Attributes

Name Type (tag) Type (js) Default Category
LzGlobalMouse   lz.GlobalMouseService   readonly
  The global mouse service. Also available as the global lz.GlobalMouse.

Methods

Methods inherited from lz.Eventable

destroy, setAttribute

Events

Name Description
onclick Sent whenever the mouse button is clicked
ondblclick Sent whenever the mouse button is double-clicked
onmousedown Sent whenever the mouse button goes down
onmousedragin Sent whenever the mouse is dragged in to a view
onmousedragout Sent whenever the mouse is dragged out of a view
onmouseenter Sent whenever the mouse is dragged in the application window
onmouseleave Sent whenever the mouse is dragged out of the application window
onmousemove Sent whenever the mouse moves
onmouseout Sent whenever the mouse leaves a view
onmouseover Sent whenever the mouse enters a view
onmouseup Sent whenever the mouse button goes up
onmouseupoutside Sent whenever the mouse button goes up outside the view where it first went down

Events inherited from lz.Eventable

ondestroy