+ def GetHtmlWindow(*args, **kwargs):
+ """GetHtmlWindow(self) -> wxHtmlWindow"""
+ return _html.HtmlHelpWindow_GetHtmlWindow(*args, **kwargs)
+
+ def GetSplitterWindow(*args, **kwargs):
+ """GetSplitterWindow(self) -> SplitterWindow"""
+ return _html.HtmlHelpWindow_GetSplitterWindow(*args, **kwargs)
+
+ def GetToolBar(*args, **kwargs):
+ """GetToolBar(self) -> wxToolBar"""
+ return _html.HtmlHelpWindow_GetToolBar(*args, **kwargs)
+
+ def GetCfgData(*args, **kwargs):
+ """GetCfgData(self) -> wxHtmlHelpFrameCfg"""
+ return _html.HtmlHelpWindow_GetCfgData(*args, **kwargs)
+
+ def GetTreeCtrl(*args, **kwargs):
+ """GetTreeCtrl(self) -> wxPyTreeCtrl"""
+ return _html.HtmlHelpWindow_GetTreeCtrl(*args, **kwargs)
+
+_html.HtmlHelpWindow_swigregister(HtmlHelpWindow)
+
+def PreHtmlHelpWindow(*args, **kwargs):
+ """PreHtmlHelpWindow(HtmlHelpData data=None) -> HtmlHelpWindow"""
+ val = _html.new_PreHtmlHelpWindow(*args, **kwargs)
+ self._setOORInfo(self)
+ return val
+
+class HtmlWindowEvent(_core.NotifyEvent):
+ """Proxy of C++ HtmlWindowEvent class"""
+ thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
+ __repr__ = _swig_repr
+ def __init__(self, *args, **kwargs):
+ """__init__(self, EventType commandType=wxEVT_NULL, int id=0) -> HtmlWindowEvent"""
+ _html.HtmlWindowEvent_swiginit(self,_html.new_HtmlWindowEvent(*args, **kwargs))
+ def SetURL(*args, **kwargs):
+ """SetURL(self, String url)"""
+ return _html.HtmlWindowEvent_SetURL(*args, **kwargs)
+
+ def GetURL(*args, **kwargs):
+ """GetURL(self) -> String"""
+ return _html.HtmlWindowEvent_GetURL(*args, **kwargs)
+
+_html.HtmlWindowEvent_swigregister(HtmlWindowEvent)
+
+class HtmlHelpFrame(_windows.Frame):
+ """Proxy of C++ HtmlHelpFrame class"""
+ thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
+ __repr__ = _swig_repr
+ def __init__(self, *args, **kwargs):
+ """
+ __init__(self, Window parent, int ?, String title=EmptyString, int style=wxHF_DEFAULTSTYLE,
+ HtmlHelpData data=None) -> HtmlHelpFrame
+ """
+ _html.HtmlHelpFrame_swiginit(self,_html.new_HtmlHelpFrame(*args, **kwargs))
+ self._setOORInfo(self)
+
+ def Create(*args, **kwargs):
+ """Create(self, Window parent, int id, String title=EmptyString, int style=HF_DEFAULT_STYLE) -> bool"""
+ return _html.HtmlHelpFrame_Create(*args, **kwargs)
+
+ def GetData(*args, **kwargs):
+ """GetData(self) -> HtmlHelpData"""
+ return _html.HtmlHelpFrame_GetData(*args, **kwargs)
+
+ def SetTitleFormat(*args, **kwargs):
+ """SetTitleFormat(self, String format)"""
+ return _html.HtmlHelpFrame_SetTitleFormat(*args, **kwargs)
+
+ def AddGrabIfNeeded(*args, **kwargs):
+ """AddGrabIfNeeded(self)"""
+ return _html.HtmlHelpFrame_AddGrabIfNeeded(*args, **kwargs)
+
+ def GetController(*args, **kwargs):
+ """GetController(self) -> HtmlHelpController"""
+ return _html.HtmlHelpFrame_GetController(*args, **kwargs)
+
+ def SetController(*args, **kwargs):
+ """SetController(self, HtmlHelpController controller)"""
+ return _html.HtmlHelpFrame_SetController(*args, **kwargs)
+
+ def GetHelpWindow(*args, **kwargs):
+ """GetHelpWindow(self) -> HtmlHelpWindow"""
+ return _html.HtmlHelpFrame_GetHelpWindow(*args, **kwargs)
+
+ # For compatibility from before the refactor
+ def Display(self, x):
+ return self.GetHelpWindow().Display(x)
+ def DisplayID(self, x):
+ return self.GetHelpWindow().DisplayID(id)
+ def DisplayContents(self):
+ return self.GetHelpWindow().DisplayContents()
+ def DisplayIndex(self):
+ return self.GetHelpWindow().DisplayIndex()
+
+ def KeywordSearch(self, keyword):
+ return self.GetHelpWindow().KeywordSearch(keyword)
+
+ def UseConfig(self, config, rootpath=""):
+ return self.GetHelpWindow().UseConfig(config, rootpath)
+ def ReadCustomization(self, config, rootpath=""):
+ return self.GetHelpWindow().ReadCustomization(config, rootpath)
+ def WriteCustomization(self, config, rootpath=""):
+ return self.GetHelpWindow().WriteCustomization(config, rootpath)
+
+_html.HtmlHelpFrame_swigregister(HtmlHelpFrame)
+
+def PreHtmlHelpFrame(*args, **kwargs):
+ """PreHtmlHelpFrame(HtmlHelpData data=None) -> HtmlHelpFrame"""
+ val = _html.new_PreHtmlHelpFrame(*args, **kwargs)
+ self._setOORInfo(self)
+ return val
+
+class HtmlHelpDialog(_windows.Dialog):
+ """Proxy of C++ HtmlHelpDialog class"""
+ thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
+ __repr__ = _swig_repr
+ def __init__(self, *args, **kwargs):
+ """
+ __init__(self, Window parent, int ?, String title=EmptyString, int style=HF_DEFAULT_STYLE,
+ HtmlHelpData data=None) -> HtmlHelpDialog
+ """
+ _html.HtmlHelpDialog_swiginit(self,_html.new_HtmlHelpDialog(*args, **kwargs))