...
[jenirok] / src / gui / detailwindow.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 DETAILWINDOW_H
20 #define DETAILWINDOW_H
21
22 #include <QtGui/QMainWindow>
23 #include <QtGui/QVBoxLayout>
24 #include <QtGui/QDialog>
25 #include <QtGui/QLineEdit>
26 #include <QtGui/QWidget>
27 #include <QMaemo5ValueButton>
28 #include "searchdialog.h"
29 #include "eniro.h"
30
31 class DetailWindow : public QMainWindow
32 {
33     Q_OBJECT
34
35 public:
36
37     DetailWindow(QWidget* parent = 0);
38
39 public slots:
40     void loadData(Source::Result const& details);
41
42 private slots:
43     void makeCall();
44     void showAddToContactsDialog();
45     void addToContacts();
46     void copyToClipboard();
47     void sendSMS();
48     void openMaps();
49
50 private:
51     void getDetails(QString& street, QString& streetNumber,
52                     QString& zip, QString& city, QString& streetAndNumber);
53     QWidget* area_;
54     QVBoxLayout* layout_;
55     QMaemo5ValueButton* nameButton_;
56     QMaemo5ValueButton* streetButton_;
57     QMaemo5ValueButton* cityButton_;
58     QMaemo5ValueButton* numberButton_;
59     QDialog* addDialog_;
60     QLineEdit* addContactInput_;
61     QString country_;
62
63
64 };
65
66 #endif