# 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


from .RichTextFileHandler import RichTextFileHandler

class RichTextPlainTextHandler(RichTextFileHandler):
    """
    RichTextPlainTextHandler(name="Text", ext="txt", type=RICHTEXT_TYPE_TEXT) -> None
    
    Implements saving a buffer to plain text.
    """
    def CanLoad(self): # real signature unknown; restored from __doc__
        """
        CanLoad() -> bool
        
        Returns true if we can load using this handler.
        """
        return False

    def CanSave(self): # real signature unknown; restored from __doc__
        """
        CanSave() -> bool
        
        Returns true if we can save using this handler.
        """
        return False

    def DoLoadFile(self, buffer, stream): # real signature unknown; restored from __doc__
        """
        DoLoadFile(buffer, stream) -> bool
        
        Override to load content from stream into buffer.
        """
        return False

    def DoSaveFile(self, buffer, stream): # real signature unknown; restored from __doc__
        """
        DoSaveFile(buffer, stream) -> bool
        
        Override to save content to stream from buffer.
        """
        return False

    def __init__(self, name="Text", ext="txt", type=None): # real signature unknown; restored from __doc__
        pass


