]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/src/_evthandler.i
Allow for Cmd-click on wxMac
[wxWidgets.git] / wxPython / src / _evthandler.i
index 5a12a452d844fc069ea4e07122eb7d14b683cc8d..915d659f4d165751d3afcf1258c8f7c826c06bf0 100644 (file)
@@ -85,22 +85,27 @@ public:
             """
             Bind an event to an event handler.
 
-              event     One of the EVT_* objects that specifies the
-                        type of event to bind,
-
-              handler   A callable object to be invoked when the event
-                        is delivered to self.  Pass None to disconnect an
-                        event handler.
-
-              source    Sometimes the event originates from a different window
-                        than self, but you still want to catch it in self.  (For
-                        example, a button event delivered to a frame.)  By
-                        passing the source of the event, the event 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
-                        range of IDs
+            :param event: One of the EVT_* objects that specifies the
+                          type of event to bind,
+
+            :param handler: A callable object to be invoked when the
+                          event is delivered to self.  Pass None to
+                          disconnect an event handler.
+
+            :param source: Sometimes the event originates from a
+                          different window than self, but you still
+                          want to catch it in self.  (For example, a
+                          button event delivered to a frame.)  By
+                          passing the source of the event, the event
+                          handling system is able to differentiate
+                          between the same event type from different
+                          controls.
+
+            :param id: Used to spcify the event source by ID instead
+                       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:
                 id  = source.GetId()
@@ -113,7 +118,7 @@ public:
             """
             if source is not None:
                 id  = source.GetId()
-            event.Unbind(self, id, id2)              
+            return event.Unbind(self, id, id2)              
     }