QMLを使用してリストから要素を表示したいだけですが、アイテムの役割は使用しません。例のために。表示するアイテムの名前を返す getName() メソッドを呼び出したい。
出来ますか?これを参照しても明確なものは何も見つかりませんでした。
以下に示すように、1 つの特別なロールを使用してアイテム全体を返すことができます。
template<typename T>
class List : public QAbstractListModel
{
public:
explicit List(const QString &itemRoleName, QObject *parent = 0)
: QAbstractListModel(parent)
{
QHash<int, QByteArray> roles;
roles[Qt::UserRole] = QByteArray(itemRoleName.toAscii());
setRoleNames(roles);
}
void insert(int where, T *item) {
Q_ASSERT(item);
if (!item) return;
// This is very important to prevent items to be garbage collected in JS!!!
QDeclarativeEngine::setObjectOwnership(item, QDeclarativeEngine::CppOwnership);
item->setParent(this);
beginInsertRows(QModelIndex(), where, where);
items_.insert(where, item);
endInsertRows();
}
public: // QAbstractItemModel
int rowCount(const QModelIndex &parent = QModelIndex()) const {
Q_UNUSED(parent);
return items_.count();
}
QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const {
if (index.row() < 0 || index.row() >= items_.count()) {
return QVariant();
}
if (Qt::UserRole == role) {
QObject *item = items_[index.row()];
return QVariant::fromValue(item);
}
return QVariant();
}
protected:
QList<T*> items_;
};
すべての挿入メソッドでQDeclarativeEngine::setObjectOwnershipを使用することを忘れないでください。そうしないと、 data メソッドから返されたすべてのオブジェクトが QML 側でガベージ コレクションされます。