# encoding: utf-8
# module wx._adv
# from D:\project\A_Board\.venv\Lib\site-packages\wx\_adv.cp313-win_amd64.pyd
# by generator 1.147
# no doc

# imports
import sip as __sip
import wx._core as __wx__core


class ExtHelpController(__wx__core.HelpControllerBase):
    """
    ExtHelpController(parentWindow=None) -> None
    
    This class implements help via an external browser.
    """
    def DisplayBlock(self, blockNo): # real signature unknown; restored from __doc__
        """
        DisplayBlock(blockNo) -> bool
        
        Display help for URL (using DisplayHelp) or keyword (using
        KeywordSearch)
        """
        return False

    def DisplayContents(self): # real signature unknown; restored from __doc__
        """
        DisplayContents() -> bool
        
        Display list of all help entries.
        """
        return False

    def DisplayHelp(self, relativeURL): # real signature unknown; restored from __doc__
        """
        DisplayHelp(relativeURL) -> bool
        
        Call the browser using a relative URL.
        """
        return False

    def DisplaySection(self, *__args): # real signature unknown; restored from __doc__ with multiple overloads
        """
        DisplaySection(sectionNo) -> bool
        DisplaySection(section) -> bool
        
        Display help for id sectionNo.
        """
        return False

    def GetFrameParameters(self, size=None, pos=None, newFrameEachTime=None): # real signature unknown; restored from __doc__
        """
        GetFrameParameters(size=None, pos=None, newFrameEachTime=None) -> wx.Frame
        
        Obtains the latest settings used by the help frame and the help frame.
        """
        pass

    def Initialize(self, dir): # real signature unknown; restored from __doc__
        """
        Initialize(dir) -> bool
        
        This must be called to tell the controller where to find the
        documentation.
        """
        return False

    def KeywordSearch(self, k, mode=None): # real signature unknown; restored from __doc__
        """
        KeywordSearch(k, mode=wx.HELP_SEARCH_ALL) -> bool
        
        Search comment/documentation fields in map file and present a list to
        chose from.
        """
        return False

    def LoadFile(self, file=''): # real signature unknown; restored from __doc__
        """
        LoadFile(file='') -> bool
        
        If file is "", reloads file given in Initialize.
        """
        return False

    def OnQuit(self): # real signature unknown; restored from __doc__
        """
        OnQuit() -> None
        
        Does nothing.
        """
        pass

    def Quit(self): # real signature unknown; restored from __doc__
        """
        Quit() -> bool
        
        Does nothing.
        """
        return False

    def SetFrameParameters(self, titleFormat, size, pos=None, newFrameEachTime=False): # real signature unknown; restored from __doc__
        """
        SetFrameParameters(titleFormat, size, pos=wx.DefaultPosition, newFrameEachTime=False) -> None
        
        Allows one to override the default settings for the help frame.
        """
        pass

    def SetViewer(self, viewer='', flags=None): # real signature unknown; restored from __doc__
        """
        SetViewer(viewer='', flags=wx.HELP_NETSCAPE) -> None
        
        Tell it which browser to use.
        """
        pass

    def __init__(self, parentWindow=None): # real signature unknown; restored from __doc__
        pass

    FrameParameters = property(lambda self: object(), lambda self, v: None, lambda self: None)  # default
    """GetFrameParameters(size=None, pos=None, newFrameEachTime=None) -> wx.Frame

Obtains the latest settings used by the help frame and the help frame."""



