restrict Input QSpinBox

1.4k Views Asked by At

I have a QSpinBox and I want it to only accept positive natural numbers. This works fine, until I enter a dot .

If I enter 234235.23456and change the focus to some other spinbox, the value is changed to 23423523456.

So I am looking for a way to ignore everything behind the .

Is this possible without subclassing QSpinBox?

1

There are 1 best solutions below

0
On BEST ANSWER

I found a fix for my porblem:

QDoubleSpinBox * box = new QDoubleSpinBox();

box->setDecimals(0);
box->setSingleStep(1.0);

box->findChild<QLineEdit*>()->setValidator(new QRegExpValidator(QRegExp(QString("^[1-9][0-9]*$"))));