up vote 1 down vote favorite
share [g+] share [fb]

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

link|improve this question
feedback

2 Answers

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|improve this answer
feedback

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|improve this answer
1  
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 '09 at 15:17
feedback

Your Answer

 
or
required, but never shown

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