Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to set data inside a QAbstractTableModel

I need to implement a table with Qt.

I believe I'll be suing a QAbstractTableModel, with a QTableView using this model.

I understand I'll have to edit the rowCount(), columnCount(), and data() functions of the model.

However, I don't understand how to exactly set the data inside the model, so that data() function can retrieve it..

Is the setData() function provided for this purpose? I have seen it takes EditRole as its parameter, which I don't want, as I don't want my table to be editable.

So, how do I "set" data inside the model, or have data for the model to get at, using data() function?

Also, how is the data() function called, i.e., who calls it and where would it need to be called?

Please help me with this.

Thanks.

like image 987
user1173240 Avatar asked Jan 07 '13 03:01

user1173240


People also ask

What is QAbstractTableModel?

QAbstractTableModel provides a standard interface for models that represent their data as a two-dimensional array of items. It is not used directly, but must be subclassed.

What is QAbstractItemModel?

QAbstractItemModel::index takes row, column and parent of the supposed model item and returns QModelIndex corresponding to it. Later on the view might use that returned QModelIndex object to call, for example, the data method of your model in order to get some actual data to display.

What is QModelIndex?

The QModelIndex class is used to locate data in a data model.


2 Answers

How the actual data is kept in memory, generated or queried from a data store is completely up to you. If it's static data, you can use the Qt container classes or custom data structures.

You only need to reimplement the setData() method for editable models.

There are 4 methods you need to implement in a non-editable QAbstractTableModel subclass:

  • int rowCount()
  • int columnCount()
  • QVariant headerData(int section, Qt::Orientation orientation, int role = Qt::DisplayRole )
  • QVariant data(const QModelIndex & index, int role = Qt::DisplayRole)

These methods are called from the view, usually a QTableView instance. The first two methods should return the dimensions of the table. For example, if rowCount() returns 10 and columnCount() returns 4, the view will invoke the data() method 40 times (once for each cell) asking for the actual data in your model's internal data structures.

As an example suppose you have implemented a custom slot retrieveDataFromMarsCuriosity() in your model. This slot populates a data structure and is connected to a QPushButton instance, so you get fresh data by clicking a button. Now, you need to let the view know when the data is being changed so it can update properly. That's why you need to emit the beginRemoveRows(), endRemoveRows(), beginInsertRows(), endInsertRows() and its column counterparts.

The Qt Documentation has everything you need to know about this.

like image 97
Diego Schulz Avatar answered Oct 15 '22 10:10

Diego Schulz


You don't need to use setData(...). Instead, you need to subclass QAbstractTableModel in such a way that its methods rowCount(), columnCount(), data(index) and potentially headerData(section, horizontalOrVertical) return the data you wish to display. Here's an example based on PyQt5:

from PyQt5.QtWidgets import *
from PyQt5.QtCore import *

headers = ["Scientist name", "Birthdate", "Contribution"]
rows =    [("Newton", "1643-01-04", "Classical mechanics"),
           ("Einstein", "1879-03-14", "Relativity"),
           ("Darwin", "1809-02-12", "Evolution")]

class TableModel(QAbstractTableModel):
    def rowCount(self, parent):
        # How many rows are there?
        return len(rows)
    def columnCount(self, parent):
        # How many columns?
        return len(headers)
    def data(self, index, role):
        if role != Qt.DisplayRole:
            return QVariant()
        # What's the value of the cell at the given index?
        return rows[index.row()][index.column()]
    def headerData(self, section, orientation, role):
        if role != Qt.DisplayRole or orientation != Qt.Horizontal:
            return QVariant()
        # What's the header for the given column?
        return headers[section]

app = QApplication([])
model = TableModel()
view = QTableView()
view.setModel(model)
view.show()
app.exec_()

It's taken from this GitHub repository and displays the following table:

QAbstractTableModel example

like image 33
Michael Herrmann Avatar answered Oct 15 '22 08:10

Michael Herrmann