22 lines
378 B
C++
22 lines
378 B
C++
#ifndef ELASPINBOX_H
|
|
#define ELASPINBOX_H
|
|
|
|
#include <QSpinBox>
|
|
|
|
#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
|