![]() |
Qt 6.x
The Qt SDK
|
The QTreeWidgetItem class provides an item for use with the QTreeWidget convenience class. More...
#include <qtreewidget.h>
Public Types | |
enum | ItemType { Type = 0 , UserType = 1000 } |
This enum describes the types that are used to describe tree widget items. More... | |
enum | ChildIndicatorPolicy { ShowIndicator , DontShowIndicator , DontShowIndicatorWhenChildless } |
Public Member Functions | |
QTreeWidgetItem (int type=Type) | |
Constructs a tree widget item of the specified type. | |
QTreeWidgetItem (const QStringList &strings, int type=Type) | |
Constructs a tree widget item of the specified type. | |
QTreeWidgetItem (QTreeWidget *treeview, int type=Type) | |
Constructs a tree widget item of the specified type and appends it to the items in the given parent. | |
QTreeWidgetItem (QTreeWidget *treeview, const QStringList &strings, int type=Type) | |
Constructs a tree widget item of the specified type and appends it to the items in the given parent. | |
QTreeWidgetItem (QTreeWidget *treeview, QTreeWidgetItem *after, int type=Type) | |
Constructs a tree widget item of the specified type and inserts it into the given parent after the preceding item. | |
QTreeWidgetItem (QTreeWidgetItem *parent, int type=Type) | |
Constructs a tree widget item and append it to the given parent. | |
QTreeWidgetItem (QTreeWidgetItem *parent, const QStringList &strings, int type=Type) | |
Constructs a tree widget item and append it to the given parent. | |
QTreeWidgetItem (QTreeWidgetItem *parent, QTreeWidgetItem *after, int type=Type) | |
Constructs a tree widget item of the specified type that is inserted into the parent after the preceding child item. | |
QTreeWidgetItem (const QTreeWidgetItem &other) | |
virtual | ~QTreeWidgetItem () |
Destroys this tree widget item. | |
virtual QTreeWidgetItem * | clone () const |
Creates a deep copy of the item and of its children. | |
QTreeWidget * | treeWidget () const |
Returns the tree widget that contains the item. | |
void | setSelected (bool select) |
bool | isSelected () const |
void | setHidden (bool hide) |
bool | isHidden () const |
void | setExpanded (bool expand) |
bool | isExpanded () const |
void | setFirstColumnSpanned (bool span) |
bool | isFirstColumnSpanned () const |
void | setDisabled (bool disabled) |
bool | isDisabled () const |
void | setChildIndicatorPolicy (QTreeWidgetItem::ChildIndicatorPolicy policy) |
Sets the item indicator policy. | |
QTreeWidgetItem::ChildIndicatorPolicy | childIndicatorPolicy () const |
Returns the item indicator policy. | |
Qt::ItemFlags | flags () const |
Returns the flags used to describe the item. | |
void | setFlags (Qt::ItemFlags flags) |
Sets the flags for the item to the given flags. | |
QString | text (int column) const |
Returns the text in the specified column. | |
void | setText (int column, const QString &text) |
Sets the text to be displayed in the given column to the given text. | |
QIcon | icon (int column) const |
Returns the icon that is displayed in the specified column. | |
void | setIcon (int column, const QIcon &icon) |
Sets the icon to be displayed in the given column to icon. | |
QString | statusTip (int column) const |
Returns the status tip for the contents of the given column. | |
void | setStatusTip (int column, const QString &statusTip) |
Sets the status tip for the given column to the given statusTip. | |
QFont | font (int column) const |
Returns the font used to render the text in the specified column. | |
void | setFont (int column, const QFont &font) |
Sets the font used to display the text in the given column to the given font. | |
Qt::Alignment | textAlignment (int column) const |
void | setTextAlignment (int column, Qt::Alignment alignment) |
\obsolete [6.4] Use the overload that takes a Qt::Alignment argument. | |
QBrush | background (int column) const |
void | setBackground (int column, const QBrush &brush) |
QBrush | foreground (int column) const |
void | setForeground (int column, const QBrush &brush) |
Qt::CheckState | checkState (int column) const |
Returns the check state of the label in the given column. | |
void | setCheckState (int column, Qt::CheckState state) |
Sets the item in the given column check state to be state. | |
QSize | sizeHint (int column) const |
void | setSizeHint (int column, const QSize &size) |
virtual QVariant | data (int column, int role) const |
Returns the value for the item's column and role. | |
virtual void | setData (int column, int role, const QVariant &value) |
Sets the value for the item's column and role to the given value. | |
virtual bool | operator< (const QTreeWidgetItem &other) const |
Returns true if the text in the item is less than the text in the other item, otherwise returns false . | |
virtual void | read (QDataStream &in) |
Reads the item from stream in. | |
virtual void | write (QDataStream &out) const |
Writes the item to stream out. | |
QTreeWidgetItem & | operator= (const QTreeWidgetItem &other) |
Assigns other's data and flags to this item. | |
QTreeWidgetItem * | parent () const |
Returns the item's parent. | |
QTreeWidgetItem * | child (int index) const |
Returns the item at the given index in the list of the item's children. | |
int | childCount () const |
Returns the number of child items. | |
int | columnCount () const |
Returns the number of columns in the item. | |
int | indexOfChild (QTreeWidgetItem *child) const |
Returns the index of the given child in the item's list of children. | |
void | addChild (QTreeWidgetItem *child) |
Appends the child item to the list of children. | |
void | insertChild (int index, QTreeWidgetItem *child) |
Inserts the child item at index in the list of children. | |
void | removeChild (QTreeWidgetItem *child) |
Removes the given item indicated by child. | |
QTreeWidgetItem * | takeChild (int index) |
Removes the item at index and returns it, otherwise return 0. | |
void | addChildren (const QList< QTreeWidgetItem * > &children) |
void | insertChildren (int index, const QList< QTreeWidgetItem * > &children) |
QList< QTreeWidgetItem * > | takeChildren () |
int | type () const |
Returns the type passed to the QTreeWidgetItem constructor. | |
void | sortChildren (int column, Qt::SortOrder order) |
Protected Member Functions | |
void | emitDataChanged () |
Friends | |
class | QTreeModel |
class | QTreeWidget |
class | QTreeWidgetPrivate |
class | QTreeWidgetItemIterator |
class | QTreeWidgetItemPrivate |
Related Symbols | |
(Note that these are not member symbols.) | |
QDataStream & | operator<< (QDataStream &out, const QTreeWidgetItem &item) |
Writes the tree widget item item to stream out. | |
QDataStream & | operator>> (QDataStream &in, QTreeWidgetItem &item) |
Reads a tree widget item from stream in into item. | |
The QTreeWidgetItem class provides an item for use with the QTreeWidget convenience class.
\inmodule QtWidgets
Tree widget items are used to hold rows of information for tree widgets. Rows usually contain several columns of data, each of which can contain a text label and an icon.
The QTreeWidgetItem class is a convenience class that replaces the QListViewItem class in Qt 3. It provides an item for use with the QTreeWidget class.
Items are usually constructed with a parent that is either a QTreeWidget (for top-level items) or a QTreeWidgetItem (for items on lower levels of the tree). For example, the following code constructs a top-level item to represent cities of the world, and adds a entry for Oslo as a child item:
Items can be added in a particular order by specifying the item they follow when they are constructed:
Each column in an 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 column can be rendered with its own font and brush. These are specified with the setFont() and setForeground() functions, and read with font() and foreground().
The main difference between top-level items and those in lower levels of the tree is that a top-level item has no parent(). This information can be used to tell the difference between items, and is useful to know when inserting and removing items from the tree. Children of an item can be removed with takeChild() and inserted at a given index in the list of children with the insertChild() function.
By default, items are enabled, selectable, checkable, and can be the source of a drag and drop operation. Each item's flags can be changed by calling setFlags() with the appropriate value (see \l{Qt::ItemFlags}). Checkable items can be checked and unchecked with the setCheckState() function. The corresponding checkState() function indicates whether the item is currently checked.
Definition at line 22 of file qtreewidget.h.
\value ShowIndicator The controls for expanding and collapsing will be shown for this item even if there are no children. \value DontShowIndicator The controls for expanding and collapsing will never be shown even if there are children. If the node is forced open the user will not be able to expand or collapse the item. \value DontShowIndicatorWhenChildless The controls for expanding and collapsing will be shown if the item contains children.
Enumerator | |
---|---|
ShowIndicator | |
DontShowIndicator | |
DontShowIndicatorWhenChildless |
Definition at line 61 of file qtreewidget.h.
This enum describes the types that are used to describe tree widget items.
\value Type The default type for tree widget items. \value UserType The minimum value for custom types. Values below UserType are reserved by Qt.
You can define new user types in QTreeWidgetItem subclasses to ensure that custom items are treated specially; for example, when items are sorted.
Enumerator | |
---|---|
Type | |
UserType |
Definition at line 30 of file qtreewidget.h.
|
explicit |
Constructs a tree widget item of the specified type.
The item must be inserted into a tree widget.
Definition at line 1386 of file qtreewidget.cpp.
|
explicit |
Constructs a tree widget item of the specified type.
The item must be inserted into a tree widget. The given list of strings will be set as the item text for each column in the item.
Definition at line 1396 of file qtreewidget.cpp.
|
explicit |
Constructs a tree widget item of the specified type and appends it to the items in the given parent.
Definition at line 1412 of file qtreewidget.cpp.
References QSqlQueryModel::columnCount(), and model.
QTreeWidgetItem::QTreeWidgetItem | ( | QTreeWidget * | parent, |
const QStringList & | strings, | ||
int | type = Type |
||
) |
Constructs a tree widget item of the specified type and appends it to the items in the given parent.
The given list of strings will be set as the item text for each column in the item.
Definition at line 1432 of file qtreewidget.cpp.
References QSqlQueryModel::columnCount(), i, model, and setText().
QTreeWidgetItem::QTreeWidgetItem | ( | QTreeWidget * | parent, |
QTreeWidgetItem * | preceding, | ||
int | type = Type |
||
) |
Constructs a tree widget item of the specified type and inserts it into the given parent after the preceding item.
Definition at line 1452 of file qtreewidget.cpp.
References QObject::children(), QSqlQueryModel::columnCount(), i, QListSpecialMethodsBase< T >::indexOf(), and model.
|
explicit |
Constructs a tree widget item and append it to the given parent.
Definition at line 1468 of file qtreewidget.cpp.
References addChild(), and parent().
QTreeWidgetItem::QTreeWidgetItem | ( | QTreeWidgetItem * | parent, |
const QStringList & | strings, | ||
int | type = Type |
||
) |
Constructs a tree widget item and append it to the given parent.
The given list of strings will be set as the item text for each column in the item.
Definition at line 1481 of file qtreewidget.cpp.
References addChild(), i, parent(), and setText().
QTreeWidgetItem::QTreeWidgetItem | ( | QTreeWidgetItem * | parent, |
QTreeWidgetItem * | preceding, | ||
int | type = Type |
||
) |
Constructs a tree widget item of the specified type that is inserted into the parent after the preceding child item.
Definition at line 1498 of file qtreewidget.cpp.
References i, QListSpecialMethodsBase< T >::indexOf(), insertChild(), and parent().
QTreeWidgetItem::QTreeWidgetItem | ( | const QTreeWidgetItem & | other | ) |
Constructs a copy of other. Note that type() and treeWidget() are not copied.
This function is useful when reimplementing clone().
Definition at line 1908 of file qtreewidget.cpp.
References QTreeWidgetItemPrivate::display, and other().
|
virtual |
Destroys this tree widget item.
The item will be removed from \l{QTreeWidget}s to which it has been added. This makes it safe to delete an item at any time.
Definition at line 1515 of file qtreewidget.cpp.
References QList< T >::at(), child, QObject::children(), QList< T >::clear(), i, QListSpecialMethodsBase< T >::indexOf(), QList< T >::isEmpty(), model, QList< T >::size(), and QList< T >::takeAt().
void QTreeWidgetItem::addChild | ( | QTreeWidgetItem * | child | ) |
Appends the child item to the list of children.
Definition at line 1939 of file qtreewidget.cpp.
References child, insertChild(), and QList< T >::size().
Referenced by QTreeWidgetItem(), and QTreeWidgetItem().
void QTreeWidgetItem::addChildren | ( | const QList< QTreeWidgetItem * > & | children | ) |
Appends the given list of children to the item.
Definition at line 2042 of file qtreewidget.cpp.
References insertChildren(), and QList< T >::size().
|
inline |
Returns the brush used to render the background of the specified column.
Definition at line 113 of file qtreewidget.h.
References Qt::BackgroundRole.
|
inline |
Returns the check state of the label in the given column.
Definition at line 123 of file qtreewidget.h.
References Qt::CheckStateRole.
|
inline |
Returns the item at the given index in the list of the item's children.
Definition at line 145 of file qtreewidget.h.
Referenced by QTreeModel::index().
|
inline |
Returns the number of child items.
Definition at line 151 of file qtreewidget.h.
Referenced by QTreeModel::clear(), QTreeModel::hasChildren(), and QTreeModel::rowCount().
QTreeWidgetItem::ChildIndicatorPolicy QTreeWidgetItem::childIndicatorPolicy | ( | ) | const |
Returns the item indicator policy.
This policy decides when the tree branch expand/collapse indicator is shown.
Definition at line 1624 of file qtreewidget.cpp.
References QTreeWidgetItemPrivate::policy.
|
virtual |
Creates a deep copy of the item and of its children.
Definition at line 1563 of file qtreewidget.cpp.
References copy(), i, QList< T >::insert(), QList< T >::isEmpty(), item, parent(), QStack< T >::pop(), and QStack< T >::push().
|
inline |
Returns the number of columns in the item.
Definition at line 152 of file qtreewidget.h.
Referenced by QTreeModel::columnCount().
|
virtual |
Returns the value for the item's column and role.
Definition at line 1821 of file qtreewidget.cpp.
References QList< T >::at(), Qt::CheckStateRole, QTreeWidgetItemPrivate::display, Qt::DisplayRole, Qt::EditRole, Qt::ItemIsAutoTristate, Q_FALLTHROUGH, and QList< T >::size().
Referenced by QTreeModel::data(), QTreeModel::headerData(), and QTreeModel::itemData().
|
protected |
Causes the model associated with this item to emit a \l{QAbstractItemModel::dataChanged()}{dataChanged}() signal for this item.
You normally only need to call this function if you have subclassed QTreeWidgetItem and reimplemented data() and/or setData().
Definition at line 2236 of file qtreewidget.cpp.
Qt::ItemFlags QTreeWidgetItem::flags | ( | ) | const |
Returns the flags used to describe the item.
These determine whether the item can be checked, edited, and selected.
The default value for flags is Qt::ItemIsSelectable | Qt::ItemIsUserCheckable | Qt::ItemIsEnabled | Qt::ItemIsDragEnabled | Qt::ItemIsDropEnabled.
Definition at line 1728 of file qtreewidget.cpp.
Referenced by QTreeModel::flags(), and setFlags().
|
inline |
Returns the font used to render the text in the specified column.
Definition at line 92 of file qtreewidget.h.
References Qt::FontRole.
|
inline |
Returns the brush used to render the foreground (e.g. text) of the specified column. Setting a default-constructed brush will let the view use the default color from the style.
Definition at line 118 of file qtreewidget.h.
References Qt::ForegroundRole.
|
inline |
Returns the icon that is displayed in the specified column.
Definition at line 72 of file qtreewidget.h.
References Qt::DecorationRole.
|
inline |
Returns the index of the given child in the item's list of children.
Definition at line 215 of file qtreewidget.h.
References QListSpecialMethodsBase< T >::indexOf().
void QTreeWidgetItem::insertChild | ( | int | index, |
QTreeWidgetItem * | child | ||
) |
Inserts the child item at index in the list of children.
If the child has already been inserted somewhere else it won't be inserted again.
Definition at line 1952 of file qtreewidget.cpp.
References child, QSqlQueryModel::columnCount(), i, QList< T >::insert(), QList< T >::isEmpty(), QTreeView::isSortingEnabled(), model, QStack< T >::pop(), QTreeWidgetItemPrivate::propagateDisabled(), QStack< T >::push(), QList< T >::size(), and QTreeWidgetItemPrivate::updateHiddenStatus().
Referenced by QTreeWidgetItem(), addChild(), and insertChildren().
void QTreeWidgetItem::insertChildren | ( | int | index, |
const QList< QTreeWidgetItem * > & | children | ||
) |
Inserts the given list of children into the list of the item children at index .
Children that have already been inserted somewhere else won't be inserted.
Definition at line 2054 of file qtreewidget.cpp.
References QList< T >::append(), QList< T >::at(), child, i, QList< T >::insert(), insertChild(), QList< T >::isEmpty(), QTreeView::isSortingEnabled(), model, QStack< T >::pop(), QTreeWidgetItemPrivate::propagateDisabled(), QStack< T >::push(), QList< T >::size(), and QTreeWidgetItemPrivate::updateHiddenStatus().
Referenced by addChildren().
|
inline |
Returns true
if the item is disabled; otherwise returns false
.
Definition at line 353 of file qtreewidget.h.
References Qt::ItemIsEnabled.
bool QTreeWidgetItem::isExpanded | ( | ) | const |
Returns true
if the item is expanded, otherwise returns false
.
Definition at line 1078 of file qtreewidget.cpp.
References QTreeView::isExpanded(), and model.
bool QTreeWidgetItem::isFirstColumnSpanned | ( | ) | const |
Returns true
if the item is spanning all the columns in a row; otherwise returns false
.
Definition at line 1113 of file qtreewidget.cpp.
References QAbstractTableModel::index(), QTreeView::isFirstColumnSpanned(), and model.
bool QTreeWidgetItem::isHidden | ( | ) | const |
Returns true
if the item is hidden, otherwise returns false
.
Definition at line 1039 of file qtreewidget.cpp.
References QTreeView::header(), QTreeView::isRowHidden(), and model.
bool QTreeWidgetItem::isSelected | ( | ) | const |
Returns true
if the item is selected, otherwise returns false
.
Definition at line 999 of file qtreewidget.cpp.
References QTreeWidgetItemPrivate::selected.
|
virtual |
Returns true
if the text in the item is less than the text in the other item, otherwise returns false
.
Definition at line 1851 of file qtreewidget.cpp.
References Qt::DisplayRole, other(), QTreeWidget::sortColumn(), and QAbstractItemModelPrivate::variantLessThan().
QTreeWidgetItem & QTreeWidgetItem::operator= | ( | const QTreeWidgetItem & | other | ) |
Assigns other's data and flags to this item.
Note that type() and treeWidget() are not copied.
This function is useful when reimplementing clone().
Definition at line 1925 of file qtreewidget.cpp.
References QTreeWidgetItemPrivate::display, other(), and QTreeWidgetItemPrivate::policy.
|
inline |
Returns the item's parent.
Definition at line 144 of file qtreewidget.h.
Referenced by QTreeWidgetItem(), QTreeWidgetItem(), QTreeWidgetItem(), clone(), QTreeModel::parent(), and setFlags().
|
virtual |
Reads the item from stream in.
This only reads data into a single item.
Definition at line 1866 of file qtreewidget.cpp.
References QList< T >::at(), QList< T >::clear(), QTreeWidgetItemPrivate::display, Qt::DisplayRole, i, QDataStream::Qt_4_2, and QVariant::value().
void QTreeWidgetItem::removeChild | ( | QTreeWidgetItem * | child | ) |
Removes the given item indicated by child.
The removed item will not be deleted.
Definition at line 1994 of file qtreewidget.cpp.
References child, QListSpecialMethodsBase< T >::indexOf(), takeChild(), and void.
Sets the background brush of the label in the given column to the specified brush. Setting a default-constructed brush will let the view use the default color from the style.
Definition at line 115 of file qtreewidget.h.
References Qt::BackgroundRole, Qt::NoBrush, and setData().
|
inline |
Sets the item in the given column check state to be state.
Definition at line 125 of file qtreewidget.h.
References Qt::CheckStateRole, setData(), and state.
void QTreeWidgetItem::setChildIndicatorPolicy | ( | QTreeWidgetItem::ChildIndicatorPolicy | policy | ) |
Sets the item indicator policy.
This policy decides when the tree branch expand/collapse indicator is shown. The default value is DontShowIndicatorWhenChildless.
Definition at line 1606 of file qtreewidget.cpp.
References policy, QTreeWidgetItemPrivate::policy, and QAbstractItemView::scheduleDelayedItemsLayout().
Sets the value for the item's column and role to the given value.
The role describes the type of data specified by value, and is defined by the Qt::ItemDataRole enum.
Definition at line 1743 of file qtreewidget.cpp.
References QList< T >::append(), QList< T >::at(), Qt::CheckStateRole, child, QTreeWidgetItemPrivate::display, Qt::DisplayRole, Qt::EditRole, i, Qt::ItemIsAutoTristate, model, Qt::PartiallyChecked, Q_FALLTHROUGH, and QList< T >::size().
Referenced by QTreeModel::setData(), setFont(), QTreeModel::setHeaderData(), setIcon(), and setText().
|
inline |
Disables the item if disabled is true; otherwise enables the item.
Definition at line 350 of file qtreewidget.h.
References disabled, and Qt::ItemIsEnabled.
void QTreeWidgetItem::setExpanded | ( | bool | expand | ) |
Expands the item if expand is true, otherwise collapses the item.
Definition at line 1061 of file qtreewidget.cpp.
References model, and QTreeView::setExpanded().
void QTreeWidgetItem::setFirstColumnSpanned | ( | bool | span | ) |
Sets the first section to span all columns if span is true; otherwise all item sections are shown.
Definition at line 1096 of file qtreewidget.cpp.
References QAbstractTableModel::index(), model, and QTreeView::setFirstColumnSpanned().
void QTreeWidgetItem::setFlags | ( | Qt::ItemFlags | flags | ) |
Sets the flags for the item to the given flags.
These determine whether the item can be selected or modified. This is often used to disable an item.
Definition at line 1637 of file qtreewidget.cpp.
References QList< T >::at(), child, QTreeWidgetItemPrivate::disabled, flags(), i, QList< T >::isEmpty(), Qt::ItemIsEnabled, parent(), QStack< T >::pop(), QStack< T >::push(), and QList< T >::size().
Sets the font used to display the text in the given column to the given font.
Definition at line 212 of file qtreewidget.h.
References Qt::FontRole, and setData().
Sets the foreground brush of the label in the given column to the specified brush.
Definition at line 120 of file qtreewidget.h.
References Qt::ForegroundRole, Qt::NoBrush, and setData().
void QTreeWidgetItem::setHidden | ( | bool | hide | ) |
Hides the item if hide is true, otherwise shows the item.
setHidden(true)
on an item and only then adding it to a view will result in a visible item.Definition at line 1016 of file qtreewidget.cpp.
References QTreeView::header(), QTreeWidgetItemPrivate::hidden, hide(), model, and QTreeView::setRowHidden().
Sets the icon to be displayed in the given column to icon.
Definition at line 194 of file qtreewidget.h.
References Qt::DecorationRole, and setData().
void QTreeWidgetItem::setSelected | ( | bool | select | ) |
Sets the selected state of the item to select.
Definition at line 979 of file qtreewidget.cpp.
References QItemSelectionModel::Deselect, QAbstractTableModel::index(), model, QItemSelectionModel::Rows, QItemSelectionModel::Select, QItemSelectionModel::select(), select(), QTreeWidgetItemPrivate::selected, and QAbstractItemView::selectionModel().
Sets the size hint for the tree item in the given column to be size. If no size hint is set or size is invalid, the item delegate will compute the size hint based on the item data.
Definition at line 130 of file qtreewidget.h.
References setData(), and Qt::SizeHintRole.
Sets the status tip for the given column to the given statusTip.
QTreeWidget mouse tracking needs to be enabled for this feature to work.
Sets the text to be displayed in the given column to the given text.
Definition at line 191 of file qtreewidget.h.
References Qt::DisplayRole, and setData().
Referenced by QTreeWidgetItem(), QTreeWidgetItem(), QTreeWidgetItem(), and qfontdatabase_snippets::wrapper().
|
inline |
\obsolete [6.4] Use the overload that takes a Qt::Alignment argument.
Sets the text alignment for the label in the given column to the alignment specified.
Sets the text alignment for the label in the given column to the alignment specified.
Definition at line 110 of file qtreewidget.h.
References alignment, QVariant::fromValue(), setData(), and Qt::TextAlignmentRole.
|
inline |
Returns the size hint set for the tree item in the given column (see \l{QSize}).
Definition at line 128 of file qtreewidget.h.
References Qt::SizeHintRole.
|
inline |
Sorts the children of the item using the given order, by the values in the given column.
Definition at line 165 of file qtreewidget.h.
Referenced by QTreeModel::sort().
|
inline |
Returns the status tip for the contents of the given column.
Definition at line 76 of file qtreewidget.h.
References Qt::StatusTipRole.
QTreeWidgetItem * QTreeWidgetItem::takeChild | ( | int | index | ) |
Removes the item at index and returns it, otherwise return 0.
Definition at line 2002 of file qtreewidget.cpp.
References QList< T >::at(), QSqlQueryModel::endRemoveRows(), i, QList< T >::isEmpty(), item, model, QStack< T >::pop(), QTreeWidgetItemPrivate::propagateDisabled(), QStack< T >::push(), QList< T >::size(), QList< T >::takeAt(), and QTreeWidgetItemPrivate::updateHiddenStatus().
Referenced by removeChild(), and QTreeModel::removeRows().
QList< QTreeWidgetItem * > QTreeWidgetItem::takeChildren | ( | ) |
Removes the list of children and returns it, otherwise returns an empty list.
Definition at line 2107 of file qtreewidget.cpp.
References QList< T >::at(), QList< T >::clear(), i, QList< T >::isEmpty(), item, model, QStack< T >::pop(), QTreeWidgetItemPrivate::propagateDisabled(), QStack< T >::push(), and QList< T >::size().
|
inline |
Returns the text in the specified column.
Definition at line 68 of file qtreewidget.h.
References Qt::DisplayRole.
|
inline |
Returns the text alignment for the label in the given column.
Definition at line 100 of file qtreewidget.h.
References Qt::TextAlignmentRole.
|
inline |
Returns the tree widget that contains the item.
Definition at line 44 of file qtreewidget.h.
References view.
|
inline |
Returns the type passed to the QTreeWidgetItem constructor.
Definition at line 164 of file qtreewidget.h.
Referenced by QTlsPrivate::X509CertificateGeneric::parseExtension().
|
virtual |
Writes the item to stream out.
This only writes data from one single item.
Definition at line 1892 of file qtreewidget.cpp.
References QTreeWidgetItemPrivate::display, and out.
|
related |
Writes the tree widget item item to stream out.
This operator uses QTreeWidgetItem::write().
Definition at line 2281 of file qtreewidget.cpp.
|
related |
Reads a tree widget item from stream in into item.
This operator uses QTreeWidgetItem::read().
Definition at line 2296 of file qtreewidget.cpp.
References item.
|
friend |
Definition at line 24 of file qtreewidget.h.
|
friend |
Definition at line 25 of file qtreewidget.h.
|
friend |
Definition at line 27 of file qtreewidget.h.
|
friend |
Definition at line 28 of file qtreewidget.h.
|
friend |
Definition at line 26 of file qtreewidget.h.