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