Added call log and German translation.
[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 #include "source.h"
29
30 class SearchDialog : public QDialog
31 {
32     Q_OBJECT
33
34 public:
35
36     struct SearchDetails
37     {
38         QString name;
39         QString location;
40         Source::SearchType type;
41     };
42
43     SearchDialog(QWidget* parent = 0);
44     virtual void setVisible(bool visible);
45
46 signals:
47     void search(SearchDialog::SearchDetails& details);
48
49 public slots:
50     void loadSearchTypes();
51
52 private slots:
53     void searchPressed();
54
55 private:
56     QLineEdit* numberInput_;
57     QLineEdit* locationInput_;
58     ButtonSelector* selector_;
59
60 };
61
62 #endif