# 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


class DataViewIconText(__wx__core.Object):
    """
    DataViewIconText(text='', bitmap=wx.BitmapBundle()) -> None
    DataViewIconText(other) -> None
    
    wxDataViewIconText is used by wxDataViewIconTextRenderer for data
    transfer.
    """
    def GetBitmapBundle(self): # real signature unknown; restored from __doc__
        """
        GetBitmapBundle() -> wx.BitmapBundle
        
        Gets the associated image.
        """
        pass

    def GetIcon(self): # real signature unknown; restored from __doc__
        """
        GetIcon() -> wx.Icon
        
        Gets the icon.
        """
        pass

    def GetText(self): # real signature unknown; restored from __doc__
        """
        GetText() -> str
        
        Gets the text.
        """
        return ""

    def SetBitmapBundle(self, bitmap): # real signature unknown; restored from __doc__
        """
        SetBitmapBundle(bitmap) -> None
        
        Sets the associated image.
        """
        pass

    def SetIcon(self, icon): # real signature unknown; restored from __doc__
        """
        SetIcon(icon) -> None
        
        Set the icon.
        """
        pass

    def SetText(self, text): # real signature unknown; restored from __doc__
        """
        SetText(text) -> None
        
        Set the text.
        """
        pass

    def __init__(self, *__args): # real signature unknown; restored from __doc__ with multiple overloads
        pass

    BitmapBundle = property(lambda self: object(), lambda self, v: None, lambda self: None)  # default
    """GetBitmapBundle() -> wx.BitmapBundle

Gets the associated image."""

    Icon = property(lambda self: object(), lambda self, v: None, lambda self: None)  # default
    """GetIcon() -> wx.Icon

Gets the icon."""

    Text = property(lambda self: object(), lambda self, v: None, lambda self: None)  # default
    """GetText() -> str

Gets the text."""



