summaryrefslogtreecommitdiffstats
path: root/pacman-c++/clicklabel.h
diff options
context:
space:
mode:
Diffstat (limited to 'pacman-c++/clicklabel.h')
-rw-r--r--pacman-c++/clicklabel.h21
1 files changed, 0 insertions, 21 deletions
diff --git a/pacman-c++/clicklabel.h b/pacman-c++/clicklabel.h
deleted file mode 100644
index 494b1ee..0000000
--- a/pacman-c++/clicklabel.h
+++ /dev/null
@@ -1,21 +0,0 @@
1#ifndef CLICKLABEL_H
2#define CLICKLABEL_H
3
4#include <QLabel>
5
6class ClickLabel
7 : public QLabel
8{
9 Q_OBJECT
10
11public:
12 ClickLabel(const QString &text, QWidget *parent = 0, Qt::WindowFlags f = 0);
13
14signals:
15 void clicked();
16
17protected:
18 void mouseReleaseEvent(QMouseEvent *event);
19};
20
21#endif // CLICKLABEL_H