我是Qt 5.13.0的新手。在 Visual Studio 2019 项目中,我需要在 qml 接口中显示从 QQuickPaintedItem 类继承的自定义绘制项。自定义项编写在名为 WQTMessageItem 的 c++ 类中,该类声明如下:
class WQTMessageItem : public QQuickPaintedItem
{
Q_OBJECT
Q_PROPERTY(bool rightAligned READ isRightAligned WRITE setRightAligned NOTIFY rightAlignedChanged)
signals:
void rightAlignedChanged();
public:
WQTMessageItem(QQuickItem* parent = 0);
void paint(QPainter* painter);
bool isRightAligned();
void setRightAligned(bool rightAligned);
private:
bool m_RightAligned;
};
在 c++ 方面,我尝试以这种方式向 qml 引擎声明上述类:
QQmlContext* pContext = engine.rootContext();
std::unique_ptr<WQTMessageItem> pMessageItem(new WQTMessageItem());
pContext->setContextProperty("WQTMessageItem", pMessageItem.get());
pMessageItem.release();
最后,我尝试在 qml 文件中声明的 ListView 中使用上述自定义项,如下所示:
ListView
{
anchors.bottom: controls.top
anchors.bottomMargin: 2
anchors.top: parent.top
id: balloonView
delegate: WQTMessageItem
{
anchors.right: index % 2 == 0 ? undefined : parent.right
height: 60
rightAligned: index % 2 == 0 ? false : true
width: balloonWidth
}
model: balloonModel
spacing: 5
width: parent.width
}
不幸的是,这不起作用。我的应用程序编译并链接,但在运行时立即关闭,并显示以下错误消息:
QQmlApplicationEngine failed to load component
qrc:/main.qml:33 WQTMessageItem is not a type
我试图自己找到解决方案,但没有成功。有人可以解释我应该如何修改上面的代码以使其工作吗?
您必须使用 qmlRegisterType 函数在 QML 系统中注册C++类型。
可以在此处找到示例。
setContextProperty 方法旨在将值(而不是类型(从C++导出到 QML。