Sorry if this question was already asked, I couldn't find it searching.
I have the following plot picker initialized for my QwtPlot:
mPicker = new QwtPlotPicker(QwtPlot::xBottom, QwtPlot::yLeft,
QwtPlotPicker::CrossRubberBand, QwtPlotPicker::AlwaysOff, canvas());
mPicker->setStateMachine(new QwtPickerClickPointMachine());
To copy to clipboard, switch view to plain text mode
I see that the default behavior is that the keyboard events (mainly the direction keys) are handled by the plot picker to move around the cross. How can I ignore these events so that they are not caught by the plot / picker?
Bookmarks