According to the Qt documentation:
void QAbstractSpinBox::editingFinished () [signal]
This signal is emitted editing is finished. This happens when the spinbox loses focus and when enter is pressed.
Is it possible (preferably out-of-the-box) to have this signal fire on every change of the spin开发者_StackOverflowbox, not just enter or lose focus?
That is different. You can use valueChanged() signal instead.
精彩评论