Hi there,
I want to scroll a Scene in QGraphicsView with external contol. So i want to disable scroll event with keys an wheel directly in the QGraphicsView class.
How can I do this?
Hi there,
I want to scroll a Scene in QGraphicsView with external contol. So i want to disable scroll event with keys an wheel directly in the QGraphicsView class.
How can I do this?
Hi, you could install an event filter and catch the key and wheel events there. The documentation for QObject::installEventFilter() shows an example how to "eat" an event.
Ginsengelf
Qt Code:
{ public: }; { this->installEventFilter(this); } { { // QWheelEvent *wheelEvent = static_cast<QWheelEvent*>(event); return true; } else { // standard event processing } }To copy to clipboard, switch view to plain text mode
I have installed an event filter in my inherited class "Myclass". But it has no effect.
The wheel event is still active, if I scroll the mouse wheel in the scene.
Your class inherits from QGraphicsScene, which is simply a container for QGraphicsItem instances. It has no visual representation on screen and therefore has no mouse, wheel, or any other input event associated with it.I have installed an event filter in my inherited class "Myclass". But it has no effect.
You probably want to install your event filter on QGraphicsView (and not on a class derived from it, as you have done with your MyClass implementation). It makes no sense to create and install an event filter on an instance of a class itself - if you are going to derive from a class, then simply override the base class methods for the events you want to handle.
The purpose of an event filter is so you can watch events occurring in an instance of one class from a different class. So in your case, you should create the event filter method in your MainWindow class (for example) and install it on your QGraphicsView class.
<=== The Great Pumpkin says ===>
Please use CODE tags when posting source code so it is more readable. Click "Go Advanced" and then the "#" icon to insert the tags. Paste your code between them.
I have installed an event filter on QGraphicView but it also has no effect.
Qt Code:
{ Q_OBJECT public: protected: }; { } { // The event is always eaten but the scroll is still active { qDebug("Ate key press %d", wheelEvent->phase()); return true; } else { // standard event processing } }To copy to clipboard, switch view to plain text mode
Qt Code:
this->myView->installEventFilter(new MouseEventFilter(this));To copy to clipboard, switch view to plain text mode
How do you know? Have you run your code in the debugger to see if your event filter is called with any event at all?I have installed an event filter on QGraphicView but it also has no effect.
Have you disabled the scroll bars in the view (QAbstractScrollArea::setVerticalScrollBarPolicy(), QAbstractScrollArea::setHorizontalScrollBarPolicy())?
<=== The Great Pumpkin says ===>
Please use CODE tags when posting source code so it is more readable. Click "Go Advanced" and then the "#" icon to insert the tags. Paste your code between them.
Yes, I have used the debugger. The event is called and it has no effect.
Right, I have disabled both scrollbars.
Qt Code:
this->myView->setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff); this->myView->setVerticalScrollBarPolicy(Qt::ScrollBarAlwaysOff); this->myView->centerOn(0, 0); this->myView->setFixedWidth(110); this->myView->setFocusPolicy(Qt::NoFocus); this->myView->installEventFilter(new MouseEventFilter(this));To copy to clipboard, switch view to plain text mode
Bookmarks