164e10be9f528d820de99778a75108acd0c7ed11
[jenirok] / src / daemon / calllistener.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 CALLLISTENER_H
20 #define CALLLISTENER_H
21
22 #include <QtCore/QObject>
23 #include <QtCore/QString>
24 #include <QtGui/QLabel>
25 #include <QtDBus/QDBusConnection>
26 #include <QtDBus/QDBusObjectPath>
27 #include "informationbox.h"
28 #include "eniro.h"
29 #include "contactmanager.h"
30 #include "connectionmanager.h"
31
32 class CallListener: public QObject
33 {
34     Q_OBJECT
35
36 public:
37     CallListener();
38     ~CallListener();
39     void begin();
40     void end();
41     static const int REQUEST_TIMEOUT = 10000;
42     static const int BANNER_DELAY = 300;
43     static const int NUMBER_OF_RETRIES = 3;
44
45 private slots:
46     void requestFinished(QVector <Eniro::Result> const& results, Eniro::SearchDetails const& details, bool error);
47     void incomingCall(QDBusObjectPath path, QString numbe);
48     void callTerminate();
49     void showTimedMessage();
50
51 private:
52     Q_DISABLE_COPY(CallListener);
53
54     void search(Eniro::SearchDetails const& details);
55     void showResult(QString const& text);
56     void showDelayedResult(QString const& text, int delay);
57     QString createResult(QString const& name, QString const& street, QString const& city);
58     QString timedMessage_;
59     Eniro* eniro_;
60     ContactManager* contactManager_;
61     ConnectionManager* connectionManager_;
62     bool closeConnection_;
63     InformationBox* box_;
64     QLabel* label_;
65     static QDBusConnection systemBus_;
66     int retries_;
67     QString currentSearch_;
68 };
69
70 #endif // CALLLISTENER_H