Initial Commit

This commit is contained in:
Jordan Sherer
2018-02-08 21:28:33 -05:00
commit 678c1d3966
14352 changed files with 3176737 additions and 0 deletions
@@ -0,0 +1,27 @@
#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