// Copyright (C) 2016 Dmitrii Kosarev aka Kakadu // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only #ifndef STRINGMODEL_H #define STRINGMODEL_H #include #include #include class StringModel : public QAbstractItemModel { Q_OBJECT QVector items; QHash roles; QString name; public: explicit StringModel(const QString& name) : QAbstractItemModel(), name(name) { roles.insert(555, "text"); } void drop(int count) { beginRemoveRows(QModelIndex(), 0, count-1); for (int i=0; i roleNames() const override { return roles; } int columnCount(const QModelIndex &) const override { return 1; } bool hasChildren(const QModelIndex &) const override { return rowCount(QModelIndex()) > 0; } QModelIndex index(int row, int column, const QModelIndex &parent) const override { Q_UNUSED(column); if (row>=0 && row=items.size())) return QVariant(QMetaType(QMetaType::UnknownType)); switch (role) { case Qt::DisplayRole: case 555: return QVariant::fromValue(items.at(row)); default: return QVariant(); } } }; #endif // STRINGMODEL_H