Hi all,
I work with qtdesigner. I created windows with a graphicsview. I could add graphic items to scene. Now i want to add mouse release event to this graphicsview.

void MainWindow::mouseReleaseEvent(QMouseEvent *event)
{
printf("Mouse released\n");
QGraphicsView::mouseReleaseEvent(event);
}

But it doesnt work. How can i do that in simple way.