51 Q_PROPERTY(QString mode READ mode NOTIFY modeChanged)
52 Q_PROPERTY(QString status READ status NOTIFY statusChanged)
53 Q_PROPERTY(uint locationAreaCode READ locationAreaCode NOTIFY locationAreaCodeChanged)
54 Q_PROPERTY(uint cellId READ cellId NOTIFY cellIdChanged)
55 Q_PROPERTY(QString mcc READ mcc NOTIFY mccChanged)
56 Q_PROPERTY(QString mnc READ mnc NOTIFY mncChanged)
57 Q_PROPERTY(QString technology READ technology NOTIFY technologyChanged)
58 Q_PROPERTY(QString name READ name NOTIFY nameChanged)
59 Q_PROPERTY(uint strength READ strength NOTIFY strengthChanged)
60 Q_PROPERTY(QString baseStation READ baseStation NOTIFY baseStationChanged)
64 ~OfonoNetworkRegistration();
68 QString status()
const;
69 uint locationAreaCode()
const;
73 QString technology()
const;
75 uint strength()
const;
76 QString baseStation()
const;
84 void modeChanged(
const QString &mode);
85 void statusChanged(
const QString &status);
86 void locationAreaCodeChanged(uint locationAreaCode);
87 void cellIdChanged(uint cellId);
88 void mccChanged(
const QString &mcc);
89 void mncChanged(
const QString &mnc);
90 void technologyChanged(
const QString &technology);
91 void nameChanged(
const QString &name);
92 void strengthChanged(uint strength);
93 void baseStationChanged(
const QString &baseStation);
95 void registerComplete(
bool success);
96 void getOperatorsComplete(
bool success,
const QStringList &operatorIds);
97 void scanComplete(
bool success,
const QStringList &operatorIds);
100 void propertyChanged(
const QString& property,
const QVariant& value);
102 void registerErr(QDBusError error);
103 void getOperatorsResp(OfonoOperatorList list);
104 void getOperatorsErr(QDBusError error);
105 void scanResp(OfonoOperatorList list);
106 void scanErr(QDBusError error);
OfonoModemInterface(OfonoModem::SelectionSetting modemSetting, const QString &modemPath, const QString &ifname, OfonoGetPropertySetting propertySetting, QObject *parent=0)
Construct a modem interface object.