Qt bindings for oFono cellular services 1.30
ofonosimmanager.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 <alex.kanavin@gmail.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 OFONOSIMMANAGER_H
25#define OFONOSIMMANAGER_H
26
27#include <QtCore/QObject>
28#include <QStringList>
29#include <QDBusError>
30#include "ofonomodeminterface.h"
31#include "libofono-qt_global.h"
32
33typedef QMap<QString, QString> OfonoServiceNumbers;
34Q_DECLARE_METATYPE(OfonoServiceNumbers);
35
36typedef QMap<QString, quint8> OfonoPinRetries;
37Q_DECLARE_METATYPE(OfonoPinRetries);
38
40
44class OFONO_QT_EXPORT OfonoSimManager : public OfonoModemInterface
45{
46 Q_OBJECT
47
48 Q_PROPERTY(bool present READ present NOTIFY presenceChanged)
49 Q_PROPERTY(QString subscriberIdentity READ subscriberIdentity NOTIFY subscriberIdentityChanged)
50 Q_PROPERTY(QString mobileCountryCode READ mobileCountryCode NOTIFY mobileCountryCodeChanged)
51 Q_PROPERTY(QString mobileNetworkCode READ mobileNetworkCode NOTIFY mobileNetworkCodeChanged)
52 Q_PROPERTY(QStringList subscriberNumbers READ subscriberNumbers WRITE setSubscriberNumbers NOTIFY subscriberNumbersChanged)
53 Q_PROPERTY(QString pinRequired READ pinRequired NOTIFY pinRequiredChanged)
54 Q_PROPERTY(QStringList lockedPins READ lockedPins NOTIFY lockedPinsChanged)
55 Q_PROPERTY(QString cardIdentifier READ cardIdentifier NOTIFY cardIdentifierChanged)
56 Q_PROPERTY(QStringList preferredLanguages READ preferredLanguages NOTIFY preferredLanguagesChanged)
57 Q_PROPERTY(OfonoPinRetries pinRetries READ pinRetries NOTIFY pinRetriesChanged)
58 Q_PROPERTY(bool fixedDialing READ fixedDialing NOTIFY fixedDialingChanged)
59 Q_PROPERTY(bool barredDialing READ barredDialing NOTIFY barredDialingChanged)
60
61public:
62 OfonoSimManager(OfonoModem::SelectionSetting modemSetting, const QString &modemPath, QObject *parent=0);
64
65 /* Properties */
66 bool present() const;
67 QString subscriberIdentity() const;
68 QString mobileCountryCode() const;
69 QString mobileNetworkCode() const;
70 QStringList subscriberNumbers() const;
71 OfonoServiceNumbers serviceNumbers() const;
72 QString pinRequired() const;
73 QStringList lockedPins() const;
74 QString cardIdentifier() const;
75 QStringList preferredLanguages() const;
76 OfonoPinRetries pinRetries() const;
77 bool fixedDialing() const;
78 bool barredDialing() const;
79
80public Q_SLOTS:
81 void changePin(const QString &pintype, const QString &oldpin, const QString &newpin);
82 void enterPin(const QString &pintype, const QString &pin);
83 void resetPin(const QString &pintype, const QString &puk, const QString &newpin);
84 void lockPin(const QString &pintype, const QString &pin);
85 void unlockPin(const QString &pintype, const QString &pin);
86 void getIcon(quint8 id);
87
88 void setSubscriberNumbers(const QStringList &numbers);
89
90Q_SIGNALS:
91 void presenceChanged(bool ispresent);
92 void subscriberIdentityChanged(const QString &imsi);
93 void mobileCountryCodeChanged(const QString &mcc);
94 void mobileNetworkCodeChanged(const QString &mnc);
95 void subscriberNumbersChanged(const QStringList &msisdns);
96 void setSubscriberNumbersFailed();
97 void serviceNumbersChanged(const OfonoServiceNumbers &sdns);
98 void pinRequiredChanged(const QString &pintype);
99 void lockedPinsChanged(const QStringList &pins);
100 void cardIdentifierChanged(const QString &iccid);
101 void preferredLanguagesChanged(const QStringList &languages);
102 void pinRetriesChanged(const OfonoPinRetries &pinRetries);
103 void fixedDialingChanged(bool fixedDialing);
104 void barredDialingChanged(bool barredDialing);
105
106 void changePinComplete(bool success);
107 void enterPinComplete(bool success);
108 void resetPinComplete(bool success);
109 void lockPinComplete(bool success);
110 void unlockPinComplete(bool success);
111 void getIconComplete(bool success, const QByteArray &icon);
112
113private Q_SLOTS:
114 void propertyChanged(const QString& property, const QVariant& value);
115 void setPropertyFailed(const QString& property);
116
117 void changePinResp();
118 void changePinErr(QDBusError error);
119 void enterPinResp();
120 void enterPinErr(QDBusError error);
121 void resetPinResp();
122 void resetPinErr(QDBusError error);
123 void lockPinResp();
124 void lockPinErr(QDBusError error);
125 void unlockPinResp();
126 void unlockPinErr(QDBusError error);
127 void getIconResp(QByteArray icon);
128 void getIconErr(QDBusError error);
129
130private:
131
132};
133
134#endif /* !OFONOSIMMANAGER_H */
This class implements a generic modem interface object.
Definition ofonomodeminterface.h:42
SelectionSetting
How the modem object should select a modem.
Definition ofonomodem.h:68
This class is used to access oFono SIM API.
Definition ofonosimmanager.h:45