CopperSpice API
1.9.2
|
The QTableWidgetItem class provides an item for use with the QTableWidget class. More...
Public Types | |
enum | ItemType |
Public Methods | |
QTableWidgetItem (const QIcon &icon, const QString &text, int type=Type) | |
QTableWidgetItem (const QString &text, int type=Type) | |
QTableWidgetItem (const QTableWidgetItem &other) | |
QTableWidgetItem (int type=Type) | |
virtual | ~QTableWidgetItem () |
QBrush | background () const |
QColor | backgroundColor () const |
Qt::CheckState | checkState () const |
virtual QTableWidgetItem * | clone () const |
int | column () const |
virtual QVariant | data (int role) const |
Qt::ItemFlags | flags () const |
QFont | font () const |
QBrush | foreground () const |
QIcon | icon () const |
bool | isSelected () const |
virtual bool | operator< (const QTableWidgetItem &other) const |
QTableWidgetItem & | operator= (const QTableWidgetItem &other) |
virtual void | read (QDataStream &in) |
int | row () const |
void | setBackground (const QBrush &brush) |
void | setBackgroundColor (const QColor &color) |
void | setCheckState (Qt::CheckState state) |
virtual void | setData (int role, const QVariant &value) |
void | setFlags (Qt::ItemFlags flags) |
void | setFont (const QFont &font) |
void | setForeground (const QBrush &brush) |
void | setIcon (const QIcon &icon) |
void | setSelected (bool select) |
void | setSizeHint (const QSize &size) |
void | setStatusTip (const QString &statusTip) |
void | setText (const QString &text) |
void | setTextAlignment (int alignment) |
void | setTextColor (const QColor &color) |
void | setToolTip (const QString &toolTip) |
void | setWhatsThis (const QString &whatsThis) |
QSize | sizeHint () const |
QString | statusTip () const |
QTableWidget * | tableWidget () const |
QString | text () const |
int | textAlignment () const |
QColor | textColor () const |
QString | toolTip () const |
int | type () const |
QString | whatsThis () const |
virtual void | write (QDataStream &out) const |
Friends | |
class | QTableWidget |
Related Functions | |
These are not member functions | |
QDataStream & | operator<< (QDataStream &out, const QTableWidgetItem &item) |
QDataStream & | operator>> (QDataStream &in, QTableWidgetItem &item) |
The QTableWidgetItem class provides an item for use with the QTableWidget class. Table items are used to hold pieces of information for table widgets. Items usually contain text, icons, or checkboxes. Top-level items are constructed without a parent then inserted at the position specified by a pair of row and column numbers as shown below.
Each item can have its own background brush which is set with the setBackground() function. The current background brush can be found with background(). The text label for each item can be rendered with its own font and brush. These are specified with the setFont() and setForeground() functions, and read with font() and foreground().
By default, items are enabled, editable, selectable, checkable, and can be used both as the source of a drag and drop operation and as a drop target. Each item's flags can be changed by calling setFlags() with the appropriate value (see Qt::ItemFlags). Checkable items can be checked and unchecked with the setCheckState() function. The corresponding checkState() function indicates whether the item is currently checked.
When subclassing QTableWidgetItem to provide custom items, it is possible to define new types for them so that they can be distinguished from standard items. The constructors for subclasses that require this feature need to call the base class constructor with a new type value equal to or greater than UserType.
This enum describes the types that are used to describe table widget items. You can define new user types in QTableWidgetItem subclasses to ensure that custom items are treated specially.
Constant | Value | Description |
---|---|---|
QTableWidgetItem::Type | 0 | The default type for table widget items. |
QTableWidgetItem::UserType | 1000 | The minimum value for custom types. Values below UserType are reserved for CopperSpice. |
|
explicit |
Constructs a table item of the specified type that does not belong to any table.
|
explicit |
Constructs a table item with the given text.
|
explicit |
Constructs a table item with the given icon and text.
QTableWidgetItem::QTableWidgetItem | ( | const QTableWidgetItem & | other | ) |
Constructs a copy of other. Note that type() and tableWidget() are not copied.
This function is useful when reimplementing clone().
|
virtual |
Destroys the table item.
|
inline |
Returns the brush used to render the item's background.
|
inlinedeprecated |
|
inline |
Returns the checked state of the table item.
|
virtual |
Creates a copy of the item.
|
inline |
Returns the column of the item in the table. If the item is not in a table, this function will return -1.
|
virtual |
Returns the item's data for the given role.
|
inline |
Returns the flags used to describe the item. These determine whether the item can be checked, edited, and selected.
|
inline |
Returns the font used to render the item's text.
|
inline |
Returns the brush used to render the item's foreground (e.g. text).
|
inline |
Returns the item's icon.
|
inline |
Returns true if the item is selected, otherwise returns false.
|
virtual |
Returns true if the item is less than the other item, otherwise returns false.
QTableWidgetItem & QTableWidgetItem::operator= | ( | const QTableWidgetItem & | other | ) |
Copy assigns from other and returns a reference to this object. The value for type() and tableWidget() are not copied.
|
virtual |
Reads the item from stream in.
|
inline |
Returns the row of the item in the table. If the item is not in a table, this function will return -1.
|
inline |
Sets the item's background brush to the specified brush.
|
inlinedeprecated |
|
inline |
Sets the check state of the table item to be state.
|
virtual |
Sets the item's data for the given role to the specified value.
void QTableWidgetItem::setFlags | ( | Qt::ItemFlags | flags | ) |
Sets the flags for the item to the given flags. These determine whether the item can be selected or modified.
|
inline |
Sets the font used to display the item's text to the given font.
|
inline |
Sets the item's foreground brush to the specified brush.
|
inline |
Sets the item's icon to the icon specified.
|
inline |
Sets the selected state of the item to select.
|
inline |
Sets the size hint for the table item to be size. If no size hint is set, the item delegate will compute the size hint based on the item data.
|
inline |
Sets the status tip for the table item to the text specified by statusTip. QTableWidget mouse tracking needs to be enabled for this feature to work.
|
inline |
Sets the item's text to the text specified.
|
inline |
Sets the text alignment for the item's text to the alignment specified.
|
inlinedeprecated |
|
inline |
Sets the item's tooltip to the string specified by toolTip.
|
inline |
Sets the item's "What's This?" help to the string specified by whatsThis.
|
inline |
Returns the size hint set for the table item.
|
inline |
Returns the item's status tip.
|
inline |
Returns the table widget that contains the item.
|
inline |
Returns the text alignment for the item's text.
|
inlinedeprecated |
|
inline |
Returns the item's tooltip.
|
inline |
Returns the type passed to the QTableWidgetItem constructor.
|
inline |
Returns the item's "What's This?" help.
|
virtual |
Writes the item to stream out.
|
related |
Writes the table widget item to stream out and returns a reference to the stream. This operator uses QTableWidgetItem::write().
Refer to Serializing Data Types for additional information.
|
related |
Reads a table widget item from stream in into item and returns a reference to the stream. This operator uses QTableWidgetItem::read().
Refer to Serializing Data Types for additional information.