1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119
|
/*
* Copyright (C) 2016 Canonical Ltd
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 3 as
* published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* Authors:
* Ken VanDine <ken.vandine@canonical.com>
*
*/
#include "cellular.h"
#include <QDebug>
#include <QDBusReply>
#define AS_INTERFACE "com.lomiri.touch.AccountsService.Phone"
Cellular::Cellular(QObject *parent) :
QObject(parent)
{
connect (&m_accountsService,
SIGNAL (propertyChanged (QString, QString)),
this,
SLOT (slotChanged (QString, QString)));
connect (&m_accountsService,
SIGNAL (nameOwnerChanged()),
this,
SLOT (slotNameOwnerChanged()));
}
void Cellular::slotChanged(QString interface,
QString property)
{
if (interface != AS_INTERFACE)
return;
if (property == "DefaultSimForCalls") {
Q_EMIT defaultSimForCallsChanged();
} else if (property == "DefaultSimForMessages") {
Q_EMIT defaultSimForMessagesChanged();
} else if (property == "SimNames") {
Q_EMIT simNamesChanged();
}
}
void Cellular::slotNameOwnerChanged()
{
// Tell QML so that it refreshes its view of the property
Q_EMIT defaultSimForCallsChanged();
Q_EMIT defaultSimForMessagesChanged();
Q_EMIT simNamesChanged();
}
QString Cellular::getDefaultSimForCalls()
{
return m_accountsService.getUserProperty(AS_INTERFACE,
"DefaultSimForCalls").toString();
}
void Cellular::setDefaultSimForCalls(QString sim)
{
if (sim == getDefaultSimForCalls())
return;
m_accountsService.setUserProperty(AS_INTERFACE,
"DefaultSimForCalls",
QVariant::fromValue(sim));
}
QString Cellular::getDefaultSimForMessages()
{
return m_accountsService.getUserProperty(AS_INTERFACE,
"DefaultSimForMessages").toString();
}
void Cellular::setDefaultSimForMessages(QString sim)
{
if (sim == getDefaultSimForMessages())
return;
m_accountsService.setUserProperty(AS_INTERFACE,
"DefaultSimForMessages",
QVariant::fromValue(sim));
}
QVariantMap Cellular::getSimNames()
{
QVariantMap namesAsVariantMap;
QVariant value = m_accountsService.getUserProperty(AS_INTERFACE, "SimNames");
// the signature is a{ss} instead of a{sv}
QMap<QString, QString> names = qdbus_cast<QMap<QString, QString> >(value);
QMapIterator<QString, QString> i(names);
while (i.hasNext()) {
i.next();
namesAsVariantMap[i.key()] = i.value();
}
return namesAsVariantMap;
}
void Cellular::setSimNames(QVariantMap sims)
{
QMap<QString, QString> map;
for(QVariantMap::const_iterator iter = sims.begin(); iter != sims.end(); ++iter) {
map.insert(iter.key(), iter.value().toString());
}
m_accountsService.setUserProperty(AS_INTERFACE,
"SimNames",
QVariant::fromValue(map));
}
|