Viadeo Twitter Google Bookmarks ! Facebook Digg del.icio.us MySpace Yahoo MyWeb Blinklist Netvouz Reddit Simpy StumbleUpon Bookmarks Windows Live Favorites 
Logo Documentation Qt ·  Page d'accueil  ·  Toutes les classes  ·  Classes principales  ·  Annotées  ·  Classes groupées  ·  Modules  ·  Fonctions  · 

QTreeWidgetItem Class Reference
[QtGui module]

The QTreeWidgetItem class provides an item for use with the QTreeWidget convenience class. More...

#include <QTreeWidgetItem>

Public Functions

Static Public Members

Related Non-Members

  • QDataStream & operator<< ( QDataStream & out, const QTreeWidgetItem & item )
  • QDataStream & operator>> ( QDataStream & in, QTreeWidgetItem & item )

Detailed Description

The QTreeWidgetItem class provides an item for use with the QTreeWidget convenience class.

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:

        QTreeWidgetItem *cities = new QTreeWidgetItem(treeWidget);
        cities->setText(0, tr("Cities"));
        QTreeWidgetItem *osloItem = new QTreeWidgetItem(cities);
        osloItem->setText(0, tr("Oslo"));
        osloItem->setText(1, tr("Yes"));

Items can be added in a particular order by specifying the item they follow when they are constructed:

        QTreeWidgetItem *planets = new QTreeWidgetItem(treeWidget, cities);
        planets->setText(0, tr("Planets"));

Each column in an item can have its own background color which is set with the setBackgroundColor() function. The current background color can be found with backgroundColor(). The text label for each column can be rendered with its own font and text color. These are specified with the setFont() and setTextColor() functions, and read with font() and textColor().

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.

See also QTreeWidget.


Member Function Documentation

QTreeWidgetItem::QTreeWidgetItem ( int type = Type )

Constructs a tree widget item of the specified type. The item must be inserted into a tree widget.

See also type().

QTreeWidgetItem::QTreeWidgetItem ( QTreeWidget * parent, int type = Type )

Constructs a tree widget item of the specified type and appends it to the items in the given parent.

See also type().

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.

See also type().

QTreeWidgetItem::QTreeWidgetItem ( QTreeWidgetItem * parent, int type = Type )

Constructs a tree widget item and append it to the given parent.

See also type().

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.

See also type().

QTreeWidgetItem::~QTreeWidgetItem ()   [virtual]

Destroys this tree widget item.

void QTreeWidgetItem::addChild ( QTreeWidgetItem * child )

Appends the child item to the list of children.

See also insertChild() and takeChild().

QColor QTreeWidgetItem::backgroundColor ( int column ) const

Returns the color used to render the background of the specified column.

See also textColor() and setBackgroundColor().

Qt::CheckState QTreeWidgetItem::checkState ( int column ) const

Returns the check state of the label in the given column.

See also setCheckState() and Qt::CheckState.

QTreeWidgetItem * QTreeWidgetItem::child ( int index ) const

Returns the item at the given index in the list of the item's children.

See also parent().

int QTreeWidgetItem::childCount () const

Returns the number of child items.

QTreeWidgetItem * QTreeWidgetItem::clone () const   [virtual]

Creates a deep copy of the item and it's children.

int QTreeWidgetItem::columnCount () const

Returns the number of columns in the item.

QVariant QTreeWidgetItem::data ( int column, int role ) const   [virtual]

Returns the value for the item's column and role.

See also setData().

Qt::ItemFlags QTreeWidgetItem::flags () const

Returns the flags used to describe the item. These determine whether the item can be checked, edited, and selected.

See also setFlags().

QFont QTreeWidgetItem::font ( int column ) const

Returns the font used to render the text in the specified column.

See also setFont().

QIcon QTreeWidgetItem::icon ( int column ) const

Returns the icon that is displayed in the specified column.

See also setIcon().

int QTreeWidgetItem::indexOfChild ( QTreeWidgetItem * child ) const

Returns the index of the given child in the item's list of children.

void QTreeWidgetItem::insertChild ( int index, QTreeWidgetItem * child )

Inserts the child item at index in the list of children.

QTreeWidgetItem * QTreeWidgetItem::parent () const

Returns the item's parent.

See also child().

void QTreeWidgetItem::read ( QDataStream & in )   [virtual]

Reads the item from stream in. This only reads data into a single item.

See also write().

void QTreeWidgetItem::setBackgroundColor ( int column, const QColor & color )

Sets the background color of the label in the given column to the specified color.

See also backgroundColor() and setTextColor().

void QTreeWidgetItem::setCheckState ( int column, Qt::CheckState state )

Sets the item in the given column check state to be state.

See also checkState().

void QTreeWidgetItem::setData ( int column, int role, const QVariant & value )   [virtual]

Sets the value for the item's column and role to the given value.

See also data().

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.

See also flags().

void QTreeWidgetItem::setFont ( int column, const QFont & font )

Sets the font used to display the text in the given column to the given font.

See also font(), setText(), and setTextColor().

void QTreeWidgetItem::setIcon ( int column, const QIcon & icon )

Sets the icon to be displayed in the given column to icon.

See also icon() and setText().

void QTreeWidgetItem::setStatusTip ( int column, const QString & statusTip )

Sets the status tip for the given column to the given statusTip.

See also statusTip(), setToolTip(), and setWhatsThis().

void QTreeWidgetItem::setText ( int column, const QString & text )

Sets the text to be displayed in the given column to the given text.

See also text(), setFont(), and setTextColor().

void QTreeWidgetItem::setTextAlignment ( int column, int alignment )

Sets the text alignment for the label in the given column to the alignment specified (see Qt::AlignmentFlag).

See also textAlignment().

void QTreeWidgetItem::setTextColor ( int column, const QColor & color )

Sets the color used to display the text in the given column to color.

See also textColor(), setFont(), and setText().

void QTreeWidgetItem::setToolTip ( int column, const QString & toolTip )

Sets the tooltip for the given column to toolTip.

See also toolTip(), setStatusTip(), and setWhatsThis().

void QTreeWidgetItem::setWhatsThis ( int column, const QString & whatsThis )

Sets the "What's This?" help for the given column to whatsThis.

See also whatsThis(), setStatusTip(), and setToolTip().

QString QTreeWidgetItem::statusTip ( int column ) const

Returns the status tip for the contents of the given column.

See also setStatusTip().

QTreeWidgetItem * QTreeWidgetItem::takeChild ( int index )

Removes the item at index and returns it, otherwise return 0.

QString QTreeWidgetItem::text ( int column ) const

Returns the text in the specified column.

See also setText().

int QTreeWidgetItem::textAlignment ( int column ) const

Returns the text alignment for the label in the given column (see Qt::AlignmentFlag).

See also setTextAlignment().

QColor QTreeWidgetItem::textColor ( int column ) const

Returns the color used to render the text in the specified column.

See also backgroundColor() and setTextColor().

QString QTreeWidgetItem::toolTip ( int column ) const

Returns the tool tip for the given column.

See also setToolTip().

QTreeWidget * QTreeWidgetItem::treeWidget () const

Returns the tree widget that contains the item.

int QTreeWidgetItem::type () const

Returns the type passed to the QTreeWidgetItem constructor.

QString QTreeWidgetItem::whatsThis ( int column ) const

Returns the "What's This?" help for the contents of the given column.

See also setWhatsThis().

void QTreeWidgetItem::write ( QDataStream & out ) const   [virtual]

Writes the item to stream out. This only writes data from one single item.

See also read().

bool QTreeWidgetItem::operator< ( const QTreeWidgetItem & other ) const   [virtual]

Returns true if the text in the item is less than the text in the other item, otherwise returns false.

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().

See also data() and flags().


Member Variable Documentation

const int QTreeWidgetItem::Type

The default type for tree widget items.

See also UserType and type().

const int QTreeWidgetItem::UserType

The minimum value for custom types. Values below UserType are reserved by Qt.

See also Type and type().


Related Non-Members

QDataStream & operator<< ( QDataStream & out, const QTreeWidgetItem & item )

This is an overloaded member function, provided for convenience. It behaves essentially like the above function.

Writes the tree widget item item to stream out.

This operator uses QTreeWidgetItem::write().

See also Format of the QDataStream Operators.

QDataStream & operator>> ( QDataStream & in, QTreeWidgetItem & item )

This is an overloaded member function, provided for convenience. It behaves essentially like the above function.

Reads a tree widget item from stream in into item.

This operator uses QTreeWidgetItem::read().

See also Format of the QDataStream Operators.

Publicité

Best Of

Actualités les plus lues

Semaine
Mois
Année
  1. «Le projet de loi des droits du développeur» : quelles conditions doivent remplir les entreprises pour que le développeur puisse réussir ? 72
  2. Les développeurs détestent-ils les antivirus ? Un programmeur manifeste sa haine envers ces solutions de sécurité 27
  3. Une nouvelle ère d'IHM 3D pour les automobiles, un concept proposé par Digia et implémenté avec Qt 3
  4. Qt Creator 2.5 est sorti en beta, l'EDI supporte maintenant plus de fonctionnalités de C++11 2
  5. Vingt sociétés montrent leurs décodeurs basés sur Qt au IPTV World Forum, en en exploitant diverses facettes (déclaratif, Web, widgets) 0
  6. PySide devient un add-on Qt et rejoint le Qt Project et le modèle d'open gouvernance 1
  7. Thread travailleur avec Qt en utilisant les signaux et les slots, un article de Christophe Dumez traduit par Thibaut Cuvelier 1
  1. « Quelque chose ne va vraiment pas avec les développeurs "modernes" », un développeur à "l'ancienne" critique la multiplication des bibliothèques 101
  2. Pourquoi les programmeurs sont-ils moins payés que les gestionnaires de programmes ? Manquent-ils de pouvoir de négociation ? 51
  3. «Le projet de loi des droits du développeur» : quelles conditions doivent remplir les entreprises pour que le développeur puisse réussir ? 69
  4. Les développeurs détestent-ils les antivirus ? Un programmeur manifeste sa haine envers ces solutions de sécurité 27
  5. Qt Commercial : Digia organise un webinar gratuit le 27 mars sur la conception d'interfaces utilisateur et d'applications avec le framework 0
  6. Quelles nouveautés de C++11 Visual C++ doit-il rapidement intégrer ? Donnez-nous votre avis 10
  7. 2017 : un quinquennat pour une nouvelle version du C++ ? Possible, selon Herb Sutter 11
Page suivante
  1. Linus Torvalds : le "C++ est un langage horrible", en justifiant le choix du C pour le système de gestion de version Git 100
  2. Comment prendre en compte l'utilisateur dans vos applications ? Pour un développeur, « 90 % des utilisateurs sont des idiots » 229
  3. Quel est LE livre que tout développeur doit lire absolument ? Celui qui vous a le plus marqué et inspiré 96
  4. Apple cède et s'engage à payer des droits à Nokia, le conflit des brevets entre les deux firmes s'achève 158
  5. Nokia porte à nouveau plainte contre Apple pour violation de sept nouveaux brevets 158
  6. Quel est le code dont vous êtes le plus fier ? Pourquoi l'avez-vous écrit ? Et pourquoi vous a-t-il donné autant de satisfaction ? 83
  7. « Quelque chose ne va vraiment pas avec les développeurs "modernes" », un développeur à "l'ancienne" critique la multiplication des bibliothèques 101
Page suivante

Le Qt Labs au hasard

Logo

Le moteur de rendu OpenGL

Les Qt Labs sont les laboratoires des développeurs de Qt, où ils peuvent partager des impressions sur le framework, son utilisation, ce que pourrait être son futur. Lire l'article.

Communauté

Ressources

Liens utiles

Contact

  • Vous souhaitez rejoindre la rédaction ou proposer un tutoriel, une traduction, une question... ? Postez dans le forum Contribuez ou contactez-nous par MP ou par email (voir en bas de page).

Qt dans le magazine

Cette page est une traduction d'une page de la documentation de Qt, écrite par Nokia Corporation and/or its subsidiary(-ies). Les éventuels problèmes résultant d'une mauvaise traduction ne sont pas imputables à Nokia. Qt 4.0
Copyright © 2012 Developpez LLC. Tous droits réservés Developpez LLC. Aucune reproduction, même partielle, ne peut être faite de ce site et de l'ensemble de son contenu : textes, documents et images sans l'autorisation expresse de Developpez LLC. Sinon, vous encourez selon la loi jusqu'à 3 ans de prison et jusqu'à 300 000 E de dommages et intérêts. Cette page est déposée à la SACD.
Vous avez déniché une erreur ? Un bug ? Une redirection cassée ? Ou tout autre problème, quel qu'il soit ? Ou bien vous désirez participer à ce projet de traduction ? N'hésitez pas à nous contacter ou par MP !
 
 
 
 
Partenaires

Hébergement Web