フレームなしのQQuickWindowがあり、マウスでドラッグして移動したいと思います。大きなアプリケーションを試す前に、C++クラスのカーソル位置を使用してQMLの問題を回避する簡単なテストアプリケーションを作成しました。 http://www.tickanswer.com/solved/5390888353/dragging-frameless-window-jiggles-in-qmlQML:フレームレスウィンドウをドラッグして移動する
しかし、以下のコードでは失敗しました。赤いRECTを押してマウスを動かすと、黄色い矩形(根のRECT)が動いていますが、元のサイズ(この場合は500x500)の中だけ...何が間違っていますか?私のmain.cppには、事前
で
ありがとう:
int main(int argc, char *argv[])
{
QtQuickControlsApplication a(argc, argv);
QQuickView* pView = new QQuickView();
CursorPosProvider mousePosProvider;
pView->rootContext()->setContextProperty("mousePosition", &mousePosProvider);
pView->setSource(QUrl("qrc:/Test.qml"));
pView->setFlags(Qt::FramelessWindowHint);
pView->show();
return a.exec();
}
Test.qml:
import QtQuick 2.0
Rectangle {
id: myWindow
width: 500; height: 500
color: "yellow"
Rectangle {
anchors.centerIn: parent
width: 200; height: 200
color: "red"
MouseArea {
id: titleBarMouseRegion
property var clickPos
anchors.fill: parent
onPressed: clickPos = { x: mousePosition.cursorPos().x, y: mousePosition.cursorPos().y }
onPositionChanged: {
myWindow.x = mousePosition.cursorPos().x - clickPos.x
myWindow.y = mousePosition.cursorPos().y - clickPos.y
}
}
}
}
cursorprovider.h:
#ifndef CURSORPOSPROVIDER_H
#define CURSORPOSPROVIDER_H
#include <QObject>
#include <QPointF>
#include <QCursor>
class CursorPosProvider : public QObject
{
Q_OBJECT
public:
explicit CursorPosProvider(QObject *parent = nullptr) : QObject(parent)
{
}
virtual ~CursorPosProvider() = default;
Q_INVOKABLE QPointF cursorPos()
{
return QCursor::pos();
}
};
#endif // CURSORPOSPROVIDER_H
おかげで多くのことを必要とするが、それはジグル私のために... :( – Diego