I am using QPushButton() in my programme. With these buttons I rotate my object. Works fine so far. The only Problem is that i have to click multiple times to rotate the object a little further. This is a bit annoying. Isnt there a possibility that the button will stay pressed as long as I press it and the object will rotate further. There is the function pressed(), but there is no difference to clicked().
|
feedback
|
|
QAbstractButton has an auto-repeat feature that you can turn on:
This will emit the pressed(), released(), and clicked() signals repeatedly. You can also specify how often the signals are emitted ( | |||
|
feedback
|
|
You get the signal only once. How about starting a timer thread to signal every say 100ms? You can kill/end that thread when receiving the released status. | |||
|
feedback
|