# encoding: utf-8
# module PyQt6.QtWidgets
# from C:\Users\xukai\Downloads\发票2\venv\Lib\site-packages\PyQt6\QtWidgets.pyd
# by generator 1.147
# no doc

# imports
import PyQt6.QtCore as __PyQt6_QtCore
import PyQt6.QtGui as __PyQt6_QtGui
import PyQt6.sip as __PyQt6_sip


class QTableWidgetItem(__PyQt6_sip.wrapper):
    """
    QTableWidgetItem(type: int = QTableWidgetItem.Type)
    QTableWidgetItem(text: str, type: int = QTableWidgetItem.Type)
    QTableWidgetItem(icon: QIcon, text: str, type: int = QTableWidgetItem.Type)
    QTableWidgetItem(other: QTableWidgetItem)
    """
    def background(self): # real signature unknown; restored from __doc__
        """ background(self) -> QBrush """
        pass

    def checkState(self): # real signature unknown; restored from __doc__
        """ checkState(self) -> Qt.CheckState """
        pass

    def clone(self): # real signature unknown; restored from __doc__
        """ clone(self) -> QTableWidgetItem """
        return QTableWidgetItem

    def column(self): # real signature unknown; restored from __doc__
        """ column(self) -> int """
        return 0

    def data(self, role): # real signature unknown; restored from __doc__
        """ data(self, role: int) -> Any """
        pass

    def flags(self): # real signature unknown; restored from __doc__
        """ flags(self) -> Qt.ItemFlag """
        pass

    def font(self): # real signature unknown; restored from __doc__
        """ font(self) -> QFont """
        pass

    def foreground(self): # real signature unknown; restored from __doc__
        """ foreground(self) -> QBrush """
        pass

    def icon(self): # real signature unknown; restored from __doc__
        """ icon(self) -> QIcon """
        pass

    def isSelected(self): # real signature unknown; restored from __doc__
        """ isSelected(self) -> bool """
        return False

    def read(self, in_): # real signature unknown; restored from __doc__
        """ read(self, in_: QDataStream) """
        pass

    def row(self): # real signature unknown; restored from __doc__
        """ row(self) -> int """
        return 0

    def setBackground(self, brush, QBrush=None, QColor=None, Qt_GlobalColor=None, p_int=None, QGradient=None): # real signature unknown; restored from __doc__
        """ setBackground(self, brush: Union[QBrush, QColor, Qt.GlobalColor, int, QGradient]) """
        pass

    def setCheckState(self, state): # real signature unknown; restored from __doc__
        """ setCheckState(self, state: Qt.CheckState) """
        pass

    def setData(self, role, value): # real signature unknown; restored from __doc__
        """ setData(self, role: int, value: Any) """
        pass

    def setFlags(self, aflags): # real signature unknown; restored from __doc__
        """ setFlags(self, aflags: Qt.ItemFlag) """
        pass

    def setFont(self, afont): # real signature unknown; restored from __doc__
        """ setFont(self, afont: QFont) """
        pass

    def setForeground(self, brush, QBrush=None, QColor=None, Qt_GlobalColor=None, p_int=None, QGradient=None): # real signature unknown; restored from __doc__
        """ setForeground(self, brush: Union[QBrush, QColor, Qt.GlobalColor, int, QGradient]) """
        pass

    def setIcon(self, aicon): # real signature unknown; restored from __doc__
        """ setIcon(self, aicon: QIcon) """
        pass

    def setSelected(self, aselect): # real signature unknown; restored from __doc__
        """ setSelected(self, aselect: bool) """
        pass

    def setSizeHint(self, size): # real signature unknown; restored from __doc__
        """ setSizeHint(self, size: QSize) """
        pass

    def setStatusTip(self, astatusTip): # real signature unknown; restored from __doc__
        """ setStatusTip(self, astatusTip: str) """
        pass

    def setText(self, atext): # real signature unknown; restored from __doc__
        """ setText(self, atext: str) """
        pass

    def setTextAlignment(self, alignment): # real signature unknown; restored from __doc__ with multiple overloads
        """
        setTextAlignment(self, alignment: Qt.AlignmentFlag)
        setTextAlignment(self, alignment: int)
        """
        pass

    def setToolTip(self, atoolTip): # real signature unknown; restored from __doc__
        """ setToolTip(self, atoolTip: str) """
        pass

    def setWhatsThis(self, awhatsThis): # real signature unknown; restored from __doc__
        """ setWhatsThis(self, awhatsThis: str) """
        pass

    def sizeHint(self): # real signature unknown; restored from __doc__
        """ sizeHint(self) -> QSize """
        pass

    def statusTip(self): # real signature unknown; restored from __doc__
        """ statusTip(self) -> str """
        return ""

    def tableWidget(self): # real signature unknown; restored from __doc__
        """ tableWidget(self) -> QTableWidget """
        return QTableWidget

    def text(self): # real signature unknown; restored from __doc__
        """ text(self) -> str """
        return ""

    def textAlignment(self): # real signature unknown; restored from __doc__
        """ textAlignment(self) -> int """
        return 0

    def toolTip(self): # real signature unknown; restored from __doc__
        """ toolTip(self) -> str """
        return ""

    def type(self): # real signature unknown; restored from __doc__
        """ type(self) -> int """
        return 0

    def whatsThis(self): # real signature unknown; restored from __doc__
        """ whatsThis(self) -> str """
        return ""

    def write(self, out): # real signature unknown; restored from __doc__
        """ write(self, out: QDataStream) """
        pass

    def __eq__(self, *args, **kwargs): # real signature unknown
        """ Return self==value. """
        pass

    def __ge__(self, *args, **kwargs): # real signature unknown
        """ Return self>=value. """
        pass

    def __gt__(self, *args, **kwargs): # real signature unknown
        """ Return self>value. """
        pass

    def __init__(self, *__args): # real signature unknown; restored from __doc__ with multiple overloads
        pass

    def __le__(self, *args, **kwargs): # real signature unknown
        """ Return self<=value. """
        pass

    def __lt__(self, *args, **kwargs): # real signature unknown
        """ Return self<value. """
        pass

    def __ne__(self, *args, **kwargs): # real signature unknown
        """ Return self!=value. """
        pass

    __weakref__ = property(lambda self: object(), lambda self, v: None, lambda self: None)  # default
    """list of weak references to the object (if defined)"""


    ItemType = None # (!) real value is "<enum 'ItemType'>"
    __hash__ = None


