18 lines
278 B
C
18 lines
278 B
C
|
#ifndef NOSCROLLSPINBOX_H
|
||
|
#define NOSCROLLSPINBOX_H
|
||
|
|
||
|
#include <QSpinBox>
|
||
|
|
||
|
class NoScrollSpinBox : public QSpinBox
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
explicit NoScrollSpinBox(QWidget *parent = nullptr);
|
||
|
void wheelEvent(QWheelEvent *event);
|
||
|
|
||
|
private:
|
||
|
};
|
||
|
|
||
|
#endif // NOSCROLLSPINBOX_H
|