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  · 

QTableWidget Class Reference
[QtGui module]

The QTableWidget class provides an item-based table view with a default model. More...

#include <QTableWidget>

Inherits QTableView.

Properties

Public Functions

Public Slots

Signals

Protected Functions

  • virtual bool dropMimeData ( int row, int column, const QMimeData * data, Qt::DropAction action )
  • QModelIndex indexFromItem ( QTableWidgetItem * item ) const
  • QTableWidgetItem * itemFromIndex ( const QModelIndex & index ) const
  • QList<QTableWidgetItem *> items ( const QMimeData * data ) const
  • virtual QMimeData * mimeData ( const QList<QTableWidgetItem *> items ) const
  • virtual QStringList mimeTypes () const
  • virtual Qt::DropActions supportedDropActions () const

Additional Inherited Members

  • 2 static public members inherited from QFrame
  • 4 static public members inherited from QWidget
  • 4 static public members inherited from QObject
  • 6 protected slots inherited from QTableView
  • 8 protected slots inherited from QAbstractItemView

Detailed Description

The QTableWidget class provides an item-based table view with a default model.

Table widgets provide standard table display facilities for applications. The items in a QTableWidget are provided by QTableWidgetItem.

If you want a table that uses your own data model you should use QTableView rather than this class.

Table widgets can be constructed with the required numbers of rows and columns:

        tableWidget = new QTableWidget(12, 3, this);

Alternatively, tables can be constructed without a given size and resized later:

        tableWidget = new QTableWidget(this);
        tableWidget->setRowCount(10);
        tableWidget->setColumnCount(5);

Items are created ouside the table (with no parent widget) and inserted into the table with setItem():

        QTableWidgetItem *newItem = new QTableWidgetItem(tr("%1").arg(
            (row+1)*(column+1)));
        tableWidget->setItem(row, column, newItem);

Tables can be given both horizontal and vertical headers. The simplest way to create the headers is to supply a list of strings to the setHorizontalHeaderLabels() and setVerticalHeaderLabels() functions. These will provide simple textual headers for the table's columns and rows. More sophisticated headers can be created from existing table items that are usually constructed outside the table. For example, we can construct a table item with an icon and aligned text, and use it as the header for a particular column:

        QTableWidgetItem *cubesHeaderItem = new QTableWidgetItem(tr("Cubes"));
        cubesHeaderItem->setIcon(QIcon(QPixmap(":/Images/cubed.png")));
        cubesHeaderItem->setTextAlignment(Qt::AlignVCenter);

The number of rows in the table can be found with rowCount(), and the number of columns with columnCount(). The table can be cleared with the clear() function.

See also QTableWidgetItem and Model/View Programming.


Property Documentation

columnCount : int

This property holds the number of columns in the table.

Access functions:

  • int columnCount () const
  • void setColumnCount ( int columns )

rowCount : int

This property holds the number of rows in the table.

Access functions:

  • int rowCount () const
  • void setRowCount ( int rows )

sortingEnabled : bool

This property holds whether the items in the table can be sorted by clicking on the horizontal header.

Access functions:

  • bool isSortingEnabled () const
  • void setSortingEnabled ( bool enable )

Member Function Documentation

QTableWidget::QTableWidget ( QWidget * parent = 0 )

Creates a new table view with the given parent.

QTableWidget::QTableWidget ( int rows, int columns, QWidget * parent = 0 )

Creates a new table view with the given rows and columns, and with the given parent.

QTableWidget::~QTableWidget ()

Destroys this QTableWidget.

void QTableWidget::clear ()   [slot]

Removes all items and selections in the view.

void QTableWidget::closePersistentEditor ( QTableWidgetItem * item )

Closes the persistent editor for item.

See also openPersistentEditor().

int QTableWidget::column ( const QTableWidgetItem * item ) const

Returns the column for the item.

int QTableWidget::currentColumn () const

Returns the column of the current item.

QTableWidgetItem * QTableWidget::currentItem () const

Returns the current item.

See also setCurrentItem().

void QTableWidget::currentItemChanged ( QTableWidgetItem * current, QTableWidgetItem * previous )   [signal]

This signal is emitted whenever the current item changes. The previous item is the item that previously had the focus, current is the new current item.

int QTableWidget::currentRow () const

Returns the row of the current item.

bool QTableWidget::dropMimeData ( int row, int column, const QMimeData * data, Qt::DropAction action )   [virtual protected]

Handles the data supplied by a drag and drop operation that ended with the given action in the given row and column.

See also supportedDropActions().

void QTableWidget::editItem ( QTableWidgetItem * item )

Starts editing the item if it is editable.

QList<QTableWidgetItem *> QTableWidget::findItems ( const QString & text, Qt::MatchFlags flags ) const

Finds items that matches the text using the given flags.

QTableWidgetItem * QTableWidget::horizontalHeaderItem ( int column ) const

Returns the horizontal header item for column column.

See also setHorizontalHeaderItem().

QModelIndex QTableWidget::indexFromItem ( QTableWidgetItem * item ) const   [protected]

Returns the QModelIndex assocated with the given item.

void QTableWidget::insertColumn ( int column )   [slot]

Inserts an empty column into the table at column.

void QTableWidget::insertRow ( int row )   [slot]

Inserts an empty row into the table at row.

bool QTableWidget::isItemSelected ( const QTableWidgetItem * item ) const

Returns true if the item is selected, otherwise returns false.

QTableWidgetItem * QTableWidget::item ( int row, int column ) const

Returns the item for the given row and column.

See also setItem().

void QTableWidget::itemActivated ( QTableWidgetItem * item )   [signal]

This signal is emitted when the specified item has been activated

QTableWidgetItem * QTableWidget::itemAt ( const QPoint & p ) const

Returns a pointer to the item at the coordinates p.

QTableWidgetItem * QTableWidget::itemAt ( int ax, int ay ) const

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

Returns the item at the position (ax, ay) in the table's coordinate system.

void QTableWidget::itemChanged ( QTableWidgetItem * item )   [signal]

This signal is emitted whenever the data of item has changed.

void QTableWidget::itemClicked ( QTableWidgetItem * item )   [signal]

This signal is emitted whenever an item in the table is clicked. The item specified is the item that was clicked.

void QTableWidget::itemDoubleClicked ( QTableWidgetItem * item )   [signal]

This signal is emitted whenever an item in the table is double clicked. The item specified is the item that was double clicked.

void QTableWidget::itemEntered ( QTableWidgetItem * item )   [signal]

This signal is emitted when the mouse cursor enters an item. The item is the item entered.

This signal is only emitted when mouseTracking is turned on, or when a mouse button is pressed while moving into an item.

QTableWidgetItem * QTableWidget::itemFromIndex ( const QModelIndex & index ) const   [protected]

Returns a pointer to the QTableWidgetItem assocated with the given index.

void QTableWidget::itemPressed ( QTableWidgetItem * item )   [signal]

This signal is emitted whenever an item in the table is pressed. The item specified is the item that was pressed.

const QTableWidgetItem * QTableWidget::itemPrototype () const

Returns the item prototype used by the table.

Copies of the item prototype are returned by the createItem() function.

See also setItemPrototype().

void QTableWidget::itemSelectionChanged ()   [signal]

This signal is emitted whenever the selection changes.

See also selectedItems() and isItemSelected().

QList<QTableWidgetItem *> QTableWidget::items ( const QMimeData * data ) const   [protected]

Returns a list of pointers to the items contained in the data object. If the object was not created by a QTreeWidget in the same process, the list is empty.

QMimeData * QTableWidget::mimeData ( const QList<QTableWidgetItem *> items ) const   [virtual protected]

Returns an object that contains a serialized description of the specified items. The format used to describe the items is obtained from the mimeTypes() function.

If the list of items is empty, 0 is returned rather than a serialized empty list.

QStringList QTableWidget::mimeTypes () const   [virtual protected]

Returns a list of MIME types that can be used to describe a list of tablewidget items.

See also mimeData().

void QTableWidget::openPersistentEditor ( QTableWidgetItem * item )

Opens an editor for the give item. The editor remains open after editing.

See also closePersistentEditor().

void QTableWidget::removeColumn ( int column )   [slot]

Removes the column column and all its items from the table.

void QTableWidget::removeRow ( int row )   [slot]

Removes the row row and all its items from the table.

int QTableWidget::row ( const QTableWidgetItem * item ) const

Returns the row for the item.

void QTableWidget::scrollToItem ( const QTableWidgetItem * item, QAbstractItemView::ScrollHint hint = EnsureVisible )   [slot]

QList<QTableWidgetItem *> QTableWidget::selectedItems ()

Returns a list of all selected items.

QList<QTableWidgetSelectionRange> QTableWidget::selectedRanges () const

Returns a list of all selected ranges.

See also QTableWidgetSelectionRange.

void QTableWidget::setCurrentItem ( QTableWidgetItem * item )

Sets the current item to item.

See also currentItem().

void QTableWidget::setHorizontalHeaderItem ( int column, QTableWidgetItem * item )

Sets the horizontal header item for column column to item.

See also horizontalHeaderItem().

void QTableWidget::setHorizontalHeaderLabels ( const QStringList & labels )

Sets the horizontal header labels using labels.

void QTableWidget::setItem ( int row, int column, QTableWidgetItem * item )

Sets the item for the given row and column to item.

See also item().

void QTableWidget::setItemPrototype ( const QTableWidgetItem * item )

Sets the item prototype for the table to the specified item.

See also itemPrototype().

void QTableWidget::setItemSelected ( const QTableWidgetItem * item, bool select )

Selects or deselects item depending on select.

See also isItemSelected().

void QTableWidget::setRangeSelected ( const QTableWidgetSelectionRange & range, bool select )

Selects or deselects the range depending on select.

void QTableWidget::setVerticalHeaderItem ( int row, QTableWidgetItem * item )

Sets the vertical header item for row row to item.

See also verticalHeaderItem().

void QTableWidget::setVerticalHeaderLabels ( const QStringList & labels )

Sets the vertical header labels using labels.

void QTableWidget::sortItems ( int column, Qt::SortOrder order = Qt::AscendingOrder )

Sorts all the rows in the table widget based on column and order.

Qt::DropActions QTableWidget::supportedDropActions () const   [virtual protected]

Returns the drop actions supported by this view.

See also Qt::DropActions.

QTableWidgetItem * QTableWidget::takeItem ( int row, int column )

Removes the item at row and column from the table without deleting it.

QTableWidgetItem * QTableWidget::verticalHeaderItem ( int row ) const

Returns the vertical header item for row row.

See also setVerticalHeaderItem().

int QTableWidget::visualColumn ( int logicalColumn ) const

Returns the visual column of the given logicalColumn.

QRect QTableWidget::visualItemRect ( const QTableWidgetItem * item ) const

Returns the rectangle on the viewport occupied by the item at item.

int QTableWidget::visualRow ( int logicalRow ) const

Returns the visual row of the given logicalRow.

Publicité

Best Of

Actualités les plus lues

Semaine
Mois
Année
  1. « Quelque chose ne va vraiment pas avec les développeurs "modernes" », un développeur à "l'ancienne" critique la multiplication des bibliothèques 103
  2. Pourquoi les programmeurs sont-ils moins payés que les gestionnaires de programmes ? Manquent-ils de pouvoir de négociation ? 56
  3. «Le projet de loi des droits du développeur» : quelles conditions doivent remplir les entreprises pour que le développeur puisse réussir ? 93
  4. Les développeurs détestent-ils les antivirus ? Un programmeur manifeste sa haine envers ces solutions de sécurité 32
  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 » 231
  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. « Quelque chose ne va vraiment pas avec les développeurs "modernes" », un développeur à "l'ancienne" critique la multiplication des bibliothèques 103
  7. 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
Page suivante

Le blog Digia au hasard

Logo

Créer des applications avec un style Metro avec Qt, exemples en QML et C++, un article de Digia Qt traduit par Thibaut Cuvelier

Le blog Digia est l'endroit privilégié pour la communication sur l'édition commerciale de Qt, où des réponses publiques sont apportées aux questions les plus posées au support. 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