In QGraphicsView,
setDragMode(QGraphicsView::ScrollHandDrag);
This line of code did what I want: scroll contents while dragging. However, if I have implemented mouseMoveEvent
or mousePressEvent
for my custom needs, the setDragMode(QGraphicsView::ScrollHandDrag)
magic disappears.
These built-in functions seem have some dependencies, most times they're convenient, but when you implement one of them, you break up the chain between that dependencies so that some of them gone.
I don't want to implement all these function from ground up. How to solve this dilemma?
==================Edit 12/13================
Ok, I'm trying but...
void MyView::mouseMoveEvent( QMouseEvent* event )
{
// Notice: event->button() always return Qt::NoButton for "mouse move events"
// so event->button() == Qt::LeftButton won't work in this case
if(event->buttons() & Qt::LeftButton)
{
this->dragMoveEvent(dynamic_cast<QDragMoveEvent*>(event));
}
else
{
...
}
}
These code fails because QMouseEvent*
cannot be cast into QDragMoveEvent*
, any idea?
@thuga is right. At the end of your subclassed functions put a reference to the original function. Like so:
You could even determine
m_not_dragging
based one->button()
right in this function call, but this is a quick example of one way that you could have both your custom method and the default method still available.Hope that helps.