summaryrefslogtreecommitdiffstats
path: root/src/server/clicklabel/clicklabel.h
blob: 297f1dd020e6902b7c52a739781d30ae6d0d3fb2 (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
26
27
#ifndef _CLICKLABEL_H_
#define _CLICKLABEL_H_

#include <QtGui>
#include <QLabel>

/**
 * Class for clickable part on sessionName.
 */
class ClickLabel : public QLabel
{
    Q_OBJECT

public:
    ClickLabel(QWidget *parent);

protected:
    void mouseReleaseEvent(QMouseEvent* e);


signals:
	void clicked();

};


#endif