Как я могу получить доступ к роли QAbstractListModel, которая является массивом?

Возможно, мой вопрос не ясен, но я надеюсь, что с помощью кода моя проблема станет более понятной.
Я создал эти две структуры и использую их в классе FormModel:

struct Tile
{
QString name;
QString color;
};  Q_DECLARE_METATYPE(Tile)

struct Form
{
QString nameForm;
Tile grid[9] ;   // i want for each form 4 tile that in qml are 4 rectangles
}; Q_DECLARE_METATYPE(Form)class FormModel : public QAbstractListModel
{
Q_OBJECT
public:
explicit FormModel(QObject *parent = 0);

~FormModel();
enum dashBoardRoles {

NameForm=Qt::UserRole+1,
Grid,

};

int rowCount(const QModelIndex &parent=QModelIndex()) const;
QVariant data(const QModelIndex &index, int role) const;
Q_INVOKABLE bool insertRows(int row, int count, const QModelIndex &parent = QModelIndex()) Q_DECL_OVERRIDE;
Q_INVOKABLE bool removeRows(int row, int count, const QModelIndex &parent = QModelIndex()) Q_DECL_OVERRIDE;
QHash<int, QByteArray> roleNames() const;

signals:

public slots:

private:

QList<Form> dashboard;};

Это метод данных QAbstractListModel:

QVariant FormModel::data(const QModelIndex &index, int role) const
{
if(index.row()>0 && index.row() >= dashboard.count())
return QVariant();
Form dashTemp = dashboard[index.row()];

if(role== NameForm)
return dashTemp.nameForm;
if(role== Grid)
{
QVariant gridVect = QVariant::fromValue(dashTemp.grid);
return gridVect;
}
return QVariant();
}

QHash<int, QByteArray> FormModel::roleNames() const
{
QHash <int,QByteArray> roles;
roles [NameForm]="nameForm";
roles [Grid]="grid";

return roles;
}

это код qml:

Window {
id:app
visible: true
width: 480
height: 800
title: qsTr("Hello World")

ListView {

model: myForms  // i have defined the name in main.cpp
anchors.fill: parent

delegate:  ColumnLayout{
spacing: 30
// nome Form
Text{

text: nameForm
font.pointSize:20
color: "red"font.capitalization: Font.Capitalize

}
// grigla mattonelle
GridView {
id:grid

width: 300; height: 300
cellWidth: 100 ; cellHeight: 100
model: 9
delegate: Item{
width : grid.cellWidth
height: grid.cellHeight
Rectangle{
anchors.centerIn: parent
width:parent.width-10
height: parent.height-10
color: grid[index].color
}

}
}
}
}

}

Как я могу получить цвет по данным ролевой сетки? что в qml я звоню с сеткой [index] .color ….

0

Решение

QML не распознает структуру напрямую, для этого вы должны использовать Q_GADGET с Q_PROPERTYтакже желательно использовать QVariantList вместо массива, поскольку QML может привести его напрямую. Все вышеизложенное я реализовал в следующем коде:

formmodel.h

#ifndef FORMMODEL_H
#define FORMMODEL_H

#include <QAbstractListModel>

struct Tile
{
Q_GADGET
Q_PROPERTY(QString name MEMBER name)
Q_PROPERTY(QString color MEMBER color)
public:
QString name;
QString color;
Tile(const QString& name="", const QString& color=""){
this->name = name;
this->color = color;
}
};
Q_DECLARE_METATYPE(Tile)

struct Form
{
Q_GADGET
Q_PROPERTY(QString nameForm MEMBER nameForm)
Q_PROPERTY(QVariantList grid MEMBER grid)
public:
Form(){
}
QString nameForm;
QVariantList grid;
};
Q_DECLARE_METATYPE(Form)

class FormModel : public QAbstractListModel
{
enum dashBoardRoles {
NameForm=Qt::UserRole+1,
Grid
};
public:
FormModel(QObject *parent = Q_NULLPTR);
QHash<int, QByteArray> roleNames() const;
int rowCount(const QModelIndex &parent=QModelIndex()) const;
QVariant data(const QModelIndex &index, int role=Qt::DisplayRole) const;
private:
QList<Form> dashboard;
};

#endif // FORMMODEL_H

formmodel.cpp

#include "formmodel.h"
#include <QColor>

FormModel::FormModel(QObject *parent):QAbstractListModel(parent)
{
for(int i=0; i<10; i++){
Form form;
form.nameForm = QString("name %1").arg(i);
for(int j=0; j<9; j++){
QColor color(qrand() % 256, qrand() % 256, qrand() % 256);
Tile tile{QString("name %1 %2").arg(i).arg(j), color.name()};
form.grid<< QVariant::fromValue(tile);
}
dashboard<< form;
}
}QHash<int, QByteArray> FormModel::roleNames() const
{
QHash <int,QByteArray> roles;
roles [NameForm]="nameForm";
roles [Grid]="grid";
return roles;
}

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

QVariant FormModel::data(const QModelIndex &index, int role) const
{
if(index.row()<0 && index.row() >= dashboard.count())
return QVariant();
Form dashTemp = dashboard[index.row()];
if(role== NameForm)
return dashTemp.nameForm;
else if(role== Grid)
return dashTemp.grid;
return QVariant();
}

main.qml

import QtQuick 2.9
import QtQuick.Window 2.2
import QtQuick.Layouts 1.3Window {
id:app
visible: true
width: 480
height: 800
title: qsTr("Hello World")

ListView {

model: myForms
anchors.fill: parent
delegate:  ColumnLayout{
spacing: 30
Text{
text: nameForm
font.pointSize:20
color: "red"font.capitalization: Font.Capitalize
}
GridView {
id:gr
width: 300; height: 300
cellWidth: 100 ; cellHeight: 100
model: grid // grid.length
delegate: Item{
width : gr.cellWidth
height: gr.cellHeight
Rectangle{
anchors.centerIn: parent
width:parent.width-10
height: parent.height-10
color: grid[index].color
Text {
id: name
anchors.fill: parent
text: grid[index].name
}
}

}

}
}
}

}

Полный пример можно найти в следующем ссылка на сайт.

введите описание изображения здесь

0

Другие решения

Других решений пока нет …

По вопросам рекламы [email protected]