2022-05-10 12:06:48 +02:00
|
|
|
// Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
2011-04-27 12:05:43 +02:00
|
|
|
|
|
|
|
#include "mymodel.h"
|
|
|
|
|
|
|
|
MyModel::MyModel(QObject *parent)
|
2018-10-20 21:48:28 +02:00
|
|
|
: QAbstractTableModel(parent)
|
2011-04-27 12:05:43 +02:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
//-------------------------------------------------------
|
|
|
|
int MyModel::rowCount(const QModelIndex & /*parent*/) const
|
|
|
|
{
|
|
|
|
return 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
//-------------------------------------------------------
|
|
|
|
int MyModel::columnCount(const QModelIndex & /*parent*/) const
|
|
|
|
{
|
|
|
|
return 3;
|
|
|
|
}
|
|
|
|
|
|
|
|
//-------------------------------------------------------
|
|
|
|
QVariant MyModel::data(const QModelIndex &index, int role) const
|
|
|
|
{
|
2018-10-20 21:48:28 +02:00
|
|
|
if (role == Qt::DisplayRole) {
|
2011-04-27 12:05:43 +02:00
|
|
|
return QString("Row%1, Column%2")
|
|
|
|
.arg(index.row() + 1)
|
|
|
|
.arg(index.column() +1);
|
|
|
|
}
|
|
|
|
return QVariant();
|
|
|
|
}
|
|
|
|
|
|
|
|
//! [quoting mymodel_c]
|
|
|
|
QVariant MyModel::headerData(int section, Qt::Orientation orientation, int role) const
|
|
|
|
{
|
2018-10-20 21:48:28 +02:00
|
|
|
if (role == Qt::DisplayRole && orientation == Qt::Horizontal) {
|
|
|
|
switch (section) {
|
|
|
|
case 0:
|
|
|
|
return QString("first");
|
|
|
|
case 1:
|
|
|
|
return QString("second");
|
|
|
|
case 2:
|
|
|
|
return QString("third");
|
2011-04-27 12:05:43 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return QVariant();
|
|
|
|
}
|
|
|
|
//! [quoting mymodel_c]
|