+ """WriteCustomization(self, ConfigBase cfg, String path=wxEmptyString)"""
+ return _html.HtmlHelpWindow_WriteCustomization(*args, **kwargs)
+
+ def NotifyPageChanged(*args, **kwargs):
+ """NotifyPageChanged(self)"""
+ return _html.HtmlHelpWindow_NotifyPageChanged(*args, **kwargs)
+
+ def RefreshLists(*args, **kwargs):
+ """RefreshLists(self)"""
+ return _html.HtmlHelpWindow_RefreshLists(*args, **kwargs)
+
+ 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) -> wxTreeCtrl"""
+ return _html.HtmlHelpWindow_GetTreeCtrl(*args, **kwargs)
+
+
+class HtmlHelpWindowPtr(HtmlHelpWindow):
+ def __init__(self, this):
+ self.this = this
+ if not hasattr(self,"thisown"): self.thisown = 0
+ self.__class__ = HtmlHelpWindow
+_html.HtmlHelpWindow_swigregister(HtmlHelpWindowPtr)
+
+def PreHtmlHelpWindow(*args, **kwargs):
+ """PreHtmlHelpWindow(HtmlHelpData data=None) -> HtmlHelpWindow"""
+ val = _html.new_PreHtmlHelpWindow(*args, **kwargs)
+ val.thisown = 1
+ self._setOORInfo(self)
+ return val
+
+class HtmlWindowEvent(_core.NotifyEvent):
+ """Proxy of C++ HtmlWindowEvent class"""
+ def __repr__(self):
+ return "<%s.%s; proxy of C++ wxHtmlWindowEvent instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
+ def __init__(self, *args, **kwargs):
+ """__init__(self, wxEventType commandType=wxEVT_NULL, int id=0) -> HtmlWindowEvent"""
+ newobj = _html.new_HtmlWindowEvent(*args, **kwargs)
+ self.this = newobj.this
+ self.thisown = 1
+ del newobj.thisown
+ 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)
+
+
+class HtmlWindowEventPtr(HtmlWindowEvent):
+ def __init__(self, this):
+ self.this = this
+ if not hasattr(self,"thisown"): self.thisown = 0
+ self.__class__ = HtmlWindowEvent
+_html.HtmlWindowEvent_swigregister(HtmlWindowEventPtr)
+
+class HtmlHelpFrame(_windows.Frame):
+ """Proxy of C++ HtmlHelpFrame class"""
+ def __repr__(self):
+ return "<%s.%s; proxy of C++ wxHtmlHelpFrame instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
+ def __init__(self, *args, **kwargs):
+ """
+ __init__(self, Window parent, int ??, String title=EmptyString, int style=wxHF_DEFAULTSTYLE,
+ HtmlHelpData data=None) -> HtmlHelpFrame
+ """
+ newobj = _html.new_HtmlHelpFrame(*args, **kwargs)
+ self.this = newobj.this
+ self.thisown = 1
+ del newobj.thisown
+ 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)