QGraphicsView and QMouseMove Event

196 Views Asked by At

i have a borderless (no title bar) QWidget window with a QGraphicsView inside. I've overwritten mousePressEvent and mouseMoveEvent for move the window on the desktop, but when i press on the QGraphicsView this not works.

Below, the code of mousePressEvent and mouseMoveEvent:

void Widget::mousePressEvent(QMouseEvent *evt)
{
    oldPos = evt->globalPos();
}

void Widget::mouseMoveEvent(QMouseEvent *evt)
{
    const QPoint delta = evt->globalPos() - oldPos;
    move(x() + delta.x(), y() + delta.y());
    oldPos = evt->globalPos();
}

I also overwritten with the same code:

void mousePressEvent(QGraphicsSceneMouseEvent *evt); void mouseMoveEvent(QGraphicsSceneMouseEvent *evt);

i tried with:

setInteractive(false);
setDragMode(scrollHandDrag);

but nothing!

is there a way to solve this?

0

There are 0 best solutions below