]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/src/help.i
added a comment about the default button handling
[wxWidgets.git] / wxPython / src / help.i
index 66d3bf858fd61576ee71b2585c3dbabb64092de3..ea1bb8ad543e7ad262907fe415a6172d1485f373 100644 (file)
@@ -13,7 +13,7 @@
 %module help
 
 %{
-#include "export.h"
+#include "wxPython.h"
 #include <wx/cshelp.h>
 %}
 
@@ -37,7 +37,6 @@ enum {
     wxID_CONTEXT_HELP,
     wxEVT_HELP,
     wxEVT_DETAILED_HELP,
-    wxEVT_CONTEXT_MENU,
 };
 
 
@@ -54,9 +53,6 @@ def EVT_DETAILED_HELP(win, id, func):
 
 def EVT_DETAILED_HELP_RANGE(win, id, id2, func):
     win.Connect(id, id2, wxEVT_DETAILED_HELP, func)
-
-def EVT_CONTEXT_MENU(win, func):
-    win.Connect(-1, -1, wxEVT_CONTEXT_MENU, func)
 "
 
 //----------------------------------------------------------------------
@@ -110,6 +106,7 @@ public:
                         const wxPoint& pos = wxDefaultPosition,
                         const wxSize& size = wxDefaultSize,
                         long style = wxBU_AUTODRAW);
+    %pragma(python) addtomethod = "__init__:self._setOORInfo(self)"
 };