# encoding: utf-8
# module wx._dataview
# from D:\project\A_Board\.venv\Lib\site-packages\wx\_dataview.cp313-win_amd64.pyd
# by generator 1.147
# no doc

# imports
import sip as __sip
import wx._core as __wx__core


from .DataViewRenderer import DataViewRenderer

class DataViewCheckIconTextRenderer(DataViewRenderer):
    """
    DataViewCheckIconTextRenderer(mode=DATAVIEW_CELL_ACTIVATABLE, align=DVR_DEFAULT_ALIGNMENT) -> None
    
    This renderer class shows a checkbox in addition to the icon and text
    shown by the base class and also allows the user to toggle this
    checkbox.
    """
    def Allow3rdStateForUser(self, allow=True): # real signature unknown; restored from __doc__
        """
        Allow3rdStateForUser(allow=True) -> None
        
        Allow the user to interactively select the 3rd state for the items
        rendered by this object.
        """
        pass

    def GetDefaultType(self): # real signature unknown; restored from __doc__
        """ GetDefaultType() -> str """
        return ""

    def GetValue(self): # real signature unknown; restored from __doc__
        """ GetValue(self) -> Optional[Any] """
        pass

    def GetView(self, *args, **kwargs): # real signature unknown
        pass

    def SetValue(self, value, Any=None): # real signature unknown; restored from __doc__
        """ SetValue(self, value: Optional[Any]) -> bool """
        return False

    def __init__(self, mode=None, align=None): # real signature unknown; restored from __doc__
        pass

    Value = property(lambda self: object(), lambda self, v: None, lambda self: None)  # default
    """GetValue(self) -> Optional[Any]"""



