# encoding: utf-8
# module wx._richtext
# from D:\project\A_Board\.venv\Lib\site-packages\wx\_richtext.cp313-win_amd64.pyd
# by generator 1.147
# no doc

# imports
import sip as __sip
import wx._adv as __wx__adv
import wx._core as __wx__core
import wx._html as __wx__html


class RichTextRenderer(__wx__core.Object):
    """
    RichTextRenderer() -> None
    
    This class isolates some common drawing functionality.
    """
    def DrawBitmapBullet(self, paragraph, dc, attr, rect): # real signature unknown; restored from __doc__
        """
        DrawBitmapBullet(paragraph, dc, attr, rect) -> bool
        
        Draws a bitmap bullet, where the bullet bitmap is specified by the
        value of GetBulletName.
        """
        return False

    def DrawStandardBullet(self, paragraph, dc, attr, rect): # real signature unknown; restored from __doc__
        """
        DrawStandardBullet(paragraph, dc, attr, rect) -> bool
        
        Draws a standard bullet, as specified by the value of GetBulletName.
        """
        return False

    def DrawTextBullet(self, paragraph, dc, attr, rect, text): # real signature unknown; restored from __doc__
        """
        DrawTextBullet(paragraph, dc, attr, rect, text) -> bool
        
        Draws a bullet that can be described by text, such as numbered or
        symbol bullets.
        """
        return False

    def EnumerateStandardBulletNames(self, bulletNames): # real signature unknown; restored from __doc__
        """
        EnumerateStandardBulletNames(bulletNames) -> bool
        
        Enumerate the standard bullet names currently supported.
        """
        return False

    def MeasureBullet(self, paragraph, dc, attr, sz): # real signature unknown; restored from __doc__
        """
        MeasureBullet(paragraph, dc, attr, sz) -> bool
        
        Measure the bullet.
        """
        return False

    def __init__(self): # real signature unknown; restored from __doc__
        pass


