mirror of
https://github.com/Quill-OS/quill.git
synced 2024-10-31 21:33:22 -07:00
20 lines
404 B
C++
20 lines
404 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 // QTOOLTIPLABEL_H
|