summaryrefslogtreecommitdiffstats
path: root/src/server/clicklabel/clicklabel.h
blob: cea024d527e974f1683ee3128c2a238d94432c38 (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
#ifndef PVS_CLICKLABEL_H_
#define PVS_CLICKLABEL_H_

#include <QLabel>

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

public:
	explicit ClickLabel(QWidget *parent);

protected:
	void mouseReleaseEvent(QMouseEvent* e) override;


signals:
	void clicked();

};


#endif