mirror of
https://github.com/Quill-OS/quill.git
synced 2024-10-31 21:33:22 -07:00
26 lines
525 B
C++
26 lines
525 B
C++
#ifndef QCLICKABLELABEL_H
|
|
#define QCLICKABLELABEL_H
|
|
|
|
#include <QLabel>
|
|
#include <QWidget>
|
|
|
|
class QClickableLabel : public QLabel {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit QClickableLabel(QWidget* parent = Q_NULLPTR, Qt::WindowFlags f = Qt::WindowFlags());
|
|
~QClickableLabel();
|
|
|
|
signals:
|
|
void clicked();
|
|
void unclicked();
|
|
void bookID(int id);
|
|
void bookPath(QString path);
|
|
|
|
protected:
|
|
void mousePressEvent(QMouseEvent * event);
|
|
void mouseReleaseEvent(QMouseEvent * event);
|
|
|
|
};
|
|
|
|
#endif // CLICKABLELABEL_H
|