first working version of the new search engine. TODO: add search modifiers

This commit is contained in:
Luis Ángel San Martín
2014-10-04 20:43:31 +02:00
parent bf87eacaf8
commit 2dca61c4e3
19 changed files with 196 additions and 20 deletions

View File

@ -0,0 +1,25 @@
#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 *);
};
#endif // NO_SEARCH_RESULTS_WIDGET_H