Remove unnecessary includes
[profile/ivi/ofono-qt.git] / lib / ofonocallbarring.h
1 /*
2  * This file is part of ofono-qt
3  *
4  * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
5  *
6  * Contact: Alexander Kanavin <alexander.kanavin@nokia.com>
7  *
8  * This library is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public License
10  * version 2.1 as published by the Free Software Foundation.
11  *
12  * This library is distributed in the hope that it will be useful, but
13  * WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with this library; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
20  * 02110-1301 USA
21  *
22  */
23
24 #ifndef OFONOCALLBARRING_H
25 #define OFONOCALLBARRING_H
26
27 #include <QtCore/QObject>
28 #include "ofonomodeminterface.h"
29 #include "libofono-qt_global.h"
30
31 //! This class is used to access oFono call barring API
32 /*!
33  * The API is documented in
34  * http://git.kernel.org/?p=network/ofono/ofono.git;a=blob_plain;f=doc/call-barring-api.txt
35  */
36 class OFONO_QT_EXPORT OfonoCallBarring : public OfonoModemInterface
37 {
38     Q_OBJECT
39
40 public:
41     OfonoCallBarring(OfonoModem::SelectionSetting modemSetting, const QString &modemPath, QObject *parent=0);
42     ~OfonoCallBarring();
43
44     /* Properties */
45     void requestVoiceIncoming();
46     void setVoiceIncoming(const QString &barrings, const QString &password);
47     void requestVoiceOutgoing();
48     void setVoiceOutgoing(const QString &barrings, const QString &password);
49
50     /* Methods */
51     void requestChangePassword(const QString &old_password, const QString &new_password);
52     void requestDisableAll(const QString &password);
53     void requestDisableAllIncoming(const QString &password);
54     void requestDisableAllOutgoing(const QString &password);
55
56 signals:
57     void incomingBarringInEffect();
58     void outgoingBarringInEffect();
59
60     void voiceIncomingComplete(bool success, const QString &barrings);
61     void voiceOutgoingComplete(bool success, const QString &barrings);
62     void voiceIncomingChanged(const QString &barrings);
63     void voiceOutgoingChanged(const QString &barrings);
64     void setVoiceIncomingFailed();
65     void setVoiceOutgoingFailed();
66
67     void changePasswordComplete(bool success);
68     void disableAllComplete(bool success);
69     void disableAllIncomingComplete(bool success);
70     void disableAllOutgoingComplete(bool success);
71
72 private slots:
73     void propertyChanged(const QString& property, const QVariant& value);
74     void setPropertyFailed(const QString& property);
75     void setPropertyResp();
76     void setPropertyErr(const QDBusError& error);
77     void changePasswordResp();
78     void changePasswordErr(QDBusError error);
79     void disableAllResp();
80     void disableAllErr(QDBusError error);
81     void disableAllIncomingResp();
82     void disableAllIncomingErr(QDBusError error);
83     void disableAllOutgoingResp();
84     void disableAllOutgoingErr(QDBusError error);
85     void requestPropertyComplete(bool success, const QString& property, const QVariant& value);
86
87 private:
88     void setProperty(const QString& name, const QVariant& property,
89                         const QString& password);
90
91    QString m_pendingProperty;
92 };
93
94 #endif  /* !OFONOCALLBARRING_H */