VAPOR3 3.9.4
QPushButtonWithDoubleClick.h
Go to the documentation of this file.
1#pragma once
2
3class QPushButtonWithDoubleClick : public QPushButton {
4 Q_OBJECT
5 using QPushButton::QPushButton;
6 void mouseDoubleClickEvent(QMouseEvent *e) { emit doubleClicked(); }
7
8signals:
10};