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


                      
                    

                 


                                           

                                
                

       
                                    

          
                                               








                       
#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