我有一个 QAbstractListModel 的子类,并将这个模型子类附加到 GridView。当我从子类中删除行时,GridView 会更新,但是当我在模型中插入行时,GridView 不会更新。我已经实现了 removeR
我有一个非常简单的 QAbstractListModel 子类,并附上了一个 QML GridView。我在 GUI 上有两个按钮添加/删除。按下 Add 将字符串添加到模型和 gui 更新,按下 remove 从模型和 gui 更新中删除最后一个字符串。我的问题是当我添加只插入一行时,当我删除时,GUI 上没有任何反应。给出的是我的模型子类和 QML 文件的实现。
名称模型.cpp
NamesModel::NamesModel(QObject *parent) :
QAbstractListModel(parent)
{
QHash<int, QByteArray> roles;
roles[Qt::UserRole + 1] = "name";
setRoleNames(roles);
}
int NamesModel::rowCount(const QModelIndex &parent) const
{
return this->namesList.count();
}
QVariant NamesModel::data(const QModelIndex &index, int role) const
{
if (!index.isValid())
return QVariant();
switch(role) {
case (Qt::UserRole + 1):
return this->namesList.at(index.row());
default:
return QVariant();
}
return QVariant();
}
bool NamesModel::insertRow(int row, const QModelIndex &parent)
{
if ( parent.isValid() )
return false;
qDebug() << "Row = " << row;
beginInsertRows(parent, row, row);
this->namesList.insert(row, ("Hello World " + QString("%1").arg(row)));
endInsertRows();
return true;
}
bool NamesModel::insertRows(int row, int count, const QModelIndex &parent)
{
int existing_count = this->namesList.count();
beginInsertRows(parent, row, count);
for ( int i = existing_count; i < (existing_count + count); i++ )
this->namesList.insert(i, QString("Multi Hello World = %1").arg(i));
endInsertRows();
return true;
}
bool NamesModel::removeRows(int row, int count, const QModelIndex &parent)
{
int existing_count = this->namesList.count();
beginRemoveRows(parent, row, count);
for ( int i = (existing_count + count); i < existing_count; i-- )
this->namesList.removeAt(i);
endRemoveRows();
return true;
}
bool NamesModel::removeRow(int row, const QModelIndex &parent)
{
beginRemoveRows(parent, row, row);
this->namesList.removeAt(row);
endRemoveRows();
}
void NamesModel::addName()
{
int index = this->namesList.count();
//insertRow(index, QModelIndex());
insertRows(index, 5, QModelIndex());
emit layoutChanged();
emit dataChanged(this->index(index), this->index(this->namesList.count()));
}
void NamesModel::removeName()
{
int index = this->namesList.count();
//removeRow(index, QModelIndex()/*this->index(this->namesList.count())*/);
removeRows(index, 5, QModelIndex());
emit layoutChanged();
emit dataChanged(this->index(index), this->index(index + 5));
}
main.qml
Rectangle {
width: 360
height: 360
Text {
height: 20
width: 360/2;
text: "Add Name"
MouseArea {
anchors.fill: parent
onClicked: {
names.addName();
console.log("Add Name");
}
}
}
Text {
height: 20;
width: 360/2;
x: 360/2
text: "Remove Name";
MouseArea {
anchors.fill: parent
onClicked: {
names.removeName();
console.log("Remove Name");
}
}
}
Component {
id: gridDelegate
Text {
width: 19; // These are the dimensions of icon image.
height: 16
font.pixelSize: 12
text: name;
}
}
GridView {
y: 21
boundsBehavior: Flickable.StopAtBounds
focus: true
model: names;
delegate: gridDelegate
}
}
我正在调用 beginInsertRows / endInsertRows 和 beginRemoveRows / endRemoveRows 但它似乎不起作用。正如在其他类似线程上所建议的那样,我在开始 / 结束 InserRows 之后也调用了 layoutChanged / dataChanged 但没有效果。
实际上,我的实际项目几乎有同样的问题。我创建了这个应用程序来测试这个 beginInsertRows 等有什么问题。
任何帮助表示赞赏。
问候法鲁克·阿尔沙德。