X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/0122b7e3fcfd78f879470053c91a60e3c66537a3..628c7f79d4f177b18349c9c10d49db6c9c4bc56c:/wxPython/src/help.i diff --git a/wxPython/src/help.i b/wxPython/src/help.i index 634058fd2c..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);