mirror of
https://github.com/YACReader/yacreader
synced 2025-07-19 05:24:57 -04:00
Headless server: simplify system config logger
This commit is contained in:
26
YACReaderLibrary/no_search_results_widget.h
Normal file
26
YACReaderLibrary/no_search_results_widget.h
Normal file
@ -0,0 +1,26 @@
|
||||
#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 = 0);
|
||||
|
||||
signals:
|
||||
|
||||
public slots:
|
||||
|
||||
protected:
|
||||
QLabel * iconLabel;
|
||||
QLabel * titleLabel;
|
||||
void paintEvent(QPaintEvent *);
|
||||
QString backgroundColor;
|
||||
|
||||
};
|
||||
|
||||
#endif // NO_SEARCH_RESULTS_WIDGET_H
|
Reference in New Issue
Block a user