added a hack for fixing fullscreen context menus with QOpengGLWidget in YACReader

This commit is contained in:
Luis Ángel San Martín
2016-05-01 21:52:22 +02:00
commit dd64e013be
986 changed files with 90311 additions and 0 deletions

View File

@ -0,0 +1,25 @@
#ifndef SCRAPER_SCROLL_LABEL_H
#define SCRAPER_SCROLL_LABEL_H
#include <QScrollArea>
class QLabel;
class ScraperScrollLabel : public QScrollArea
{
Q_OBJECT
public:
explicit ScraperScrollLabel(QWidget *parent = 0);
signals:
public slots:
void setText(const QString & text);
void setAltText(const QString &text);
void openLink(const QString &link);
private:
QLabel * textLabel;
};
#endif // SCRAPER_SCROLL_LABEL_H