Home · All Classes · All Namespaces · Modules · Functions · Files |
The ConnectionManager class provides an object representing a Telepathy connection manager. More...
#include <TelepathyQt4/ConnectionManager>
Inherits Tp::StatelessDBusProxy, OptionalInterfaceFactory< ConnectionManager >, Tp::ReadyObject, and Tp::RefCounted.
The ConnectionManager class provides an object representing a Telepathy connection manager.
Connection managers allow connections to be made on one or more protocols.
Most client applications should use this functionality via the AccountManager, to allow connections to be shared between client applications.
Tp::ConnectionManager::~ConnectionManager | ( | ) | [virtual] |
Class destructor.
Tp::ConnectionManager::ConnectionManager | ( | const QString & | name | ) | [protected] |
Construct a new ConnectionManager object.
name | Name of the connection manager. |
Tp::ConnectionManager::ConnectionManager | ( | const QDBusConnection & | bus, | |
const QString & | name | |||
) | [protected] |
Construct a new ConnectionManager object using the given bus.
bus | QDBusConnection to use. | |
name | Name of the connection manager. |
ConnectionManagerPtr Tp::ConnectionManager::create | ( | const QString & | name | ) | [static] |
Create a new ConnectionManager object.
name | Name of the connection manager. |
ConnectionManagerPtr Tp::ConnectionManager::create | ( | const QDBusConnection & | bus, | |
const QString & | name | |||
) | [static] |
Create a new ConnectionManager object using the given bus.
bus | QDBusConnection to use. | |
name | Name of the connection manager. |
QString Tp::ConnectionManager::name | ( | ) | const |
QStringList Tp::ConnectionManager::supportedProtocols | ( | ) | const |
const ProtocolInfoList& Tp::ConnectionManager::protocols | ( | ) | const |
bool Tp::ConnectionManager::hasProtocol | ( | const QString & | protocolName | ) | const |
Return whether this connection manager implements the protocol specified by protocolName.
This method requires ConnectionManager::FeatureCore to be enabled.
true
if the protocol is supported, false
otherwise. ProtocolInfo * Tp::ConnectionManager::protocol | ( | const QString & | protocolName | ) | const |
Return the ProtocolInfo object for the protocol specified by protocolName.
This method requires ConnectionManager::FeatureCore to be enabled.
The returned pointer points to an internal data structure, which should not be deleted by the caller.
PendingConnection * Tp::ConnectionManager::requestConnection | ( | const QString & | protocol, | |
const QVariantMap & | parameters | |||
) |
Request a Connection object representing a given account on a given protocol with the given parameters.
Return a pending operation representing the Connection object which will succeed when the connection has been created or fail if an error occurred.
protocol | Name of the protocol to create the account for. | |
parameters | Account parameters. |
PendingStringList * Tp::ConnectionManager::listNames | ( | const QDBusConnection & | bus = QDBusConnection::sessionBus() |
) | [static] |
Return a pending operation from which a list of all installed connection manager short names (such as "gabble" or "haze") can be retrieved if it succeeds.
DBus::propertiesInterface * Tp::ConnectionManager::propertiesInterface | ( | ) | const [inline] |
Convenience function for getting a Properties interface proxy. The Properties interface is not necessarily reported by the services, so a check
parameter is not provided, and the interface is always assumed to be present.
Client::ConnectionManagerInterface * Tp::ConnectionManager::baseInterface | ( | ) | const [protected] |
Return the Client::ConnectionManagerInterface for this ConnectionManager. This method is protected since the convenience methods provided by this class should generally be used instead of calling D-Bus methods directly.
const Feature Tp::ConnectionManager::FeatureCore [static] |
Feature representing the core that needs to become ready to make the ConnectionManager object usable.
Note that this feature must be enabled in order to use most ConnectionManager methods. See specific methods documentation for more details.
When calling isReady(), becomeReady(), this feature is implicitly added to the requested features.
QString Tp::ConnectionManager::name [read] |
Return the short name of the connection manager (e.g. "gabble").
QStringList Tp::ConnectionManager::supportedProtocols [read] |
Return a list of strings identifying the protocols supported by this connection manager, as described in the Telepathy D-Bus API Specification (e.g. "jabber").
These identifiers are not intended to be displayed to users directly; user interfaces are responsible for mapping them to localized strings.
This method requires ConnectionManager::FeatureCore to be enabled.
const ProtocolInfoList & Tp::ConnectionManager::protocols [read] |
Return a list of protocols info for this connection manager.
Note that the returned ProtocolInfoList contents should not be freed.
This method requires ConnectionManager::FeatureCore to be enabled.
Copyright © 2008-2010 Collabora Ltd. and Nokia Corporation | Telepathy-Qt4 0.4.4 |