Fix docs for Bind

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@27281 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2004-05-14 21:30:05 +00:00
parent c92d92835d
commit 04633c190f

View File

@@ -85,22 +85,27 @@ public:
""" """
Bind an event to an event handler. Bind an event to an event handler.
event One of the EVT_* objects that specifies the :param event: One of the EVT_* objects that specifies the
type of event to bind, type of event to bind,
handler A callable object to be invoked when the event :param handler: A callable object to be invoked when the
is delivered to self. Pass None to disconnect an event is delivered to self. Pass None to
event handler. disconnect an event handler.
source Sometimes the event originates from a different window :param source: Sometimes the event originates from a
than self, but you still want to catch it in self. (For different window than self, but you still
example, a button event delivered to a frame.) By want to catch it in self. (For example, a
passing the source of the event, the event handling button event delivered to a frame.) By
system is able to differentiate between the same event passing the source of the event, the event
type from different controls. handling system is able to differentiate
between the same event type from different
controls.
id,id2 Used for menu IDs or for event types that require a :param id: Used to spcify the event source by ID instead
range of IDs of instance.
:param id2: Used when it is desirable to bind a handler
to a range of IDs, such as with EVT_MENU_RANGE.
""" """
if source is not None: if source is not None:
id = source.GetId() id = source.GetId()