Fixed some inconsistencies in code indentation
[jenirok] / src / gui / searchdialog.h
1 /*
2  * This file is part of Jenirok.
3  *
4  * Jenirok is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation, either version 3 of the License, or
7  * (at your option) any later version.
8  *
9  * Jenirok is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with Jenirok.  If not, see <http://www.gnu.org/licenses/>.
16  *
17  */
18
19 #ifndef SEARCHDIALOG_H
20 #define SEARCHDIALOG_H
21
22 #include <QtCore/QString>
23 #include <QtGui/QDialog>
24 #include <QtGui/QWidget>
25 #include <QtGui/QLineEdit>
26 #include <QMaemo5ListPickSelector>
27 #include "buttonselector.h"
28
29 class SearchDialog : public QDialog
30 {
31     Q_OBJECT
32
33 public:
34
35     struct SearchDetails
36     {
37         QString name;
38         QString location;
39         int type;
40     };
41
42     SearchDialog(QWidget* parent = 0);
43
44 signals:
45     void search(SearchDialog::SearchDetails& details);
46
47 private slots:
48     void searchPressed();
49
50 private:
51     QLineEdit* numberInput_;
52     QLineEdit* locationInput_;
53     ButtonSelector* selector_;
54
55 };
56
57 #endif