mirror of
https://github.com/YACReader/yacreader
synced 2025-07-23 15:35:03 -04:00
Fix unarr detection on Linux systems that use qmake without pkg-config support
This commit is contained in:
25
YACReaderLibrary/comic_vine/scraper_scroll_label.h
Normal file
25
YACReaderLibrary/comic_vine/scraper_scroll_label.h
Normal 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
|
Reference in New Issue
Block a user