mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-10-31 15:47:10 -04:00
28 lines
596 B
C++
28 lines
596 B
C++
|
#ifndef DOUBLE_CLICKABLE_PUSH_BUTTON_HPP_
|
||
|
#define DOUBLE_CLICKABLE_PUSH_BUTTON_HPP_
|
||
|
|
||
|
#include <QPushButton>
|
||
|
|
||
|
//
|
||
|
// DoubleClickablePushButton - QPushButton that emits a mouse double
|
||
|
// click signal
|
||
|
//
|
||
|
// Clients should be aware of the QWidget::mouseDoubleClickEvent()
|
||
|
// notes about receipt of mouse press and mouse release events.
|
||
|
//
|
||
|
class DoubleClickablePushButton
|
||
|
: public QPushButton
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
DoubleClickablePushButton (QWidget * = nullptr);
|
||
|
|
||
|
Q_SIGNAL void doubleClicked ();
|
||
|
|
||
|
protected:
|
||
|
void mouseDoubleClickEvent (QMouseEvent *) override;
|
||
|
};
|
||
|
|
||
|
#endif
|