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
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!
AD
- Akiv Doros
- Nov. 11, 2024, 2:58 p.m.
C ++ - Test 004. Pointers, Arrays and Loops
- Result:50points,
- Rating points-4
m
- molni99
- Oct. 26, 2024, 1:37 a.m.
C ++ - Test 004. Pointers, Arrays and Loops
- Result:80points,
- Rating points4
m
- molni99
- Oct. 26, 2024, 1:29 a.m.
C ++ - Test 004. Pointers, Arrays and Loops
- Result:20points,
- Rating points-10
Last comments
Django - Tutorial 055. How to write auto populate field functionality Freckles because of several brand names retin a, atralin buy generic priligy
QML - Tutorial 035. Using enumerations in QML without C ++ priligy cvs 24 Together with antibiotics such as amphotericin B 10, griseofulvin 11 and streptomycin 12, chloramphenicol 9 is in the World Health Organisation s List of Essential Medici…
Qt/C++ - Lesson 052. Customization Qt Audio player in the style of AIMP It decreases stress, supports hormone balance, and regulates and increases blood flow to the reproductive organs buy priligy online safe Promising data were reported in a PDX model re…
Heap sorting algorithm The role of raloxifene in preventing breast cancer priligy precio
PyQt5 - Lesson 006. Work with QTableWidget buy priligy 60 mg 53 have been reported by Javanovic Santa et al
Now discuss on the forum
добавить qlineseries в функции buy priligy senior brother Chu He, whom he had known for many years
Всё ещё разбираюсь с кешем. priligy walgreens levitra dulcolax carbs The third ring was found to be made up of ultra relativistic electrons, which are also present in both the outer and inner rings
IscanderCheOct. 31, 2024, 3:43 p.m.
Машина тьюринга // Начальное состояние 0 0, ,<,1 // Переход в состояние 1 при пустом символе 0,0,>,0 // Остаемся в состоянии 0, двигаясь вправо при встрече 0 0,1,>…
ИМ
Реализация навигации по разделам Спасибо Евгений!
Игорь МаксимовOct. 3, 2024, 4:05 a.m.
Потому, что Вы определили эту ссылку как константную.
Правильно будет убрать constтеперь ругается здесь
ошибка: binding 'const Ispol' to reference of type 'Ispol&' discards qualifiers
Ispol &Ispol = m_Ispol[index.row()];
^
Ну вот смотрите, у вас есть методы с const на конце и без const на конце. В зависимости от этого, они могут изменять данные, или не могут.
Спасибо.