The zoomer maintains the history of your zoom operations in a zoom stack. You can navigate on the stack with mouse and keyboard. In the default configuration the right mouse button is connected to a zoom out ( by one ) operation. So you need to change your input mode.
F.e: the code below redefines the mouse button for the "zoom out by one" operation:
zoomer
->setMousePattern
(QwtEventPattern::MouseSelect2, Qt
::LeftButton, Qt
::ControlModifier);
zoomer->setMousePattern(QwtEventPattern::MouseSelect2, Qt::LeftButton, Qt::ControlModifier);
To copy to clipboard, switch view to plain text mode
Uwe
Bookmarks