GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
HTML::DOM::Event::Mouse(3) User Contributed Perl Documentation HTML::DOM::Event::Mouse(3)

HTML::DOM::Event::Mouse - A Perl class for HTML DOM mouse event objects

Version 0.058

  # ...

This class provides MouseEvent objects for HTML::DOM, which objects are passed to event handlers for mouse events when they are invoked. It inherits from HTML::DOM::Event::UI.

See also those inherited from HTML::DOM::Event::UI and HTML::DOM::Event.

These are all read-only and ignore their arguments.
screenX
screenY
clientX
clientY
This represent the coordinates within the screen or window (viewport), respectively, of the mouse event.
ctrlKey
shiftKey
altKey
metaKey
These are booleans that indicate which modifier keys were pressed when the event occurred.
button
A number representing the mouse button: 0 for the left (or the right button on a left-handed mouse), 1 for the middle and 2 for the right (or left).
relatedTarget
References a node which, though it is not the target, was involved in the event somehow. This is typically used for "mouseover" events and indicates the node that the mouse moved off.

initMouseEvent ( $name, $propagates_up, $cancellable, $view, $detail, $screen_x, $screen_y, $client_x, $client_y, $ctrl_key, $alt_key, $shift_key, $meta_key, $button, $related_target )
This initialises the event object. See "initEvent" in HTML::DOM::Event for more detail.
init ( ... )
Alternative to "initMouseEvent" that's easier to use:

  init $event
      type => $type,
      propagates_up => 1,
      cancellable => 1,
      view => $view,
      detail => 1,
      screen_x => $foo,
      screen_y => $bar,
      client_x => $baz,
      client_y => $oto,
      ctrl     => $bop,
      alt      => 0,
      shift    => 0,
      meta     => 0,
      button   => 1,
      rel_target => $other_elem,
  ;
    

HTML::DOM

HTML::DOM::Event

HTML::DOM::Event::UI

Hey! The above document had some coding errors, which are explained below:
Around line 149:
=over without closing =back
2018-02-02 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.