if i have a class that contains a QList of listmodels (QList), how would i assign a model from that list to a listview in QML?
class code:
class TreeModel : public QAbstractItemModel { Q_OBJECT Q_PROPERTY(QQmlListProperty<ListModel> lists READ lists) public: enum AnimalRoles { TypeRole = Qt::UserRole + 1, }; explicit TreeModel(const QString &data, QObject *parent = 0); ~TreeModel(); QVariant data(const QModelIndex &index, int role) const Q_DECL_OVERRIDE; Qt::ItemFlags flags(const QModelIndex &index) const Q_DECL_OVERRIDE; QVariant headerData(int section, Qt::Orientation orientation, int role = Qt::DisplayRole) const Q_DECL_OVERRIDE; QModelIndex index(int row, int column, const QModelIndex &parent = QModelIndex()) const Q_DECL_OVERRIDE; QModelIndex parent(const QModelIndex &index) const Q_DECL_OVERRIDE; int rowCount(const QModelIndex &parent = QModelIndex()) const Q_DECL_OVERRIDE; int columnCount(const QModelIndex &parent = QModelIndex()) const Q_DECL_OVERRIDE; QStringList getGroups(); QStringList getFoldersByGroup(const QString &name); QStringList getFolderlistByGroupID(QStringList &name); void getFolders(); void populateFrontPage(); QQmlListProperty<ListModel> lists(){ return QQmlListProperty<ListModel>(this, foldermodels); } ******************************************** ListModel *groupmodel; QList<ListModel*> foldermodels; QList<ListModel*> filemodels; now how would i assign for example, foldermodels.at(0) to a listview in qml? i have tried stuff like:
ListView { id: folderlist model: treemodel.lists // treemodel.lists.at(0) // treemodel.lists[0] delegate: folderDelegate contentHeight: contentItem.childrenRect.height height: childrenRect.height anchors.left: parent.left anchors.right: parent.right clip: true } but i am getting errors like:
QMetaProperty::read: Unable to handle unregistered datatype 'QQmlListProperty<ListModel>' for property 'TreeModel::lists' QQmlExpression: Expression qrc:/main.qml:54:28 depends on non-NOTIFYable properties: TreeModel::lists QMetaProperty::read: Unable to handle unregistered datatype 'QQmlListProperty<ListModel>' for property 'TreeModel::lists' QQmlExpression: Expression qrc:/main.qml:54:28 depends on non-NOTIFYable properties: TreeModel::lists and yes i have registered the Treemodel class containing the QList.
i also know the QList is actually populated with the correct models because the view shows the items when i do it like this in main.cpp
TreeModel model(infile.readAll()); ListModel *foldermodel = model.foldermodels.at(1) // or (0) ctxt->setContextProperty("treemodel", &model); ctxt->setContextProperty("foldermodel", foldermodel); Thanks in advance for the help, i really apreciate it!!
more progress:
i added this line to my main.cpp
qmlRegisterType<QQmlListProperty<ListModel> >("ListMode",1,0,"listmod"); now i have 2 new errors:
C:\Qt\5.4\mingw491_32\include\QtQml\qqml.h:83: error: 'staticMetaObject' is not a member of 'QQmlListProperty<ListModel>' const char *className = T::staticMetaObject.className(); \ C:\Qt\5.4\mingw491_32\include\QtQml\qqml.h:244: error: 'staticMetaObject' is not a member of 'QQmlListProperty<ListModel>' uri, versionMajor, versionMinor, qmlName, &T::staticMetaObject,