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

21 lines
329 B
C++

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