summaryrefslogtreecommitdiffstats
path: root/src/server/clicklabel/clicklabel.h
blob: 4d730a9668338062eb44444d61aa524044c8205e (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