#ifndef ELASPINBOX_H #define ELASPINBOX_H #include #include "stdafx.h" class ElaSpinBoxPrivate; class ELA_EXPORT ElaSpinBox : public QSpinBox { Q_OBJECT Q_Q_CREATE(ElaSpinBox) public: explicit ElaSpinBox(QWidget* parent = nullptr); ~ElaSpinBox(); protected: void contextMenuEvent(QContextMenuEvent* event) override; }; #endif // ELASPINBOX_H