- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的问题是,如何将自定义对象指定为从 QAbstractListModel
派生的模型中的角色所以当在 ListView
中可视化它时我可以访问它的成员变量。这里有一个例子是一些简单的代码示例:
这是代表我的自定义对象的类:
class MyCustomObject {
public:
MyCustomObject(Qstring name, Qstring type);
QString getName();
QString getType();
private:
QString name;
QString type;
};
data()
我的
MyModel
的函数现在看起来像(但它不工作)源自
QAbsractListModel
:
QVariant MyModel::data(const QModelIndex &index, int role) const {
if (index.row() < 0 || index.row() > m_atoms.count()) {
//if (!index.isValid()) {
return QVariant();
}
const MyData &data = m_data[index.row()];
if(role == SomeRole) {
return data.someString()
}
else if (role == MyCustomRole) {
return data.myCustomObject; // How can I do this?
}
return QVariant();
}
MyModel
中的角色名称:
QHash<int, QByteArray> AtomModel::roleNames() const {
QHash<int, QByteArray> roles;
roles[SomeRole] = "someRole";
roles[MyCustomRole] = "myCustomRole";
return roles;
}
ListView
看起来像 QML 代码中的示例,我想如何访问
MyCustomObject
委托(delegate)中的成员变量:
ListView {
width: 400
height: 400
model: myModel
delegate: Text {
text: "Type: " + myCustomRole.getType() + ", Name: " + myCustomRole.getName() + ", some string: " someRole
}
}
MyCustomObject
下添加 Q_DECLARE_METATYPE 时我收到以下错误:
call to implicitly-deleted copy constructor of `MyCustomObject`
in instantiation of member function 'QtMetaTypePrivate::QMetaTypeFunctionHelper<MyCustomObject, true>::Construct' requested here
in instantiation of function template specialization 'qRegisterNormalizedMetaType<MyCustomObject>' requested here QtMetaTypePrivate::QMetaTypeFunctionHelper<T>::Construct,
return qRegisterNormalizedMetaType<T>(normalizedTypeName, dummy, defined);
in instantiation of function template specialization 'qRegisterMetaType<MyCustomObject>' requested here
Q_DECLARE_METATYPE(MyCustomObject)
expanded from macro 'Q_DECLARE_METATYPE'
#define Q_DECLARE_METATYPE(TYPE) Q_DECLARE_METATYPE_IMPL(TYPE)
expanded from macro 'Q_DECLARE_METATYPE_IMPL'
const int newId = qRegisterMetaType< TYPE >(#TYPE,
copy constructor of 'MyCustomObject' is implicitly deleted because base class 'QObject' has a deleted copy constructor
class MyCustomObject : public QObject
'QObject' has been explicitly marked deleted here Q_DISABLE_COPY(QObject)
expanded from macro 'Q_DISABLE_COPY'
Class(const Class &) Q_DECL_EQ_DELETE;\
TypeError: Property 'getType' of object QVariant(MyCustomObject) is not a function
Q_INVOKABLE
在
getType()
前面方法,我也推导出
MyCustomObject
来自
public QObject
的类(class).我已添加
Q_DECLARE_METATYPE
在我的
MyCustomObject
底部头文件。在
MyCustomObject
的构造函数中我调用
qRegisterMetaType<MyCustomObject>("MyCustomObject")
在我的
main
我也是这样注册的
qmlRegisterType<MyCustomObject>("com.test.mycustomobject", 1, 0, "MyCustomObject")
MyCustomObject
类现在看起来像:
class MyCustomObject : public QObject {
public:
MyCustomObject();
MyCustomObject(Qstring name, Qstring type);
MyCustomObject(const MyCustomObject& obj);
~MyCustomObject();
Q_INVOKABLE QString getName();
Q_INVOKABLE QString getType();
private:
QString name;
QString type;
};
Q_DECLARE_METATYPE(MyCustomObject)
data()
函数看起来像我的
MyModel
现在源自
QAbsractListModel
:
QVariant MyModel::data(const QModelIndex &index, int role) const {
if (index.row() < 0 || index.row() > m_atoms.count()) {
//if (!index.isValid()) {
return QVariant();
}
const MyData &data = m_data[index.row()];
if(role == SomeRole) {
return data.someString()
}
else if (role == MyCustomRole) {
QVariant var; // this is the part, which has changed
var.setValue(data.myCustomObject);
return var;
}
return QVariant();
}
最佳答案
首先,您需要为 Qt 元类型系统声明您的自定义对象。您应该使用 Q_DECLARE_METATYPE
为此的宏。此外,您可能需要使用 qRegisterMetaType
功能。然后您应该注册您的对象以将其与 QML 一起使用。您应该使用 qmlRegisterType
为此发挥作用。
还要确保您使用 Q_INVOKABLE
为您的对象方法。
关于qml - 如何将自定义对象定义为 QAbstractListModel 中的角色?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35858332/
我想测试我已经实现的一些 QAbstractListModels,使用 Qt 实验室的 ModelTest 还是使用 QTestLib 进行我自己的单元测试更好。也有人可以指出 ModelTest 实
我正在使用 QAbstractListModel 将数据公开给 QML ListView。除此之外还使用了 QML SectionScroller,它使用 get 和 data 函数。 滚动一段时间后
我在尝试使用 Qt/QML 为我的应用程序开发数据模型时遇到问题。我已经使用了一个 QAbstractListModel 来将海关数据模型从 C++ 传递到 QML,它对简单模型(例如基于字符串和 b
我从 QAbstractListModel 派生了一个类 FeedItemViewModel。我已经实现了一种在列表模型中添加项目的方法,但我不知道如何更新具有特定 ID 的项目。 代码如下: voi
我有一个 QAbstractListModel 的子类,并用 GridView 附加了这个模型子类。当我从我的子类中删除行时,GridView 会更新,但是当我在模型中插入行时,GridView 不会
我有一个从 QAbstractListModel 派生的自定义模型,它暴露给 QML。我需要支持添加新项目和删除现有项目的操作。虽然插入操作没有任何问题,但删除操作会导致应用程序在调用 endRemo
在已经实例化的 QAbstractListModel 子类中,如何在每列中添加包含数据的行,并让关联的 QListView 显示新行? 似乎唯一的方法是在我的模型中重新实现 insertRow 和 s
我试图了解人们如何选择使用 QAbstractListModel 还是 QObject 和 QQmlListProperty。 鉴于 QQmlListProperty 处理必须使用 QAbstract
我正在尝试创建一个 QAbstractListView 以与 QComboBox 一起使用,该 QComboBox 维护其包含的项目的排序列表。我在下面提供了一些示例代码来说明我的问题。当我更新列表中
我正在尝试实现 QAbstractListModel 类以显示几个类似的小部件。以下代码显示了我的问题: import sys from PyQt4 import QtCore from PyQt4
我的问题是,如何将自定义对象指定为从 QAbstractListModel 派生的模型中的角色所以当在 ListView 中可视化它时我可以访问它的成员变量。这里有一个例子是一些简单的代码示例: 这是
我正在尝试按照本教程 Models and Views: AbstractItemModel Example 子类化 QAbstractListModel 来查看 qml 中的 C++ 模型列表 这是
大家好 我已经扩展了我自己的 QAbstractListModel 来改变 QCombobox 的背景颜色。如图所示,我有两个问题。1)如第一张图片快照所示,所选项目没有出现背景颜色。2) 选择项目时
我已经在 QML 中使用 TableViewColumn 实现了 TableView,其中的一些角色如下: TableView { TableViewColumn { role
我有课MyListModel ,它继承自使用 QListView 或自定义子类显示的 QAbstractListModel。我希望列表中的每个项目都是可编辑的,并且用户能够拖放以重新排列项目的顺序(我
我在 C++ 中有一个分层(嵌套)QAbstractListModel,即 Outer 模型的项目是 Inner 模型的实例, Inner 类的项是一些 QObject 派生的 Data 实例。 Ou
我是 Qt 新手,所以请耐心等待。 我已经成功地从 StringList 和对象的 QList 填充 ListView* 我现在正在努力解决的是使用 C++ 中定义的派生 QAbstractListM
我通过继承自 QAbstractListModel 创建了一个 ListView 模型。我实现了 data(const QModelIndex &, int ) 来提供列表项背景颜色(在 Qt::Ba
我正在尝试创建一个基于异步数据库 API 的列表模型。这是我希望如何使用它的 qml 示例: ListView { id: view; anchors.fill: parent;
我正在关注 this PySide tutorial尽可能接近使用 PyQt5。当我运行我的代码时,出现此错误:ReferenceError: pythonListModel is not defin
我是一名优秀的程序员,十分优秀!