X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/4f3449b43280a855e57280e6848610ea9fdaa3bb..bd5dfc0725d11631b3953733fdb23bc7bc28d30a:/wxPython/src/help.i diff --git a/wxPython/src/help.i b/wxPython/src/help.i index 66d3bf858f..54f431b47c 100644 --- a/wxPython/src/help.i +++ b/wxPython/src/help.i @@ -13,7 +13,7 @@ %module help %{ -#include "export.h" +#include "wxPython.h" #include %} @@ -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) " //---------------------------------------------------------------------- @@ -77,21 +73,6 @@ public: //--------------------------------------------------------------------------- - -class wxContextMenuEvent : public wxCommandEvent -{ -public: - wxContextMenuEvent(wxEventType type = wxEVT_NULL, - wxWindowID id = 0, - const wxPoint& pt = wxDefaultPosition); - const wxPoint& GetPosition(); - void SetPosition(const wxPoint& pos); -}; - - - -//---------------------------------------------------------------------- - class wxContextHelp : public wxObject { public: wxContextHelp(wxWindow* window = NULL, bool doNow = TRUE); @@ -110,6 +91,7 @@ public: const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, long style = wxBU_AUTODRAW); + %pragma(python) addtomethod = "__init__:self._setOORInfo(self)" };