mirror of
https://github.com/Quill-OS/quill.git
synced 2024-12-26 07:37:21 -08:00
21 lines
405 B
C
21 lines
405 B
C
|
#ifndef QTOOLTIPLABEL_H
|
||
|
#define QTOOLTIPLABEL_H
|
||
|
|
||
|
#include <QLabel>
|
||
|
#include <QWidget>
|
||
|
|
||
|
class QToolTipLabel : public QLabel {
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
explicit QToolTipLabel(QWidget* parent = Q_NULLPTR, Qt::WindowFlags f = Qt::WindowFlags());
|
||
|
~QToolTipLabel();
|
||
|
|
||
|
protected:
|
||
|
void mousePressEvent(QMouseEvent * event);
|
||
|
void mouseReleaseEvent(QMouseEvent * event);
|
||
|
|
||
|
};
|
||
|
|
||
|
#endif // CLICKABLELABEL_H
|