I need to create a button which has three states:
- unclicked
- intermediate
- clicked
The logic I want to implement with this button is that whenever this button is clicked, I want the system to go to the intermediate state and wait for an event.
In other way when the state transition is unclicked --> intermediate -- > clicked
and then clicked --> intermediate -->unclicked
.
Does Qt support implementing this kind of button? If so, how?
The nearest you have is
QCheckBox
. It already has a property for it:QCheckBox::setTristate
:You can do it on the Designer too (it is at the end of the properties list).
If you don't want to use a
QCheckBox
, a stylesheet and a custom property that is modified each time the button is pressed can do it:Other more elaborated options would be to use a
QProxyStyle
or to re-implement theQPushButton
class itself.