# 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 AboutDialogInfo(__sip.wrapper):
    """
    AboutDialogInfo() -> None
    
    wxAboutDialogInfo contains information shown in the standard About
    dialog displayed by the wxAboutBox() function.
    """
    def AddArtist(self, artist): # real signature unknown; restored from __doc__
        """
        AddArtist(artist) -> None
        
        Adds an artist name to be shown in the program credits.
        """
        pass

    def AddDeveloper(self, developer): # real signature unknown; restored from __doc__
        """
        AddDeveloper(developer) -> None
        
        Adds a developer name to be shown in the program credits.
        """
        pass

    def AddDocWriter(self, docwriter): # real signature unknown; restored from __doc__
        """
        AddDocWriter(docwriter) -> None
        
        Adds a documentation writer name to be shown in the program credits.
        """
        pass

    def AddTranslator(self, translator): # real signature unknown; restored from __doc__
        """
        AddTranslator(translator) -> None
        
        Adds a translator name to be shown in the program credits.
        """
        pass

    def GetArtists(self): # real signature unknown; restored from __doc__
        """
        GetArtists() -> List[str]
        
        Returns an array of the artist strings set in the dialog info.
        """
        return []

    def GetCopyright(self): # real signature unknown; restored from __doc__
        """
        GetCopyright() -> str
        
        Get the copyright string.
        """
        return ""

    def GetDescription(self): # real signature unknown; restored from __doc__
        """
        GetDescription() -> str
        
        Get the description string.
        """
        return ""

    def GetDevelopers(self): # real signature unknown; restored from __doc__
        """
        GetDevelopers() -> List[str]
        
        Returns an array of the developer strings set in the dialog info.
        """
        return []

    def GetDocWriters(self): # real signature unknown; restored from __doc__
        """
        GetDocWriters() -> List[str]
        
        Returns an array of the writer strings set in the dialog info.
        """
        return []

    def GetIcon(self): # real signature unknown; restored from __doc__
        """
        GetIcon() -> wx.Icon
        
        Returns the icon set by SetIcon().
        """
        pass

    def GetLicence(self): # real signature unknown; restored from __doc__
        """
        GetLicence() -> str
        
        Returns the licence string.
        """
        return ""

    def GetLongVersion(self): # real signature unknown; restored from __doc__
        """
        GetLongVersion() -> str
        
        Return the long version string if set.
        """
        return ""

    def GetName(self): # real signature unknown; restored from __doc__
        """
        GetName() -> str
        
        Get the name of the program.
        """
        return ""

    def GetTranslators(self): # real signature unknown; restored from __doc__
        """
        GetTranslators() -> List[str]
        
        Returns an array of the translator strings set in the dialog info.
        """
        return []

    def GetVersion(self): # real signature unknown; restored from __doc__
        """
        GetVersion() -> str
        
        Return the short version string.
        """
        return ""

    def GetWebSiteDescription(self): # real signature unknown; restored from __doc__
        """
        GetWebSiteDescription() -> str
        
        Returns the description of the website URL set for the dialog.
        """
        return ""

    def GetWebSiteURL(self): # real signature unknown; restored from __doc__
        """
        GetWebSiteURL() -> str
        
        Returns the website URL set for the dialog.
        """
        return ""

    def HasArtists(self): # real signature unknown; restored from __doc__
        """
        HasArtists() -> bool
        
        Returns true if artists have been set in the dialog info.
        """
        return False

    def HasCopyright(self): # real signature unknown; restored from __doc__
        """
        HasCopyright() -> bool
        
        Returns true if a copyright string has been specified.
        """
        return False

    def HasDescription(self): # real signature unknown; restored from __doc__
        """
        HasDescription() -> bool
        
        Returns true if a description string has been specified.
        """
        return False

    def HasDevelopers(self): # real signature unknown; restored from __doc__
        """
        HasDevelopers() -> bool
        
        Returns true if developers have been set in the dialog info.
        """
        return False

    def HasDocWriters(self): # real signature unknown; restored from __doc__
        """
        HasDocWriters() -> bool
        
        Returns true if writers have been set in the dialog info.
        """
        return False

    def HasIcon(self): # real signature unknown; restored from __doc__
        """
        HasIcon() -> bool
        
        Returns true if an icon has been set for the about dialog.
        """
        return False

    def HasLicence(self): # real signature unknown; restored from __doc__
        """
        HasLicence() -> bool
        
        Returns true if the licence string has been set.
        """
        return False

    def HasTranslators(self): # real signature unknown; restored from __doc__
        """
        HasTranslators() -> bool
        
        Returns true if translators have been set in the dialog info.
        """
        return False

    def HasWebSite(self): # real signature unknown; restored from __doc__
        """
        HasWebSite() -> bool
        
        Returns true if the website info has been set.
        """
        return False

    def SetArtists(self, artists): # real signature unknown; restored from __doc__
        """
        SetArtists(artists) -> None
        
        Sets the list of artists to be shown in the program credits.
        """
        pass

    def SetCopyright(self, copyright): # real signature unknown; restored from __doc__
        """
        SetCopyright(copyright) -> None
        
        Set the short string containing the program copyright information.
        """
        pass

    def SetDescription(self, desc): # real signature unknown; restored from __doc__
        """
        SetDescription(desc) -> None
        
        Set brief, but possibly multiline, description of the program.
        """
        pass

    def SetDevelopers(self, developers): # real signature unknown; restored from __doc__
        """
        SetDevelopers(developers) -> None
        
        Set the list of developers of the program.
        """
        pass

    def SetDocWriters(self, docwriters): # real signature unknown; restored from __doc__
        """
        SetDocWriters(docwriters) -> None
        
        Set the list of documentation writers.
        """
        pass

    def SetIcon(self, icon): # real signature unknown; restored from __doc__
        """
        SetIcon(icon) -> None
        
        Set the icon to be shown in the dialog.
        """
        pass

    def SetLicence(self, licence): # real signature unknown; restored from __doc__
        """
        SetLicence(licence) -> None
        
        Set the long, multiline string containing the text of the program
        licence.
        """
        pass

    def SetLicense(self, licence): # real signature unknown; restored from __doc__
        """
        SetLicense(licence) -> None
        
        This is the same as SetLicence().
        """
        pass

    def SetName(self, name): # real signature unknown; restored from __doc__
        """
        SetName(name) -> None
        
        Set the name of the program.
        """
        pass

    def SetTranslators(self, translators): # real signature unknown; restored from __doc__
        """
        SetTranslators(translators) -> None
        
        Set the list of translators.
        """
        pass

    def SetVersion(self, version, longVersion=""): # real signature unknown; restored from __doc__
        """
        SetVersion(version, longVersion="") -> None
        
        Set the version of the program.
        """
        pass

    def SetWebSite(self, url, desc=''): # real signature unknown; restored from __doc__
        """
        SetWebSite(url, desc='') -> None
        
        Set the web site for the program and its description (which defaults
        to url itself if empty).
        """
        pass

    def __init__(self): # real signature unknown; restored from __doc__
        pass

    Artists = property(lambda self: object(), lambda self, v: None, lambda self: None)  # default
    """GetArtists() -> List[str]

Returns an array of the artist strings set in the dialog info."""

    Copyright = property(lambda self: object(), lambda self, v: None, lambda self: None)  # default
    """GetCopyright() -> str

Get the copyright string."""

    Description = property(lambda self: object(), lambda self, v: None, lambda self: None)  # default
    """GetDescription() -> str

Get the description string."""

    Developers = property(lambda self: object(), lambda self, v: None, lambda self: None)  # default
    """GetDevelopers() -> List[str]

Returns an array of the developer strings set in the dialog info."""

    DocWriters = property(lambda self: object(), lambda self, v: None, lambda self: None)  # default
    """GetDocWriters() -> List[str]

Returns an array of the writer strings set in the dialog info."""

    Icon = property(lambda self: object(), lambda self, v: None, lambda self: None)  # default
    """GetIcon() -> wx.Icon

Returns the icon set by SetIcon()."""

    Licence = property(lambda self: object(), lambda self, v: None, lambda self: None)  # default
    """GetLicence() -> str

Returns the licence string."""

    LongVersion = property(lambda self: object(), lambda self, v: None, lambda self: None)  # default
    """GetLongVersion() -> str

Return the long version string if set."""

    Name = property(lambda self: object(), lambda self, v: None, lambda self: None)  # default
    """GetName() -> str

Get the name of the program."""

    Translators = property(lambda self: object(), lambda self, v: None, lambda self: None)  # default
    """GetTranslators() -> List[str]

Returns an array of the translator strings set in the dialog info."""

    Version = property(lambda self: object(), lambda self, v: None, lambda self: None)  # default
    """GetVersion() -> str

Return the short version string."""

    WebSiteDescription = property(lambda self: object(), lambda self, v: None, lambda self: None)  # default
    """GetWebSiteDescription() -> str

Returns the description of the website URL set for the dialog."""

    WebSiteURL = property(lambda self: object(), lambda self, v: None, lambda self: None)  # default
    """GetWebSiteURL() -> str

Returns the website URL set for the dialog."""

    __weakref__ = property(lambda self: object(), lambda self, v: None, lambda self: None)  # default
    """list of weak references to the object"""



