X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/8e425133fbdde2e2663e443bcaadf4a35914d845..a20a10fe1d6f52db7edbcef812ca428bd2ceb30c:/utils/wxPython/modules/html/html.py diff --git a/utils/wxPython/modules/html/html.py b/utils/wxPython/modules/html/html.py index c02981a6d6..4231aac0cd 100644 --- a/utils/wxPython/modules/html/html.py +++ b/utils/wxPython/modules/html/html.py @@ -45,6 +45,14 @@ class wxHtmlLinkInfoPtr : def GetTarget(self, *_args, **_kwargs): val = apply(htmlc.wxHtmlLinkInfo_GetTarget,(self,) + _args, _kwargs) return val + def GetEvent(self, *_args, **_kwargs): + val = apply(htmlc.wxHtmlLinkInfo_GetEvent,(self,) + _args, _kwargs) + if val: val = wxMouseEventPtr(val) + return val + def GetHtmlCell(self, *_args, **_kwargs): + val = apply(htmlc.wxHtmlLinkInfo_GetHtmlCell,(self,) + _args, _kwargs) + if val: val = wxHtmlCellPtr(val) + return val def __repr__(self): return "" % (self.this,) class wxHtmlLinkInfo(wxHtmlLinkInfoPtr):