summaryrefslogblamecommitdiffstats
path: root/src/server/clicklabel/clicklabel.h
blob: cea024d527e974f1683ee3128c2a238d94432c38 (plain) (tree)
1
2
3
4
5
6
7
8
9
10

                         
 

                 


                                           

                                
                

       
                                             

          
                                                        








                       
#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