# encoding: utf-8
# module wx._propgrid
# from D:\project\A_Board\.venv\Lib\site-packages\wx\_propgrid.cp313-win_amd64.pyd
# by generator 1.147
# no doc

# imports
import sip as __sip
import wx._core as __wx__core


from .PGProperty import PGProperty

class FlagsProperty(PGProperty):
    """
    FlagsProperty(label, name, choices, value=0) -> None
    FlagsProperty(label=PG_LABEL, name=PG_LABEL, labels=[], values=[], value=0) -> None
    
    Represents a bit set that fits in a long integer.
    """
    def ChildChanged(self, thisValue, childIndex, childValue): # real signature unknown; restored from __doc__
        """
        ChildChanged(thisValue, childIndex, childValue) -> PGVariant
        
        Called after value of a child property has been altered.
        """
        pass

    def DoSetAttribute(self, name, value): # real signature unknown; restored from __doc__
        """
        DoSetAttribute(name, value) -> bool
        
        Reimplement this member function to add special handling for
        attributes of this property.
        """
        return False

    def GetChoiceSelection(self): # real signature unknown; restored from __doc__
        """
        GetChoiceSelection() -> int
        
        Returns which choice is currently selected.
        """
        return 0

    def GetItemCount(self): # real signature unknown; restored from __doc__
        """ GetItemCount() -> int """
        return 0

    def GetLabel(self, ind): # real signature unknown; restored from __doc__
        """ GetLabel(ind) -> str """
        return ""

    def OnSetValue(self): # real signature unknown; restored from __doc__
        """
        OnSetValue() -> None
        
        This virtual function is called after m_value has been set.
        """
        pass

    def RefreshChildren(self): # real signature unknown; restored from __doc__
        """
        RefreshChildren() -> None
        
        Refresh values of child properties.
        """
        pass

    def StringToValue(self, text, argFlags): # real signature unknown; restored from __doc__
        """
        StringToValue(text, argFlags) -> Tuple[bool, PGVariant]
        
        Converts text into wxVariant value appropriate for this property.
        """
        pass

    def ValueToString(self, value, argFlags=0): # real signature unknown; restored from __doc__
        """
        ValueToString(value, argFlags=0) -> str
        
        Converts property value into a text representation.
        """
        return ""

    def __init__(self, *__args): # real signature unknown; restored from __doc__ with multiple overloads
        pass

    ChoiceSelection = property(lambda self: object(), lambda self, v: None, lambda self: None)  # default
    """GetChoiceSelection() -> int

Returns which choice is currently selected."""

    ItemCount = property(lambda self: object(), lambda self, v: None, lambda self: None)  # default
    """GetItemCount() -> int"""



