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().

link|improve this question

78% accept rate
feedback

2 Answers

up vote 10 down vote accepted

QAbstractButton has an auto-repeat feature that you can turn on:

button->setAutoRepeat(true);

This will emit the pressed(), released(), and clicked() signals repeatedly. You can also specify how often the signals are emitted (setAutoRepeatInterval), and how long the button waits before it starts emitting them (setAutoRepeatDelay).

link|improve this answer
THANK YOU, It was exactly what I was looking for :) – buddy Nov 6 '11 at 18:10
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.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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