Files
newspark110/customcontrols/dmspinbox.h
Chenwenxuan edac2715f0 init
2024-03-06 14:54:30 +08:00

20 lines
288 B
C++

#ifndef DMSPINBOX_H
#define DMSPINBOX_H
#include <QSpinBox>
class DMSpinBox : public QSpinBox {
Q_OBJECT
public:
DMSpinBox(QWidget *parent = nullptr);
private:
#ifdef QT_DEBUG
bool eventFilter(QObject *watched, QEvent *event) override;
#endif
};
#endif // DMSPINBOX_H