使用 TableView 作为 ListView-delegate
Posted
技术标签:
【中文标题】使用 TableView 作为 ListView-delegate【英文标题】:Using TableView as ListView-delegate 【发布时间】:2015-08-24 11:42:32 【问题描述】:我有一个model
,其中包含多个QStandardItemModels
。现在我想创建一个视图,为每个QStandardItemModel
显示一个TableView
。
我的想法是有一个 ListView
有一个 TableView
作为代表,像这样:
ListView
id: myListView
anchors
fill: parent
margins: 5
model: testModel
delegate: CompareDelegate
在CompareDelegate.qml
:
Item
id: base
width: 500
height: 300
TableView
anchors.fill: parent
如何让委托中的TableView
在ListView
的模型中使用适当的QStandardItemModel
?
我希望这个问题有点清楚。
提前致谢。
【问题讨论】:
【参考方案1】:有趣的用例......我仍然不确定这是否是一个好主意,并且想知道是否有更好的方法来做到这一点,但我想不出它不好的原因,所以我出于好奇尝试了它:
main.cpp
#include <QApplication>
#include <QtQml>
#include <QtWidgets>
class IndividualModel : public QStandardItemModel
public:
IndividualModel(QObject* parent = 0) :
QStandardItemModel(4, 2, parent)
for (int row = 0; row < 4; ++row)
QStandardItem *item0 = new QStandardItem;
item0->setData(QString("row %1, column 0").arg(row), TitleRole);
setItem(row, 0, item0);
QStandardItem *item1 = new QStandardItem;
item1->setData(QString("row %1, column 1").arg(row), AuthorRole);
setItem(row, 1, item1);
enum
TitleRole = Qt::UserRole,
AuthorRole
;
QHash<int, QByteArray> roleNames() const Q_DECL_OVERRIDE
QHash<int, QByteArray> names;
names[TitleRole] = "title";
names[AuthorRole] = "author";
return names;
;
class CompositeModel : public QAbstractItemModel
public:
CompositeModel()
for (int i = 0; i < 3; ++i)
QStandardItemModel *model = new IndividualModel(this);
mModels.append(model);
enum
ModelRole = Qt::UserRole
;
QVariant data(const QModelIndex &index, int role) const Q_DECL_OVERRIDE
if (!index.isValid())
return QVariant();
if (role != ModelRole)
return QVariant();
return QVariant::fromValue(mModels.at(index.row()));
QModelIndex index(int row, int column, const QModelIndex &parent = QModelIndex()) const Q_DECL_OVERRIDE
if (!hasIndex(row, column, parent))
return QModelIndex();
return createIndex(row, column);
QModelIndex parent(const QModelIndex &) const Q_DECL_OVERRIDE
return QModelIndex();
int rowCount(const QModelIndex & = QModelIndex()) const Q_DECL_OVERRIDE
return mModels.size();
int columnCount(const QModelIndex & = QModelIndex()) const Q_DECL_OVERRIDE
return 1;
QHash<int, QByteArray> roleNames() const Q_DECL_OVERRIDE
QHash<int, QByteArray> names;
names[ModelRole] = "individualModel";
return names;
private:
Q_DISABLE_COPY(CompositeModel)
QVector<QStandardItemModel*> mModels;
;
int main(int argc, char *argv[])
QApplication app(argc, argv);
QQmlApplicationEngine engine;
CompositeModel compositeModel;
engine.rootContext()->setContextProperty("compositeModel", QVariant::fromValue(&compositeModel));
engine.load(QUrl(QStringLiteral("qrc:/main.qml")));
return app.exec();
main.qml
import QtQuick 2.0
import QtQuick.Window 2.0
import QtQuick.Controls 1.0
Window
visible: true
width: 300
height: 600
ListView
anchors.fill: parent
model: compositeModel
delegate: TableView
model: individualModel
TableViewColumn
role: "title"
title: "Title"
width: 100
TableViewColumn
role: "author"
title: "Author"
width: 200
这个工作,但是...它在退出时崩溃。 :)
我在使用 Creator 调试时无法重现它,所以我只能在命令行上使用 gdb
手动获取堆栈跟踪,我不太熟悉(一直使用IDE 中的调试器 :))。在访问某些属性时,崩溃发生在 QML 的某个地方。但是,我花了太多时间没有发布答案,我认为它仍然有用。也许某个善良的灵魂会发现问题并编辑我的帖子。 :)
【讨论】:
这是一个很好的方法,非常感谢!此外,它不会在我的上下文中崩溃。以上是关于使用 TableView 作为 ListView-delegate的主要内容,如果未能解决你的问题,请参考以下文章
Xamarin Forms - 如何让 TableView 和 ListView 扩展到 iPhone X 安全区域?
如何使用 JDBC 在 ListView 或 TableView 中显示来自 SQL Server 的数据
cocos中listview,tableview哪个更好一点
如何在 ListView 或 TableView 中显示来自 SQL Server 的数据