I want a notice dialog to come up when an action has been triggered multiple times consecutively (so basically a bit like how StickyKeys is enabled). I understand that I can basically do connect(this->trigger, SIGNAL(triggered()), this, SLOT(onTrigger()))
for detecting a single trigger, but how could I detect when it happens 10 times?
Thanks.
P.S - how could I do a "don't show this message again" QCheckBox?