X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/0220cbc1695d01a55964f31987f2fe78cf212ca1..6a0fab3a3ae4d9b7372a25e81faadeb842b9ba6f:/wxPython/src/gtk/htmlhelp.py diff --git a/wxPython/src/gtk/htmlhelp.py b/wxPython/src/gtk/htmlhelp.py index b7c5e95d9c..e5b382edfd 100644 --- a/wxPython/src/gtk/htmlhelp.py +++ b/wxPython/src/gtk/htmlhelp.py @@ -15,6 +15,8 @@ from events import * from streams import * +from utils import * + from mdi import * from frames import * @@ -38,12 +40,13 @@ from printfw import * from sizers import * from filesys import * - -from utils import * -class wxHtmlBookRecordPtr : +class wxHtmlBookRecordPtr(wxObjectPtr): def __init__(self,this): self.this = this self.thisown = 0 + def GetBookFile(self, *_args, **_kwargs): + val = apply(htmlhelpc.wxHtmlBookRecord_GetBookFile,(self,) + _args, _kwargs) + return val def GetTitle(self, *_args, **_kwargs): val = apply(htmlhelpc.wxHtmlBookRecord_GetTitle,(self,) + _args, _kwargs) return val @@ -62,6 +65,18 @@ class wxHtmlBookRecordPtr : def GetContentsEnd(self, *_args, **_kwargs): val = apply(htmlhelpc.wxHtmlBookRecord_GetContentsEnd,(self,) + _args, _kwargs) return val + def SetTitle(self, *_args, **_kwargs): + val = apply(htmlhelpc.wxHtmlBookRecord_SetTitle,(self,) + _args, _kwargs) + return val + def SetBasePath(self, *_args, **_kwargs): + val = apply(htmlhelpc.wxHtmlBookRecord_SetBasePath,(self,) + _args, _kwargs) + return val + def SetStart(self, *_args, **_kwargs): + val = apply(htmlhelpc.wxHtmlBookRecord_SetStart,(self,) + _args, _kwargs) + return val + def GetFullPath(self, *_args, **_kwargs): + val = apply(htmlhelpc.wxHtmlBookRecord_GetFullPath,(self,) + _args, _kwargs) + return val def __repr__(self): return "" % (self.this,) class wxHtmlBookRecord(wxHtmlBookRecordPtr):