mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-10-31 15:47:10 -04:00
ba0228b173
These emit doubleClicked signal when double-clicked, otherwise they are identical to their super-classes. git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@7938 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
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
|