Package muntjac :: Package terminal :: Package gwt :: Package client :: Module mouse_event_details :: Class MouseEventDetails
[hide private]
[frames] | no frames]

Class MouseEventDetails

source code

object --+
         |
        MouseEventDetails

Helper class to store and transfer mouse event details.

Instance Methods [hide private]
 
__init__(self, evt=None, relativeToElement=None)
x.__init__(...) initializes x; see help(type(x)) for signature
source code
 
__str__(self)
str(x)
source code
 
serialize(self) source code
 
getButtonName(self) source code
 
getRelativeX(self, clientX=None, target=None) source code
 
getRelativeY(self, clientY=None, target=None) source code
 
getType(self) source code
 
isDoubleClick(self) source code
 
getButton(self) source code
 
getClientX(self) source code
 
getClientY(self) source code
 
isAltKey(self) source code
 
isCtrlKey(self) source code
 
isMetaKey(self) source code
 
isShiftKey(self) source code

Inherited from object: __delattr__, __format__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __repr__, __setattr__, __sizeof__, __subclasshook__

Class Methods [hide private]
 
deSerialize(cls, serializedString) source code
Class Variables [hide private]
  BUTTON_LEFT = 1
  BUTTON_MIDDLE = 4
  BUTTON_RIGHT = 2
Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__init__(self, evt=None, relativeToElement=None)
(Constructor)

source code 

x.__init__(...) initializes x; see help(type(x)) for signature

Overrides: object.__init__
(inherited documentation)

__str__(self)
(Informal representation operator)

source code 

str(x)

Overrides: object.__str__
(inherited documentation)