I am using Qt. I have a button in the page added via the Qt Creator. It is connected to the method void MyPage::on_startButton_clicked().
void MyPage::on_startButton_clicked()
I want to prog
Use QAbstractButton::animateClick():
QPushButton* startButton = new QPushButton("Start"); startButton->animateClick();