1234567891011121314151617 |
- #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
|