我是 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
我试图自己找到解决方案,但没有成功。有人可以解释一下我应该如何修改上面的代码以使其正常工作吗?