Method Summary |
MouseState |
__init__ (self)
wx.MouseState is used to hold information about mouse button and
modifier key states and is what is returned from wx.GetMouseState . |
|
__del__(self)
|
|
__repr__(self)
|
bool |
AltDown(self)
|
bool |
CmdDown(self)
|
bool |
ControlDown(self)
|
int |
GetX(self)
|
int |
GetY(self)
|
bool |
LeftDown(self)
|
bool |
MetaDown(self)
|
bool |
MiddleDown(self)
|
bool |
RightDown(self)
|
|
SetAltDown(self,
down)
|
|
SetControlDown(self,
down)
|
|
SetLeftDown(self,
down)
|
|
SetMetaDown(self,
down)
|
|
SetMiddleDown(self,
down)
|
|
SetRightDown(self,
down)
|
|
SetShiftDown(self,
down)
|
|
SetX(self,
x)
|
|
SetY(self,
y)
|
bool |
ShiftDown(self)
|
Inherited from object |
|
__delattr__ (...)
x.__delattr__('name') <==> del x.name |
|
__getattribute__ (...)
x.__getattribute__('name') <==> x.name |
|
__hash__ (x)
Return hash(x)... |
|
__new__ (T,
S,
...)
Return a new object with type S, a subtype of T... |
|
__reduce__ (...)
helper for pickle |
|
__reduce_ex__ (...)
helper for pickle |
|
__setattr__ (...)
x.__setattr__('name', value) <==> x.name = value |
|
__str__ (x)
Return str(x)... |