# encoding: utf-8
# module wx._html
# from D:\project\A_Board\.venv\Lib\site-packages\wx\_html.cp313-win_amd64.pyd
# by generator 1.147
# no doc

# imports
import sip as __sip
import wx._core as __wx__core


class HtmlHelpData(__wx__core.Object):
    """
    HtmlHelpData() -> None
    
    This class is used by wxHtmlHelpController and wxHtmlHelpFrame to
    access HTML help items.
    """
    def AddBook(self, book_url): # real signature unknown; restored from __doc__
        """
        AddBook(book_url) -> bool
        
        Adds new book.
        """
        return False

    def FindPageById(self, id): # real signature unknown; restored from __doc__
        """
        FindPageById(id) -> str
        
        Returns page's URL based on integer ID stored in project.
        """
        return ""

    def FindPageByName(self, page): # real signature unknown; restored from __doc__
        """
        FindPageByName(page) -> str
        
        Returns page's URL based on its (file)name.
        """
        return ""

    def GetBookRecArray(self): # real signature unknown; restored from __doc__
        """
        GetBookRecArray() -> HtmlBookRecArray
        
        Returns array with help books info.
        """
        return HtmlBookRecArray

    def GetContentsArray(self): # real signature unknown; restored from __doc__
        """
        GetContentsArray() -> HtmlHelpDataItems
        
        Returns reference to array with contents entries.
        """
        return HtmlHelpDataItems

    def GetIndexArray(self): # real signature unknown; restored from __doc__
        """
        GetIndexArray() -> HtmlHelpDataItems
        
        Returns reference to array with index entries.
        """
        return HtmlHelpDataItems

    def SetTempDir(self, path): # real signature unknown; restored from __doc__
        """
        SetTempDir(path) -> None
        
        Sets the temporary directory where binary cached versions of MS HTML
        Workshop files will be stored.
        """
        pass

    def __init__(self): # real signature unknown; restored from __doc__
        pass

    BookRecArray = property(lambda self: object(), lambda self, v: None, lambda self: None)  # default
    """GetBookRecArray() -> HtmlBookRecArray

Returns array with help books info."""

    ContentsArray = property(lambda self: object(), lambda self, v: None, lambda self: None)  # default
    """GetContentsArray() -> HtmlHelpDataItems

Returns reference to array with contents entries."""

    IndexArray = property(lambda self: object(), lambda self, v: None, lambda self: None)  # default
    """GetIndexArray() -> HtmlHelpDataItems

Returns reference to array with index entries."""



