Sorry if this question was already asked, I couldn't find it searching.

I have the following plot picker initialized for my QwtPlot:
Qt Code:
  1. mPicker = new QwtPlotPicker(QwtPlot::xBottom, QwtPlot::yLeft,
  2. QwtPlotPicker::CrossRubberBand, QwtPlotPicker::AlwaysOff, canvas());
  3. 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?