diff options
author | Aqua-sama <aqua@iserlohn-fortress.net> | 2018-01-20 14:29:59 +0100 |
---|---|---|
committer | Aqua-sama <aqua@iserlohn-fortress.net> | 2018-01-20 14:29:59 +0100 |
commit | 96a6749a4b66c1a59d51299216cb57336a1a4cbe (patch) | |
tree | fb6810d4d25dbe870dccb3dfaaaff3260e24decb /src/forms/searchform.h | |
parent | Fixed repo location in license headers (diff) | |
download | smolbote-96a6749a4b66c1a59d51299216cb57336a1a4cbe.tar.xz |
Added result label to search form
Diffstat (limited to 'src/forms/searchform.h')
-rw-r--r-- | src/forms/searchform.h | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/src/forms/searchform.h b/src/forms/searchform.h deleted file mode 100644 index da25474..0000000 --- a/src/forms/searchform.h +++ /dev/null @@ -1,35 +0,0 @@ -/* - * This file is part of smolbote. It's copyrighted by the contributors recorded - * in the version control history of the file, available from its original - * location: https://neueland.iserlohn-fortress.net/smolbote.hg - * - * SPDX-License-Identifier: GPL-3.0 - */ - -#ifndef SEARCHFORM_H -#define SEARCHFORM_H - -#include <QWidget> - -namespace Ui -{ -class SearchForm; -} - -class MainWindow; -class SearchForm : public QWidget -{ - Q_OBJECT - -public: - explicit SearchForm(MainWindow *parentWindow, QWidget *parent = nullptr); - ~SearchForm(); - -protected: - void focusInEvent(QFocusEvent *e); - -private: - Ui::SearchForm *ui; -}; - -#endif // SEARCHFORM_H |