我想用可拖动的QQuickItems编写简单的Qt Quick应用程序。由于项中嵌入了MouseArea,因此项目可以拖拽。但问题是鼠标事件不会在虚拟重载函数中触发C ++代码。如何解决这个问题,或者有一些我没有找到的例子?
QML文件:
import QtQuick 2.0
import SimpleMaterial 1.0
Rectangle {
width: 320
height: 480
color: "black"
SimpleMaterialItem {
width: parent.width;
height: parent.height / 3;
color: "steelblue"
MouseArea {
anchors.fill: parent
width: 64
height: 64
drag.target: parent
drag.axis: Drag.XandYAxis
}
}
}
C ++类:
class Item : public QQuickItem
{
Q_OBJECT
Q_PROPERTY(QColor color READ color WRITE setColor NOTIFY colorChanged)
public:
Item()
{
setFlag(ItemHasContents, true);
setFlag(ItemAcceptsDrops, true);
setFlag(ItemAcceptsInputMethod, true);
setAcceptedMouseButtons(Qt::AllButtons);
}
void mousePressEvent(QMouseEvent * event)
{
qDebug("Press"); // NOT CALLED!
}
public:
QSGNode *updatePaintNode(QSGNode *node, UpdatePaintNodeData *)
{
...
}
};
答案 0 :(得分:3)
如果MouseArea
处理鼠标事件,则它不会将事件传递给其父事件。
你需要:
onPressed: {
mouse.accepted = false;
}
在鼠标区域让SimpleMaterialItem
处理onPressed
事件。