Added about dialog and missing translations. Fixed repainting problen in detail view.
[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     virtual void setVisible(bool visible);
44
45 signals:
46     void search(SearchDialog::SearchDetails& details);
47
48 private slots:
49     void searchPressed();
50
51 private:
52     QLineEdit* numberInput_;
53     QLineEdit* locationInput_;
54     ButtonSelector* selector_;
55
56 };
57
58 #endif