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