mirror of
https://github.com/qTox/qTox.git
synced 2024-03-22 14:00:36 +08:00
21 lines
304 B
C
21 lines
304 B
C
|
#ifndef CLICKABLELABEL_H
|
||
|
#define CLICKABLELABEL_H
|
||
|
|
||
|
#include <QLabel>
|
||
|
|
||
|
class ClickableLabel : public QLabel
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
explicit ClickableLabel(QWidget *parent = 0);
|
||
|
|
||
|
signals:
|
||
|
void clicked();
|
||
|
|
||
|
protected:
|
||
|
void mousePressEvent ( QMouseEvent * event );
|
||
|
|
||
|
};
|
||
|
|
||
|
#endif // CLICKABLELABEL_H
|