begin work on qt gui - basic search & pdf preview

This commit is contained in:
2018-08-12 16:45:39 +02:00
parent e006a95673
commit 68ab917756
15 changed files with 626 additions and 0 deletions

17
gui/clicklabel.h Normal file
View File

@@ -0,0 +1,17 @@
#ifndef CLICKLABEL_H
#define CLICKLABEL_H
#include <QLabel>
class ClickLabel : public QLabel
{
Q_OBJECT
public:
using QLabel::QLabel;
signals:
void clicked();
protected:
void mousePressEvent(QMouseEvent *event);
};
#endif // CLICKLABEL_H