How to change mouse message routing?
QML and Qt Quick
6
Posts
2
Posters
3.0k
Views
1
Watching
-
I have a QML file:
@import QtQuick 1.0
import Plot 1.0Rectangle {
id: page1
color: "#646464"
width: parent.width
height: parent.heightMyPlot { id: thePlot width: parent.width height: parent.height anchors.left: parent.left anchors.top: parent.top }
}@
Inside the QML file, a Qt Widget is called. The Widget is QWT plot widget which can display data and zoom in/out. But the problem is zoom not working any more. The mouse move event seems not send to the widget, it only send to QML Rectangle itself. So how can mouse event routed into widget, not the Rectangle itself? -
I have tried:
@import QtQuick 1.0
import Plot 1.0Rectangle {
id: page_7_1
color: "#646464"
width: parent.width
height: parent.heightMyPlot { id: thePlot width: parent.width height: parent.height anchors.left: parent.left anchors.top: parent.top MouseArea { anchors.fill: parent } }
}@
and
@import QtQuick 1.0
import Plot 1.0Rectangle {
id: page_7_1
color: "#646464"
width: parent.width
height: parent.heightMyPlot { id: thePlot width: parent.width height: parent.height anchors.left: parent.left anchors.top: parent.top } MouseArea { anchors.fill: parent }
}@
neither works.