Adding CallVolume interface support in ofono-qt Bindings Signed-off-by: Arun Ravindra...
[profile/ivi/ofono-qt.git] / lib / ofonomessagewaiting.cpp
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 #include <QtDBus/QtDBus>
25 #include <QtCore/QObject>
26
27 #include "ofonomessagewaiting.h"
28 #include "ofonointerface.h"
29
30
31 OfonoMessageWaiting::OfonoMessageWaiting(OfonoModem::SelectionSetting modemSetting, const QString &modemPath, QObject *parent)
32     : OfonoModemInterface(modemSetting, modemPath, "org.ofono.MessageWaiting", OfonoGetAllOnStartup, parent)
33 {
34     connect(m_if, SIGNAL(propertyChanged(const QString&, const QVariant&)), 
35             this, SLOT(propertyChanged(const QString&, const QVariant&)));
36     connect(m_if, SIGNAL(setPropertyFailed(const QString&)), 
37             this, SLOT(setPropertyFailed(const QString&)));
38
39 }
40
41 OfonoMessageWaiting::~OfonoMessageWaiting()
42 {
43 }
44
45 bool OfonoMessageWaiting::voicemailWaiting() const
46 {
47     return m_if->properties()["VoicemailWaiting"].value<bool>();
48 }
49
50 int OfonoMessageWaiting::voicemailMessageCount() const
51 {
52     return m_if->properties()["VoicemailMessageCount"].value<int>();
53 }
54
55 QString OfonoMessageWaiting::voicemailMailboxNumber() const
56 {
57     return m_if->properties()["VoicemailMailboxNumber"].value<QString>();
58 }
59
60 void OfonoMessageWaiting::setVoicemailMailboxNumber(QString mailboxnumber)
61 {
62     m_if->setProperty("VoicemailMailboxNumber", qVariantFromValue(mailboxnumber));
63 }
64
65 void OfonoMessageWaiting::setPropertyFailed(const QString& property)
66 {
67     if (property == "VoicemailMailboxNumber")
68         emit setVoicemailMailboxNumberFailed();
69 }
70
71 void OfonoMessageWaiting::propertyChanged(const QString& property, const QVariant& value)
72 {
73     if (property == "VoicemailWaiting")
74         emit voicemailWaitingChanged(value.value<bool>());
75     else if (property == "VoicemailMessageCount")
76         emit voicemailMessageCountChanged(value.value<int>());
77     else if (property == "VoicemailMailboxNumber")
78         emit voicemailMailboxNumberChanged(value.value<QString>());
79 }
80
81