I want to be able to double click a QPushbutton instead of a single click.

What I tried:
Qt Code:
  1. connect(pb, SIGNAL(doubleClicked()), this, SLOT(comBtnPressed()));
To copy to clipboard, switch view to plain text mode 

Error says "QObject::connect: No such signal QPushButton::doubleClicked()"

I chose QPushButton initially, but for my purpose, you can suggest change to other object if it can make a doubleclick event. Not necessarily be a push button.

Thank you Masters of Qt and C++.