alex_lip
alex_lipMarch 1, 2018, 7:25 a.m.

Редактирование элемента QAbstractListModel

Есть модель, в которой 3 поля. 2 поля staffid, fio - не редактируются, а одно - chk - хочется редактировать через QML

Модель пытаюсь реализовать так

#ifndef MODEL_ISPOL_H
#define MODEL_ISPOL_H
#include <QAbstractListModel>
#include <QStringList>

//![0]
class Ispol
{
public:
    Ispol(const QString &staffid, const QString &fio, qint8 &chk);
//![0]

    QString staffid() const;
    QString fio() const;
    qint8 chk();

public:
    QString m_staffid;
    QString m_fio;
    qint8 m_chk;

//![1]
};

class IspolModel : public QAbstractListModel
{
    Q_OBJECT
public:
    enum IspolRoles {
        staffidRole = Qt::UserRole + 1,
        fioRole, chkRole
    };
    IspolModel(QObject *parent = 0);
//![1]

    virtual bool setData(const QModelIndex &index, const QVariant &value, int role = Qt::EditRole);
  //  virtual Qt::ItemFlags flags(const QModelIndex &index) const;

    void addIspol(const Ispol &Ispol);
    int rowCount(const QModelIndex & parent = QModelIndex()) const;
    QVariant data(const QModelIndex & index, int role = Qt::DisplayRole) const;
    void clearIspol();

protected:
    QHash<int, QByteArray> roleNames() const;
private:
    QList<Ispol> m_Ispol;
//![2]
};
//![2]

#endif // MODEL_ISPOL_H

#include "model_ispol.h"

Ispol::Ispol(const QString &staffid, const QString &fio,  qint8 &chk)
: m_staffid(staffid), m_fio(fio), m_chk(chk)
{
}

QString Ispol::staffid() const
{
    return m_staffid;
}
QString Ispol::fio() const
{
    return m_fio;
}

qint8 Ispol::chk()
{
    return m_chk;
}

IspolModel::IspolModel(QObject *parent)
    : QAbstractListModel(parent)
{
}

void IspolModel::addIspol(const Ispol &Ispol)
{
    beginInsertRows(QModelIndex(), rowCount(), rowCount());
    m_Ispol << Ispol;
    endInsertRows();
}

void IspolModel::clearIspol()
{
    beginRemoveRows(QModelIndex(), 0, rowCount()-1);
    while (!m_Ispol.isEmpty())
    {
        m_Ispol.removeLast();
    }
    endRemoveRows();
}

int IspolModel::rowCount(const QModelIndex & parent) const {
    Q_UNUSED(parent);
    return m_Ispol.count();
}


bool IspolModel::setData(const QModelIndex &index, const QVariant &value, int role)
{
    if (!index.isValid()) {
        return false;
    }
const Ispol &Ispol = m_Ispol[index.row()];
    switch (role) {
    case staffidRole:
        return false;   // This property can not be set
    case fioRole:
        return false;   // This property can not be set

    case chkRole:
        Ispol.m_chk = value.toInt();
        break;
        default:
        return false;
    }

    emit dataChanged(index, index, QVector<int>() << role);

    return true;
}

//Qt::ItemFlags IspolModel::flags(const QModelIndex &index) const
//{
//    if (!index.isValid())
//        return Qt::ItemIsEnabled;

//    return QAbstractListModel::flags(index) | Qt::ItemIsEditable;
//}


QVariant IspolModel::data(const QModelIndex & index, int role) const {
    if (index.row() < 0 || index.row() >= m_Ispol.count())
        return QVariant();

    const Ispol &Ispol = m_Ispol[index.row()];
 if (role == staffidRole)
        return Ispol.staffid();
  else if (role == fioRole)
        return Ispol.fio();
 else if (role == chkRole)
       return Ispol.chk();
    return QVariant();
}

//![0]
QHash<int, QByteArray> IspolModel::roleNames() const {
    QHash<int, QByteArray> roles;
    roles[staffidRole] = "staffid";
    roles[fioRole] = "fio";
    roles[chkRole] = "chk";
    return roles;
}
//![0]

Когда все было только чтение - все работало. Я попытался переопределить
bool IspolModel::setData(const QModelIndex &index, const QVariant &value, int role)
{
    if (!index.isValid()) {
        return false;
    }
const Ispol &Ispol = m_Ispol[index.row()];
    switch (role) {
    case staffidRole:
        return false;   // This property can not be set
    case fioRole:
        return false;   // This property can not be set

    case chkRole:
        Ispol.m_chk = value.toInt();
        break;
        default:
        return false;
    }

Ругается что 'Ispol::m_chk' in read-only object    Ispol.m_chk = value.toInt(); и
passing 'const Ispol' as 'this' argument discards qualifiers [-fpermissive] return Ispol.chk();
in call to 'qint8 Ispol::chk()'qint8 Ispol::chk()




We recommend hosting TIMEWEB
We recommend hosting TIMEWEB
Stable hosting, on which the social network EVILEG is located. For projects on Django we recommend VDS hosting.

Do you like it? Share on social networks!

4
Evgenii Legotckoi
  • March 1, 2018, 7:28 a.m.

Потому, что Вы определили эту ссылку как константную.

const Ispol &Ispol
Правильно будет убрать const
Ispol &Ispol
Подробнее о константах
    alex_lip
    • March 1, 2018, 7:58 a.m.

    теперь ругается здесь

    QVariant IspolModel::data(const QModelIndex & index, int role) const {
        if (index.row() < 0 || index.row() >= m_Ispol.count())
            return QVariant();
    
         Ispol &Ispol = m_Ispol[index.row()];
     if (role == staffidRole)
            return Ispol.staffid();
      else if (role == fioRole)
            return Ispol.fio();
     else if (role == chkRole)
           return Ispol.chk();
        return QVariant();
    }

    ошибка: binding 'const Ispol' to reference of type 'Ispol&' discards qualifiers
    Ispol &Ispol = m_Ispol[index.row()];
    ^




      Evgenii Legotckoi
      • March 1, 2018, 8:05 a.m.

      Ну вот смотрите, у вас есть методы с const на конце и без const на конце. В зависимости от этого, они могут изменять данные, или не могут.

      соответсвенно, если есть в методе const на конце, то некоторые переменные потребуют const, внутри методов, а некоторые нет.

      Полагаю, что в setData вам не нужен const, а в data нужен.
        alex_lip
        • March 1, 2018, 8:06 a.m.

        Спасибо.

          Comments

          Only authorized users can post comments.
          Please, Log in or Sign up
          d
          • dsfs
          • April 26, 2024, 2:56 p.m.

          C ++ - Test 004. Pointers, Arrays and Loops

          • Result:80points,
          • Rating points4
          d
          • dsfs
          • April 26, 2024, 2:45 p.m.

          C++ - Test 002. Constants

          • Result:50points,
          • Rating points-4
          d
          • dsfs
          • April 26, 2024, 2:35 p.m.

          C++ - Test 001. The first program and data types

          • Result:73points,
          • Rating points1
          Last comments
          k
          kmssrFeb. 9, 2024, 5:43 a.m.
          Qt Linux - Lesson 001. Autorun Qt application under Linux как сделать автозапуск для флэтпака, который не даёт создавать файлы в ~/.config - вот это вопрос ))
          Qt WinAPI - Lesson 007. Working with ICMP Ping in Qt Без строки #include <QRegularExpressionValidator> в заголовочном файле не работает валидатор.
          EVA
          EVADec. 25, 2023, 9:30 p.m.
          Boost - static linking in CMake project under Windows Ошибка LNK1104 часто возникает, когда компоновщик не может найти или открыть файл библиотеки. В вашем случае, это файл libboost_locale-vc142-mt-gd-x64-1_74.lib из библиотеки Boost для C+…
          J
          JonnyJoDec. 25, 2023, 7:38 p.m.
          Boost - static linking in CMake project under Windows Сделал всё по-как у вас, но выдаёт ошибку [build] LINK : fatal error LNK1104: не удается открыть файл "libboost_locale-vc142-mt-gd-x64-1_74.lib" Хоть убей, не могу понять в чём дел…
          G
          GvozdikDec. 19, 2023, 8:01 a.m.
          Qt/C++ - Lesson 056. Connecting the Boost library in Qt for MinGW and MSVC compilers Для решения твой проблемы добавь в файл .pro строчку "LIBS += -lws2_32" она решит проблему , лично мне помогло.
          Now discuss on the forum
          G
          GarApril 22, 2024, 3:46 p.m.
          Clipboard Как скопировать окно целиком в clipb?
          DA
          Dr Gangil AcademicsApril 20, 2024, 5:45 p.m.
          Unlock Your Aesthetic Potential: Explore MSC in Facial Aesthetics and Cosmetology in India Embark on a transformative journey with an msc in facial aesthetics and cosmetology in india . Delve into the intricate world of beauty and rejuvenation, guided by expert faculty and …
          a
          a_vlasovApril 14, 2024, 4:41 p.m.
          Мобильное приложение на C++Qt и бэкенд к нему на Django Rest Framework Евгений, добрый день! Такой вопрос. Верно ли следующее утверждение: Любое Android-приложение, написанное на Java/Kotlin чисто теоретически (пусть и с большими трудностями) можно написать и на C+…
          Павел Дорофеев
          Павел ДорофеевApril 14, 2024, 12:35 p.m.
          QTableWidget с 2 заголовками Вот тут есть кастомный QTableView с многорядностью проект поддерживается, обращайтесь
          f
          fastrexApril 4, 2024, 2:47 p.m.
          Вернуть старое поведение QComboBox, не менять индекс при resetModel Добрый день! У нас много проектов в которых используется QComboBox, в версии 5.5.1, когда модель испускает сигнал resetModel, currentIndex не менялся. В версии 5.15 при resetModel происходит try…

          Follow us in social networks