You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
326 B
C++
21 lines
326 B
C++
#ifndef QTPSPINBOX_H
|
|
#define QTPSPINBOX_H
|
|
|
|
#include <QtWidgets\qspinbox.h>
|
|
|
|
class QTpSpinBox : public QSpinBox
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
QTpSpinBox(QWidget *parent);
|
|
~QTpSpinBox();
|
|
private Q_SLOTS:
|
|
void OnValueChanged(int i);
|
|
void OnValueChanged(const QString& text);
|
|
private:
|
|
|
|
};
|
|
|
|
#endif // QTPSPINBOX_H
|