summaryrefslogtreecommitdiffstats
path: root/src/server/clicklabel/clicklabel.h
blob: 6a05152bbf8e736da532a0a1b1ef2869e8970387 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#ifndef _CLICKLABEL_H_
#define _CLICKLABEL_H_

#include <QtGui>
#include <QLabel>


class ClickLabel : public QLabel
{
    Q_OBJECT

public:
    ClickLabel(QWidget *parent);

protected:
    void mouseReleaseEvent(QMouseEvent* e);


signals:
	void clicked();

};


#endif