mirror of
https://github.com/YACReader/yacreader
synced 2025-05-25 18:00:46 -04:00
26 lines
436 B
C++
26 lines
436 B
C++
#ifndef NO_SEARCH_RESULTS_WIDGET_H
|
|
#define NO_SEARCH_RESULTS_WIDGET_H
|
|
|
|
#include <QWidget>
|
|
|
|
class QLabel;
|
|
|
|
class NoSearchResultsWidget : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit NoSearchResultsWidget(QWidget *parent = nullptr);
|
|
|
|
signals:
|
|
|
|
public slots:
|
|
|
|
protected:
|
|
QLabel *iconLabel;
|
|
QLabel *titleLabel;
|
|
void paintEvent(QPaintEvent *) override;
|
|
QString backgroundColor;
|
|
};
|
|
|
|
#endif // NO_SEARCH_RESULTS_WIDGET_H
|