summaryrefslogtreecommitdiffstats
path: root/pacman-c++/clicklabel.h
blob: 494b1eeae57e2cc7ebf962f1e67e183129f11171 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef CLICKLABEL_H
#define CLICKLABEL_H

#include <QLabel>

class ClickLabel
  : public QLabel
{
    Q_OBJECT

public:
    ClickLabel(const QString &text, QWidget *parent = 0, Qt::WindowFlags f = 0);

signals:
    void clicked();

protected:
  void mouseReleaseEvent(QMouseEvent *event);
};

#endif // CLICKLABEL_H