Home | Trees | Index | Help |
|
---|
Package wx :: Module _core :: Class Event |
|
object
--+ |Object
--+ | Event
CommandEvent
Method Summary | |
---|---|
__init__(self)
| |
__del__(self) | |
__repr__(self)
| |
Clone(self) -> Event | |
GetEventObject(self) -> Object | |
GetEventType(self) -> wxEventType | |
GetId(self) -> int | |
GetSkipped(self) -> bool | |
GetTimestamp(self) -> long | |
IsCommandEvent(self) -> bool | |
ResumePropagation(self, int propagationLevel) | |
SetEventObject(self, Object obj) | |
SetEventType(self, wxEventType typ) | |
SetId(self, int Id) | |
SetTimestamp(self, long ts=0) | |
ShouldPropagate(self) -> bool | |
Skip(self, bool skip=True) | |
StopPropagation(self) -> int | |
Inherited from Object | |
Destroy(self) | |
GetClassName(self) -> String | |
Inherited from object | |
x.__delattr__('name') <==> del x.name | |
x.__getattribute__('name') <==> x.name | |
x.__hash__() <==> hash(x) | |
T.__new__(S, ...) -> a new object with type S, a subtype of T | |
helper for pickle | |
helper for pickle | |
x.__setattr__('name', value) <==> x.name = value | |
x.__str__() <==> str(x) |
Method Details |
---|
__del__(self,
destroy=<built-in function delete_Event>)
__del__(self)
|
Clone(*args, **kwargs)Clone(self) -> Event |
GetEventObject(*args, **kwargs)GetEventObject(self) -> Object |
GetEventType(*args, **kwargs)GetEventType(self) -> wxEventType |
GetId(*args, **kwargs)GetId(self) -> int |
GetSkipped(*args, **kwargs)GetSkipped(self) -> bool |
GetTimestamp(*args, **kwargs)GetTimestamp(self) -> long |
IsCommandEvent(*args, **kwargs)IsCommandEvent(self) -> bool |
ResumePropagation(*args, **kwargs)ResumePropagation(self, int propagationLevel) |
SetEventObject(*args, **kwargs)SetEventObject(self, Object obj) |
SetEventType(*args, **kwargs)SetEventType(self, wxEventType typ) |
SetId(*args, **kwargs)SetId(self, int Id) |
SetTimestamp(*args, **kwargs)SetTimestamp(self, long ts=0) |
ShouldPropagate(*args, **kwargs)ShouldPropagate(self) -> bool |
Skip(*args, **kwargs)Skip(self, bool skip=True) Called by an event handler, it controls whether additional event handlers bound to this event will be called after the current event handler returns. Skip(false) (the default setting) will prevent additional event handlers from being called and control will be returned to the sender of the event immediately after the current handler has finished. Skip(True) will cause the event processing system to continue searching for a handler function for this event. |
StopPropagation(*args, **kwargs)StopPropagation(self) -> int |
Home | Trees | Index | Help |
|
---|
Generated by Epydoc 2.1 on Thu Apr 28 23:21:57 2005 | http://epydoc.sf.net |