# 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 DataViewChoiceRenderer(DataViewRenderer):
    """
    DataViewChoiceRenderer(choices, mode=DATAVIEW_CELL_EDITABLE, alignment=DVR_DEFAULT_ALIGNMENT) -> None
    
    A wxDataViewCtrl renderer using wxChoice control and values of strings
    in it.
    """
    def GetChoice(self, index): # real signature unknown; restored from __doc__
        """
        GetChoice(index) -> str
        
        Returns the choice referred to by index.
        """
        return ""

    def GetChoices(self): # real signature unknown; restored from __doc__
        """
        GetChoices() -> List[str]
        
        Returns all choices.
        """
        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, choices, mode=None, alignment=None): # real signature unknown; restored from __doc__
        pass

    Choices = property(lambda self: object(), lambda self, v: None, lambda self: None)  # default
    """GetChoices() -> List[str]

Returns all choices."""

    Value = property(lambda self: object(), lambda self, v: None, lambda self: None)  # default
    """GetValue(self) -> Optional[Any]"""



