Home | All Classes | Main Classes | Annotated | Grouped Classes | Functions | ![]() |
The QTableWidget class provides an item-based table view with a default model. More...
#include <QTableWidget>
Inherits QTableView.
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("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.
This property holds the number of columns in the table.
Access functions:
This property holds the number of rows in the table.
Access functions:
This property holds whether the items in the table can be sorted by clicking on the horizontal header.
Access functions:
Creates a new table view with the given parent.
Creates a new table view with the given rows and columns, and with the given parent.
Destroys this QTableWidget.
This signal is emitted when the widget is about to show a context menu. The menu is the menu about to be shown, and the item is the clicked item the context menu was called for.
See also QMenu::addAction().
Removes all items in the view.
This signal is emitted when a mouse button is clicked. The item may be 0 if the mouse was not clicked on an item. The button clicked is specified by button (see Qt::ButtonState).
Closes the persistent editor for item.
See also openPersistentEditor().
Returns the column for the item.
Returns a new QTableWidgetItem. This is called whenever the table widget creates a new item internally.
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.
Returns the column of the current item.
Returns the current item.
Returns the row of the current item.
This signal is emitted when a mouse button is double clicked. The item may be 0 if the mouse was not clicked on an item. The button clicked is specified by button (see Qt::ButtonState).
Scrolls the view if necessary to ensure that the item is visible.
Finds items that matches the text, using the criteria given in the flags (see QAbstractItemModel::MatchFlags).
Returns the horizontal header item for column column.
Inserts an empty column into the table at column.
Inserts an empty row into the table at row.
Returns true if the item is in the viewport, otherwise returns false.
Returns true if the item is selected, otherwise returns false.
Returns the item for the given row and column.
See also setItem().
This signal is emitted whenever the data of item has changed.
This signal is emitted when the mouse cursor enters an item. The item is the item entered and state specifies the mouse button and any modifiers pressed as the item was entered (see Qt::ButtonState). This signal is only emitted when mouseTracking is turned on, or when a mouse button is pressed while moving into an item.
This signal is emitted if keyTracking is turned on and a key was pressed. The item is the current item as the key was pressed, the key tells which key was pressed and state which modifier keys (see Qt::ButtonState).
Opens an editor for the give item. The editor remains open after editing.
See also closePersistentEditor().
This signal is emitted when a item has been pressed (mouse click and release). The item may be 0 if the mouse was not pressed on an item. The button clicked is specified by button (see Qt::ButtonState).
Removes the column column and all its items from the table.
Removes item item from the table.
Removes the row row and all its items from the table.
This signal is emitted when return has been pressed on an item.
Returns the row for the item.
Returns a list of all selected items.
This signal is emitted whenever the selection changes.
See also selectedItems() and isSelected().
Sets the current item to item.
Sets the horizontal header item for column column to item.
Sets the horizontal header labels using labels.
Sets the item for the given row and column to item.
See also item().
Selects or deselects item depending on select.
Sets the vertical header item for row row to item.
Sets the vertical header labels using labels.
Sorts all the rows in the table widget based on column and order.
Removes the item at row and column from the table without deleting it.
Returns the vertical header item for row row.
Returns the visual column of the given item.
Returns a pointer to the item at the visualRow and visualColumn in the view.
Returns the visual row of the given item.
Copyright © 2004 Trolltech. | Trademarks | Qt 4.0.0-tp2 |