Pool Video Switch v2
Software video switch for distributed remote display in a lecture environment
clicklabel.h
Go to the documentation of this file.
1 #ifndef PVS_CLICKLABEL_H_
2 #define PVS_CLICKLABEL_H_
3 
4 #include <QLabel>
5 
9 class ClickLabel : public QLabel
10 {
11  Q_OBJECT
12 
13 public:
14  explicit ClickLabel(QWidget *parent);
15 
16 protected:
17  void mouseReleaseEvent(QMouseEvent* e) override;
18 
19 
20 signals:
21  void clicked();
22 
23 };
24 
25 
26 #endif
void clicked()
ClickLabel(QWidget *parent)
Initialize ClickLabel.
Definition: clicklabel.cpp:7
Class for clickable part on sessionName.
Definition: clicklabel.h:9
void mouseReleaseEvent(QMouseEvent *e) override
Handle mouse release event.
Definition: clicklabel.cpp:20