hello

I wonder how I can put a QPixmap in a QwtPlot, this can be done?

I just need to zoom to an area of ​​the QPixmap. And with the function of QwtPlot Zoomer is easy.

QwtPlotZoomer* zoomer = new MyZoomer(canvas());
zoomer->setMousePattern(QwtEventPattern::MouseSelect2,
Qt::RightButton, Qt::ControlModifier);
zoomer->setMousePattern(QwtEventPattern::MouseSelect3,
Qt::RightButton);

if not can I have another way to zoom to QPixmap?

thanks