51 Q_PROPERTY(
bool attached READ attached NOTIFY attachedChanged)
52 Q_PROPERTY(QString bearer READ bearer NOTIFY bearerChanged)
53 Q_PROPERTY(
bool suspended READ suspended NOTIFY suspendedChanged)
54 Q_PROPERTY(
bool roamingAllowed READ roamingAllowed WRITE setRoamingAllowed NOTIFY roamingAllowedChanged)
55 Q_PROPERTY(
bool powered READ powered WRITE setPowered NOTIFY poweredChanged)
61 Q_INVOKABLE QStringList getContexts();
64 bool attached()
const;
65 QString bearer()
const;
66 bool suspended()
const;
67 bool roamingAllowed()
const;
71 void setPowered(
const bool);
72 void setRoamingAllowed(
const bool);
74 QDBusObjectPath addContext(
const QString& type,
bool &success);
75 void removeContext(
const QString& path);
78 void attachedChanged(
const bool value);
79 void bearerChanged(
const QString &bearer);
80 void suspendedChanged(
const bool suspnd);
81 void roamingAllowedChanged(
const bool roaming);
82 void poweredChanged(
const bool powrd);
83 void contextAdded(
const QString& path);
84 void contextRemoved(
const QString& path);
86 void deactivateAllComplete(
bool success);
87 void addContextComplete(
bool success,
const QString& path);
88 void removeContextComplete(
bool success);
90 void setPoweredFailed();
91 void setRoamingAllowedFailed();
94 void validityChanged(
bool);
95 void pathChanged(
const QString& path);
96 void propertyChanged(
const QString& property,
const QVariant& value);
97 void contextAddedChanged(
const QDBusObjectPath &path,
const QVariantMap &properties);
98 void contextRemovedChanged(
const QDBusObjectPath &path);
99 void deactivateAllResp();
100 void deactivateAllErr(
const QDBusError& error);
101 void addContextResp(
const QDBusObjectPath &path);
102 void addContextErr(
const QDBusError& error);
103 void removeContextResp();
104 void removeContextErr(
const QDBusError& error);
105 void setPropertyFailed(
const QString& property);
107 QStringList getContextList();
108 void connectDbusSignals(
const QString& path);
110 QStringList m_contextlist;
OfonoModemInterface(OfonoModem::SelectionSetting modemSetting, const QString &modemPath, const QString &ifname, OfonoGetPropertySetting propertySetting, QObject *parent=0)
Construct a modem interface object.