vote up 1 vote down star

I have a QDoubleSpinBox in QT. I would like to conditionally disable the step up and/or down buttons. I am not sure how to do this.

I saw that in the QAbstractSpinBox there is a flag called StepEnabledFlag. But i am not sure how to set that.

Can anybody help me out with this.

Thanks Arjun

flag

2 Answers

vote up 1 vote down

Use QAbstractSpinBox::setButtonSymbols(). You can set one or both of the arrow buttons to be disabled.

Documentation reference: http://doc.trolltech.com/4.5/qabstractspinbox.html#buttonSymbols-prop.

link|flag
Actually, set button symbols allows you to choose between up and down arrow buttons, plus and minus buttons, or no buttons at all. It doesn't let you individually enable and disable them. – Parker May 13 at 15:17
vote up 3 vote down

You need to create a QDoubleSpinBox subclass with a custom implementation of the step enabled function. (http://doc.trolltech.com/4.5/qabstractspinbox.html#stepEnabled)

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.