これについてのスレッドは既にありますが、私が見つけた解決策は機能しません。 ソリューション: QGraphicsView派生クラスのMousePressEventクラスの末尾にQGraphicsView::MousePressEvent(event);
と書いてください。 どちらも動作しません。 QGraphicsItemクラスはマウスイベントを受け取りません。 これは私のMousePressEventは私のQGraphicsViewクラスである:QGraphicsItem派生クラスでマウスイベントを受け取る方法は? Qt
void Node::mousePressEvent(QGraphicsSceneMouseEvent *event){
mousePressed = true;
qDebug() << "mouse trigered!";
}
すべてのアイデア、私が忘れてしまった何か:
void GraphWidget::mousePressEvent(QMouseEvent *event){
mousePressed = true;
if (event->button() == Qt::RightButton) // doesn't matter
{
rightMousePressed = true;
_panStartX = event->x();
_panStartY = event->y();
setCursor(Qt::ClosedHandCursor);
event->accept();
return;
}
// And I tried this: QGraphicsView::mousePressEvent(event);
}
これは私のQGraphicsItemクラスの私のMousePressEventがありますか?
「QGraphicsView :: mousePressEvent(event);」と呼びますか?あなたのgraphicsviewクラスのmousePressEvent関数で?また、boundingRect()関数がgraphicsitemクラスで正しく実装されているかどうかを確認してください。 –