Add support for ipv6 settings property
[profile/ivi/ofono-qt.git] / lib / 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 <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 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
33 typedef QMap<QString, QString> OfonoServiceNumbers;
34 Q_DECLARE_METATYPE(OfonoServiceNumbers);
35
36 typedef QMap<QString, quint8> OfonoPinRetries;
37 Q_DECLARE_METATYPE(OfonoPinRetries);
38
39 //! This class is used to access oFono SIM API
40 /*!
41  * The API is documented in
42  * http://git.kernel.org/?p=network/ofono/ofono.git;a=blob_plain;f=doc/sim-api.txt
43  */
44 class OFONO_QT_EXPORT OfonoSimManager : public OfonoModemInterface
45 {
46     Q_OBJECT
47
48 public:
49     OfonoSimManager(OfonoModem::SelectionSetting modemSetting, const QString &modemPath, QObject *parent=0);
50     ~OfonoSimManager();
51
52     /* Properties */
53     bool present() const;
54     QString subscriberIdentity() const;
55     QString mobileCountryCode() const;
56     QString mobileNetworkCode() const;
57     QStringList subscriberNumbers() const;
58     OfonoServiceNumbers serviceNumbers() const;
59     QString pinRequired() const;
60     QStringList lockedPins() const;
61     QString cardIdentifier() const;
62     QStringList preferredLanguages() const;
63     OfonoPinRetries pinRetries() const;
64
65     void changePin(const QString &pintype, const QString &oldpin, const QString &newpin);
66     void enterPin(const QString &pintype, const QString &pin);
67     void resetPin(const QString &pintype, const QString &puk, const QString &newpin);
68     void lockPin(const QString &pintype, const QString &pin);
69     void unlockPin(const QString &pintype, const QString &pin);
70
71     void setSubscriberNumbers(const QStringList &numbers);
72
73 signals:
74     void presenceChanged(bool ispresent);
75     void subscriberIdentityChanged(const QString &imsi);
76     void mobileCountryCodeChanged(const QString &mcc);
77     void mobileNetworkCodeChanged(const QString &mnc);
78     void subscriberNumbersChanged(const QStringList &msisdns);
79     void setSubscriberNumbersFailed();
80     void serviceNumbersChanged(const OfonoServiceNumbers &sdns);
81     void pinRequiredChanged(const QString &pintype);
82     void lockedPinsChanged(const QStringList &pins);
83     void cardIdentifierChanged(const QString &iccid);
84     void preferredLanguagesChanged(const QStringList &languages);
85     void pinRetriesChanged(const OfonoPinRetries &pinRetries);
86
87     void changePinComplete(bool success);
88     void enterPinComplete(bool success);
89     void resetPinComplete(bool success);
90     void lockPinComplete(bool success);
91     void unlockPinComplete(bool success);
92
93
94 private slots:
95     void propertyChanged(const QString& property, const QVariant& value);
96     void setPropertyFailed(const QString& property);    
97
98     void changePinResp();
99     void changePinErr(QDBusError error);
100     void enterPinResp();
101     void enterPinErr(QDBusError error);
102     void resetPinResp();
103     void resetPinErr(QDBusError error);
104     void lockPinResp();
105     void lockPinErr(QDBusError error);
106     void unlockPinResp();
107     void unlockPinErr(QDBusError error);
108
109 private:
110
111 };
112
113 #endif  /* !OFONOSIMMANAGER_H */