Home · All Classes · All Namespaces · Modules · Functions · Files
Signals | Public Member Functions | Static Public Member Functions | Protected Member Functions | Properties

Tp::Client::ConnectionInterfaceCellularInterface Class Reference
[Connection proxies]

#include <TelepathyQt4/Connection>

Inherits Tp::AbstractInterface.

List of all members.

Signals

Public Member Functions

Static Public Member Functions

Protected Member Functions

Properties


Detailed Description

Proxy class providing a 1:1 mapping of the D-Bus interface "org.freedesktop.Telepathy.Connection.Interface.Cellular."


Constructor & Destructor Documentation

Tp::Client::ConnectionInterfaceCellularInterface::ConnectionInterfaceCellularInterface ( const QString &  busName,
const QString &  objectPath,
QObject *  parent = 0 
)

Creates a ConnectionInterfaceCellularInterface associated with the given object on the session bus.

Parameters:
busName Name of the service the object is on.
objectPath Path to the object on the service.
parent Passed to the parent class constructor.
Tp::Client::ConnectionInterfaceCellularInterface::ConnectionInterfaceCellularInterface ( const QDBusConnection &  connection,
const QString &  busName,
const QString &  objectPath,
QObject *  parent = 0 
)

Creates a ConnectionInterfaceCellularInterface associated with the given object on the given bus.

Parameters:
connection The bus via which the object can be reached.
busName Name of the service the object is on.
objectPath Path to the object on the service.
parent Passed to the parent class constructor.
Tp::Client::ConnectionInterfaceCellularInterface::ConnectionInterfaceCellularInterface ( Tp::DBusProxy proxy  ) 

Creates a ConnectionInterfaceCellularInterface associated with the same object as the given proxy.

Parameters:
proxy The proxy to use. It will also be the QObject::parent() for this object.
Tp::Client::ConnectionInterfaceCellularInterface::ConnectionInterfaceCellularInterface ( const Tp::Client::ConnectionInterface mainInterface  )  [explicit]

Creates a ConnectionInterfaceCellularInterface associated with the same object as the given proxy. Additionally, the created proxy will have the same parent as the given proxy.

Parameters:
mainInterface The proxy to use.
Tp::Client::ConnectionInterfaceCellularInterface::ConnectionInterfaceCellularInterface ( const Tp::Client::ConnectionInterface mainInterface,
QObject *  parent 
)

Creates a ConnectionInterfaceCellularInterface associated with the same object as the given proxy. However, a different parent object can be specified.

Parameters:
mainInterface The proxy to use.
parent Passed to the parent class constructor.

Member Function Documentation

static const char* Tp::Client::ConnectionInterfaceCellularInterface::staticInterfaceName (  )  [inline, static]

Returns the name of the interface "org.freedesktop.Telepathy.Connection.Interface.Cellular", which this class represents.

Returns:
The D-Bus interface name.
TELEPATHY_QT4_DEPRECATED uint Tp::Client::ConnectionInterfaceCellularInterface::MessageValidityPeriod (  )  const [inline]

Getter for the remote object property "MessageValidityPeriod".

Don't use this: it blocks the main loop. Use the asynchronous requestPropertyMessageValidityPeriod() instead.

Returns:
The value of the property, or a default-constructed value if the property is not readable.
Tp::PendingVariant* Tp::Client::ConnectionInterfaceCellularInterface::requestPropertyMessageValidityPeriod (  )  const [inline]

Asynchronous getter for the remote object property "MessageValidityPeriod" of type uint.

Define how long should the service centre try message delivery before giving up, failing delivery and deleting the message. A value of 0 means to use the service centre's default period.

The value specified is in seconds. Note that various protocols or implementations may round the value up (eg. to a minute or hour precision). The maximum validity period may vary depending on protocol or provider.

Connections with this interface SHOULD provide this property as a parameter of the same (fully-qualified) name to <tp:dbus-ref namespace="org.freedesktop.Telepathy">ConnectionManager.RequestConnection</tp:dbus-ref>, with the DBus_Property flag. For connections managed by the <tp:dbus-ref namespace="org.freedesktop.Telepathy">AccountManager</tp:dbus-ref>, this property SHOULD be set via the Account Manager as follows:

<blockquote> <tp:dbus-ref namespace="org.freedesktop.Telepathy.Account">UpdateParameters</tp:dbus-ref>({ "org.freedesktop.Telepathy.Connection.Interface.Cellular.MessageValidityPeriod": new_validity_period }, []) </blockquote>

The AccountManager provides change-notification, as long as all other clients cooperate by using it instead of setting this property directly.

Returns:
A pending variant which will emit finished when the property has been retrieved.
TELEPATHY_QT4_DEPRECATED void Tp::Client::ConnectionInterfaceCellularInterface::setMessageValidityPeriod ( uint  newValue  )  [inline]

Setter for the remote object property "MessageValidityPeriod".

Don't use this: it blocks the main loop.

Parameters:
newValue The value to set the property to.
Tp::PendingOperation* Tp::Client::ConnectionInterfaceCellularInterface::setPropertyMessageValidityPeriod ( uint  newValue  )  [inline]

Asynchronous setter for the remote object property "MessageValidityPeriod" of type uint.

Define how long should the service centre try message delivery before giving up, failing delivery and deleting the message. A value of 0 means to use the service centre's default period.

The value specified is in seconds. Note that various protocols or implementations may round the value up (eg. to a minute or hour precision). The maximum validity period may vary depending on protocol or provider.

Connections with this interface SHOULD provide this property as a parameter of the same (fully-qualified) name to <tp:dbus-ref namespace="org.freedesktop.Telepathy">ConnectionManager.RequestConnection</tp:dbus-ref>, with the DBus_Property flag. For connections managed by the <tp:dbus-ref namespace="org.freedesktop.Telepathy">AccountManager</tp:dbus-ref>, this property SHOULD be set via the Account Manager as follows:

<blockquote> <tp:dbus-ref namespace="org.freedesktop.Telepathy.Account">UpdateParameters</tp:dbus-ref>({ "org.freedesktop.Telepathy.Connection.Interface.Cellular.MessageValidityPeriod": new_validity_period }, []) </blockquote>

The AccountManager provides change-notification, as long as all other clients cooperate by using it instead of setting this property directly.

Returns:
A pending operation which will emit finished when the property has been set.
TELEPATHY_QT4_DEPRECATED bool Tp::Client::ConnectionInterfaceCellularInterface::OverrideMessageServiceCentre (  )  const [inline]

Getter for the remote object property "OverrideMessageServiceCentre".

Don't use this: it blocks the main loop. Use the asynchronous requestPropertyOverrideMessageServiceCentre() instead.

Returns:
The value of the property, or a default-constructed value if the property is not readable.
Tp::PendingVariant* Tp::Client::ConnectionInterfaceCellularInterface::requestPropertyOverrideMessageServiceCentre (  )  const [inline]

Asynchronous getter for the remote object property "OverrideMessageServiceCentre" of type bool.

If True, SMSes will be sent via the service centre specified by <tp:member-ref>MessageServiceCentre</tp:member-ref>. If False, the SIM's default SMSC will be used, ignoring the value of MessageServiceCentre.

<tp:rationale>

It could be desirable for a configuration interface to remember the user's previous choice of custom SMSC, even if it's not in use. This boolean allows that choice to be saved as an account parameter by Mission Control, rather than the UI needing to save it elsewhere to be restored if the user wants to reactivate it. </tp:rationale>

Connections with this interface SHOULD provide this property as a parameter of the same (fully-qualified) name to <tp:dbus-ref namespace="org.freedesktop.Telepathy">ConnectionManager.RequestConnection</tp:dbus-ref>, with the DBus_Property flag. For connections managed by the <tp:dbus-ref namespace="org.freedesktop.Telepathy">AccountManager</tp:dbus-ref>, this property SHOULD be set via the Account Manager as follows:

<blockquote> <tp:dbus-ref namespace="org.freedesktop.Telepathy.Account">UpdateParameters</tp:dbus-ref>({ "org.freedesktop.Telepathy.Connection.Interface.Cellular.OverrideMessageServiceCentre": True }, []) </blockquote>

The AccountManager provides change-notification, as long as all other clients cooperate by using it instead of setting this property directly.

Returns:
A pending variant which will emit finished when the property has been retrieved.
TELEPATHY_QT4_DEPRECATED void Tp::Client::ConnectionInterfaceCellularInterface::setOverrideMessageServiceCentre ( bool  newValue  )  [inline]

Setter for the remote object property "OverrideMessageServiceCentre".

Don't use this: it blocks the main loop.

Parameters:
newValue The value to set the property to.
Tp::PendingOperation* Tp::Client::ConnectionInterfaceCellularInterface::setPropertyOverrideMessageServiceCentre ( bool  newValue  )  [inline]

Asynchronous setter for the remote object property "OverrideMessageServiceCentre" of type bool.

If True, SMSes will be sent via the service centre specified by <tp:member-ref>MessageServiceCentre</tp:member-ref>. If False, the SIM's default SMSC will be used, ignoring the value of MessageServiceCentre.

<tp:rationale>

It could be desirable for a configuration interface to remember the user's previous choice of custom SMSC, even if it's not in use. This boolean allows that choice to be saved as an account parameter by Mission Control, rather than the UI needing to save it elsewhere to be restored if the user wants to reactivate it. </tp:rationale>

Connections with this interface SHOULD provide this property as a parameter of the same (fully-qualified) name to <tp:dbus-ref namespace="org.freedesktop.Telepathy">ConnectionManager.RequestConnection</tp:dbus-ref>, with the DBus_Property flag. For connections managed by the <tp:dbus-ref namespace="org.freedesktop.Telepathy">AccountManager</tp:dbus-ref>, this property SHOULD be set via the Account Manager as follows:

<blockquote> <tp:dbus-ref namespace="org.freedesktop.Telepathy.Account">UpdateParameters</tp:dbus-ref>({ "org.freedesktop.Telepathy.Connection.Interface.Cellular.OverrideMessageServiceCentre": True }, []) </blockquote>

The AccountManager provides change-notification, as long as all other clients cooperate by using it instead of setting this property directly.

Returns:
A pending operation which will emit finished when the property has been set.
TELEPATHY_QT4_DEPRECATED QString Tp::Client::ConnectionInterfaceCellularInterface::MessageServiceCentre (  )  const [inline]

Getter for the remote object property "MessageServiceCentre".

Don't use this: it blocks the main loop. Use the asynchronous requestPropertyMessageServiceCentre() instead.

Returns:
The value of the property, or a default-constructed value if the property is not readable.
Tp::PendingVariant* Tp::Client::ConnectionInterfaceCellularInterface::requestPropertyMessageServiceCentre (  )  const [inline]

Asynchronous getter for the remote object property "MessageServiceCentre" of type QString.

Address for the messaging service centre. Typically (as is the case for GSM's SMSC), it's the ISDN / telephony address (ie. a phone number). If <tp:member-ref>OverrideMessageServiceCentre</tp:member-ref> is False, this property's value should be ignored by the CM in favour of the SIM's default SMSC.

Connections with this interface SHOULD provide this property as a parameter of the same (fully-qualified) name to <tp:dbus-ref namespace="org.freedesktop.Telepathy">ConnectionManager.RequestConnection</tp:dbus-ref>, with the DBus_Property flag. For connections managed by the <tp:dbus-ref namespace="org.freedesktop.Telepathy">AccountManager</tp:dbus-ref>, this property SHOULD be set via the Account Manager as follows:

<blockquote> <tp:dbus-ref namespace="org.freedesktop.Telepathy.Account">UpdateParameters</tp:dbus-ref>({ "org.freedesktop.Telepathy.Connection.Interface.Cellular.MessageServiceCentre": new_smsc_address }, []) </blockquote>

The AccountManager provides change-notification, as long as all other clients cooperate by using it instead of setting this property directly.

Returns:
A pending variant which will emit finished when the property has been retrieved.
TELEPATHY_QT4_DEPRECATED void Tp::Client::ConnectionInterfaceCellularInterface::setMessageServiceCentre ( const QString &  newValue  )  [inline]

Setter for the remote object property "MessageServiceCentre".

Don't use this: it blocks the main loop.

Parameters:
newValue The value to set the property to.
Tp::PendingOperation* Tp::Client::ConnectionInterfaceCellularInterface::setPropertyMessageServiceCentre ( QString  newValue  )  [inline]

Asynchronous setter for the remote object property "MessageServiceCentre" of type QString.

Address for the messaging service centre. Typically (as is the case for GSM's SMSC), it's the ISDN / telephony address (ie. a phone number). If <tp:member-ref>OverrideMessageServiceCentre</tp:member-ref> is False, this property's value should be ignored by the CM in favour of the SIM's default SMSC.

Connections with this interface SHOULD provide this property as a parameter of the same (fully-qualified) name to <tp:dbus-ref namespace="org.freedesktop.Telepathy">ConnectionManager.RequestConnection</tp:dbus-ref>, with the DBus_Property flag. For connections managed by the <tp:dbus-ref namespace="org.freedesktop.Telepathy">AccountManager</tp:dbus-ref>, this property SHOULD be set via the Account Manager as follows:

<blockquote> <tp:dbus-ref namespace="org.freedesktop.Telepathy.Account">UpdateParameters</tp:dbus-ref>({ "org.freedesktop.Telepathy.Connection.Interface.Cellular.MessageServiceCentre": new_smsc_address }, []) </blockquote>

The AccountManager provides change-notification, as long as all other clients cooperate by using it instead of setting this property directly.

Returns:
A pending operation which will emit finished when the property has been set.
TELEPATHY_QT4_DEPRECATED QString Tp::Client::ConnectionInterfaceCellularInterface::IMSI (  )  const [inline]

Getter for the remote object property "IMSI".

Don't use this: it blocks the main loop. Use the asynchronous requestPropertyIMSI() instead.

Returns:
The value of the property, or a default-constructed value if the property is not readable.
Tp::PendingVariant* Tp::Client::ConnectionInterfaceCellularInterface::requestPropertyIMSI (  )  const [inline]

Asynchronous getter for the remote object property "IMSI" of type QString.

The International Mobile Subscriber Identifier, if it exists. This would originate from a SIM card. If the IMSI is unknown, this will contain an empty string ("").

Returns:
A pending variant which will emit finished when the property has been retrieved.
TELEPATHY_QT4_DEPRECATED bool Tp::Client::ConnectionInterfaceCellularInterface::MessageReducedCharacterSet (  )  const [inline]

Getter for the remote object property "MessageReducedCharacterSet".

Don't use this: it blocks the main loop. Use the asynchronous requestPropertyMessageReducedCharacterSet() instead.

Returns:
The value of the property, or a default-constructed value if the property is not readable.
Tp::PendingVariant* Tp::Client::ConnectionInterfaceCellularInterface::requestPropertyMessageReducedCharacterSet (  )  const [inline]

Asynchronous getter for the remote object property "MessageReducedCharacterSet" of type bool.

Determines whether SMSes containing characters that do not fit into a 7‐bit GSM character set should be sent as UCS‐2, or lossily recoded. If False (which SHOULD be the default), messages will be sent with no loss of fidelity (at the potential financial cost of using twice as many SMSes); if True, the message will be recoded in an implementation‐specific way to fit into a country‐specific GSM reduced character set.

Connections with this interface SHOULD provide this property as a parameter of the same (fully-qualified) name to <tp:dbus-ref namespace="org.freedesktop.Telepathy">ConnectionManager.RequestConnection</tp:dbus-ref>, with the DBus_Property flag. For connections managed by the <tp:dbus-ref namespace="org.freedesktop.Telepathy">AccountManager</tp:dbus-ref>, this property SHOULD be set via the Account Manager as follows:

<blockquote> <tp:dbus-ref namespace="org.freedesktop.Telepathy.Account">UpdateParameters</tp:dbus-ref>({ "org.freedesktop.Telepathy.Connection.Interface.Cellular.MessageReducedCharacterSet": new_value }, []) </blockquote>

The AccountManager provides change-notification, as long as all other clients cooperate by using it instead of setting this property directly.

Returns:
A pending variant which will emit finished when the property has been retrieved.
TELEPATHY_QT4_DEPRECATED void Tp::Client::ConnectionInterfaceCellularInterface::setMessageReducedCharacterSet ( bool  newValue  )  [inline]

Setter for the remote object property "MessageReducedCharacterSet".

Don't use this: it blocks the main loop.

Parameters:
newValue The value to set the property to.
Tp::PendingOperation* Tp::Client::ConnectionInterfaceCellularInterface::setPropertyMessageReducedCharacterSet ( bool  newValue  )  [inline]

Asynchronous setter for the remote object property "MessageReducedCharacterSet" of type bool.

Determines whether SMSes containing characters that do not fit into a 7‐bit GSM character set should be sent as UCS‐2, or lossily recoded. If False (which SHOULD be the default), messages will be sent with no loss of fidelity (at the potential financial cost of using twice as many SMSes); if True, the message will be recoded in an implementation‐specific way to fit into a country‐specific GSM reduced character set.

Connections with this interface SHOULD provide this property as a parameter of the same (fully-qualified) name to <tp:dbus-ref namespace="org.freedesktop.Telepathy">ConnectionManager.RequestConnection</tp:dbus-ref>, with the DBus_Property flag. For connections managed by the <tp:dbus-ref namespace="org.freedesktop.Telepathy">AccountManager</tp:dbus-ref>, this property SHOULD be set via the Account Manager as follows:

<blockquote> <tp:dbus-ref namespace="org.freedesktop.Telepathy.Account">UpdateParameters</tp:dbus-ref>({ "org.freedesktop.Telepathy.Connection.Interface.Cellular.MessageReducedCharacterSet": new_value }, []) </blockquote>

The AccountManager provides change-notification, as long as all other clients cooperate by using it instead of setting this property directly.

Returns:
A pending operation which will emit finished when the property has been set.
Tp::PendingVariantMap* Tp::Client::ConnectionInterfaceCellularInterface::requestAllProperties (  )  const [inline]

Request all of the DBus properties on the interface.

Returns:
A pending variant map which will emit finished when the properties have been retrieved.
void Tp::Client::ConnectionInterfaceCellularInterface::IMSIChanged ( const QString &  IMSI  )  [signal]

Represents the signal "IMSIChanged" on the remote object.

Emitted when the IMSI for the connection changes. This sort of thing is rare, but could happen on cellular phones that allow hot-swapping of SIM cards. In the case of SIM swapping, this signal would be emitted twice; the first time while the SIM is being ejected (with an empty string), and the second time after a new SIM has been inserted (assuming that the IMSI can be determined from the new SIM).

Parameters:
IMSI The new IMSI value. This may be an empty string in the case where the IMSI is being reset or removed.
void Tp::Client::ConnectionInterfaceCellularInterface::invalidate ( Tp::DBusProxy proxy,
const QString &  error,
const QString &  message 
) [protected, virtual]

Reimplemented from Tp::AbstractInterface.


Property Documentation

uint Tp::Client::ConnectionInterfaceCellularInterface::MessageValidityPeriod [read, write]

Represents property "MessageValidityPeriod" on the remote object.

Define how long should the service centre try message delivery before giving up, failing delivery and deleting the message. A value of 0 means to use the service centre's default period.

The value specified is in seconds. Note that various protocols or implementations may round the value up (eg. to a minute or hour precision). The maximum validity period may vary depending on protocol or provider.

Connections with this interface SHOULD provide this property as a parameter of the same (fully-qualified) name to <tp:dbus-ref namespace="org.freedesktop.Telepathy">ConnectionManager.RequestConnection</tp:dbus-ref>, with the DBus_Property flag. For connections managed by the <tp:dbus-ref namespace="org.freedesktop.Telepathy">AccountManager</tp:dbus-ref>, this property SHOULD be set via the Account Manager as follows:

<blockquote> <tp:dbus-ref namespace="org.freedesktop.Telepathy.Account">UpdateParameters</tp:dbus-ref>({ "org.freedesktop.Telepathy.Connection.Interface.Cellular.MessageValidityPeriod": new_validity_period }, []) </blockquote>

The AccountManager provides change-notification, as long as all other clients cooperate by using it instead of setting this property directly.

bool Tp::Client::ConnectionInterfaceCellularInterface::OverrideMessageServiceCentre [read, write]

Represents property "OverrideMessageServiceCentre" on the remote object.

If True, SMSes will be sent via the service centre specified by <tp:member-ref>MessageServiceCentre</tp:member-ref>. If False, the SIM's default SMSC will be used, ignoring the value of MessageServiceCentre.

<tp:rationale>

It could be desirable for a configuration interface to remember the user's previous choice of custom SMSC, even if it's not in use. This boolean allows that choice to be saved as an account parameter by Mission Control, rather than the UI needing to save it elsewhere to be restored if the user wants to reactivate it. </tp:rationale>

Connections with this interface SHOULD provide this property as a parameter of the same (fully-qualified) name to <tp:dbus-ref namespace="org.freedesktop.Telepathy">ConnectionManager.RequestConnection</tp:dbus-ref>, with the DBus_Property flag. For connections managed by the <tp:dbus-ref namespace="org.freedesktop.Telepathy">AccountManager</tp:dbus-ref>, this property SHOULD be set via the Account Manager as follows:

<blockquote> <tp:dbus-ref namespace="org.freedesktop.Telepathy.Account">UpdateParameters</tp:dbus-ref>({ "org.freedesktop.Telepathy.Connection.Interface.Cellular.OverrideMessageServiceCentre": True }, []) </blockquote>

The AccountManager provides change-notification, as long as all other clients cooperate by using it instead of setting this property directly.

QString Tp::Client::ConnectionInterfaceCellularInterface::MessageServiceCentre [read, write]

Represents property "MessageServiceCentre" on the remote object.

Address for the messaging service centre. Typically (as is the case for GSM's SMSC), it's the ISDN / telephony address (ie. a phone number). If <tp:member-ref>OverrideMessageServiceCentre</tp:member-ref> is False, this property's value should be ignored by the CM in favour of the SIM's default SMSC.

Connections with this interface SHOULD provide this property as a parameter of the same (fully-qualified) name to <tp:dbus-ref namespace="org.freedesktop.Telepathy">ConnectionManager.RequestConnection</tp:dbus-ref>, with the DBus_Property flag. For connections managed by the <tp:dbus-ref namespace="org.freedesktop.Telepathy">AccountManager</tp:dbus-ref>, this property SHOULD be set via the Account Manager as follows:

<blockquote> <tp:dbus-ref namespace="org.freedesktop.Telepathy.Account">UpdateParameters</tp:dbus-ref>({ "org.freedesktop.Telepathy.Connection.Interface.Cellular.MessageServiceCentre": new_smsc_address }, []) </blockquote>

The AccountManager provides change-notification, as long as all other clients cooperate by using it instead of setting this property directly.

QString Tp::Client::ConnectionInterfaceCellularInterface::IMSI [read]

Represents property "IMSI" on the remote object.

The International Mobile Subscriber Identifier, if it exists. This would originate from a SIM card. If the IMSI is unknown, this will contain an empty string ("").

bool Tp::Client::ConnectionInterfaceCellularInterface::MessageReducedCharacterSet [read, write]

Represents property "MessageReducedCharacterSet" on the remote object.

Determines whether SMSes containing characters that do not fit into a 7‐bit GSM character set should be sent as UCS‐2, or lossily recoded. If False (which SHOULD be the default), messages will be sent with no loss of fidelity (at the potential financial cost of using twice as many SMSes); if True, the message will be recoded in an implementation‐specific way to fit into a country‐specific GSM reduced character set.

Connections with this interface SHOULD provide this property as a parameter of the same (fully-qualified) name to <tp:dbus-ref namespace="org.freedesktop.Telepathy">ConnectionManager.RequestConnection</tp:dbus-ref>, with the DBus_Property flag. For connections managed by the <tp:dbus-ref namespace="org.freedesktop.Telepathy">AccountManager</tp:dbus-ref>, this property SHOULD be set via the Account Manager as follows:

<blockquote> <tp:dbus-ref namespace="org.freedesktop.Telepathy.Account">UpdateParameters</tp:dbus-ref>({ "org.freedesktop.Telepathy.Connection.Interface.Cellular.MessageReducedCharacterSet": new_value }, []) </blockquote>

The AccountManager provides change-notification, as long as all other clients cooperate by using it instead of setting this property directly.


Copyright © 2008-2010 Collabora Ltd. and Nokia Corporation
Telepathy-Qt4 0.4.4