Package wx :: Module _core :: Class Event
[show private | hide private]
[frames | no frames]

Type Event

object --+    
         |    
    Object --+
             |
            Event

Known Subclasses:
CommandEvent

Proxy of C++ Event class
Method Summary
  __init__(self)
  __del__(self, destroy)
__del__(self)
  __repr__(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)
  StopPropagation(*args, **kwargs)
StopPropagation(self) -> int
    Inherited from Object
  Destroy(*args, **kwargs)
Destroy(self)
  GetClassName(*args, **kwargs)
GetClassName(self) -> String
    Inherited from object
  __delattr__(...)
x.__delattr__('name') <==> del x.name
  __getattribute__(...)
x.__getattribute__('name') <==> x.name
  __hash__(x)
x.__hash__() <==> hash(x)
  __new__(T, S, ...)
T.__new__(S, ...) -> 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)
x.__str__() <==> str(x)

Method Details

__del__(self, destroy=<built-in function delete_Event>)
(Destructor)

__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

Generated by Epydoc 2.1 on Thu Apr 28 23:21:57 2005 http://epydoc.sf.net