Home · All Classes · All Namespaces · Modules · Functions · Files |
The ConnectionManager class represents a Telepathy connection manager. More...
#include <TelepathyQt4/ConnectionManager>
Inherits Tp::StatelessDBusProxy, and Tp::OptionalInterfaceFactory< ConnectionManager >.
The ConnectionManager class represents 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 QDBusConnection & | bus, |
const QString & | name, | ||
const ConnectionFactoryConstPtr & | connectionFactory, | ||
const ChannelFactoryConstPtr & | channelFactory, | ||
const ContactFactoryConstPtr & | contactFactory | ||
) | [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 QDBusConnection & | bus, |
const QString & | name | ||
) | [static] |
Create a new ConnectionManager object.
The instance will use a connection factory creating Tp::Connection objects with no features ready, and a channel factory creating stock Telepathy-Qt4 channel subclasses, as appropriate, with no features ready.
bus | QDBusConnection to use. |
name | Name of the connection manager. |
ConnectionManagerPtr Tp::ConnectionManager::create | ( | const QString & | name, |
const ConnectionFactoryConstPtr & | connectionFactory = ConnectionFactory::create(QDBusConnection::sessionBus()) , |
||
const ChannelFactoryConstPtr & | channelFactory = ChannelFactory::create(QDBusConnection::sessionBus()) , |
||
const ContactFactoryConstPtr & | contactFactory = ContactFactory::create() |
||
) | [static] |
Create a new ConnectionManager using QDBusConnection::sessionBus() and the given factories.
The channel factory is passed to any Connection objects created by this manager object. In fact, they're not used directly by ConnectionManager at all.
A warning is printed if the factories are for a bus different from QDBusConnection::sessionBus().
name | Name of the connection manager. |
connectionFactory | The connection factory to use. |
channelFactory | The channel factory to use. |
contactFactory | The contact factory to use. |
ConnectionManagerPtr Tp::ConnectionManager::create | ( | const QDBusConnection & | bus, |
const QString & | name, | ||
const ConnectionFactoryConstPtr & | connectionFactory, | ||
const ChannelFactoryConstPtr & | channelFactory, | ||
const ContactFactoryConstPtr & | contactFactory = ContactFactory::create() |
||
) | [static] |
Create a new ConnectionManager using the given bus and the given factories.
The channel factory is passed to any Connection objects created by this manager object. In fact, they're not used directly by ConnectionManager at all.
A warning is printed if the factories are for a bus different from QDBusConnection::sessionBus().
bus | QDBusConnection to use. |
name | Name of the connection manager. |
connectionFactory | The connection factory to use. |
channelFactory | The channel factory to use. |
contactFactory | The contact factory to use. |
ConnectionFactoryConstPtr Tp::ConnectionManager::connectionFactory | ( | ) | const |
Return the connection factory used by this manager.
Only read access is provided. This allows constructing object instances and examining the object construction settings, but not changing settings. Allowing changes would lead to tricky situations where objects constructed at different times by the manager would have unpredictably different construction settings (eg. subclass).
ChannelFactoryConstPtr Tp::ConnectionManager::channelFactory | ( | ) | const |
Return the channel factory used by this manager.
Only read access is provided. This allows constructing object instances and examining the object construction settings, but not changing settings. Allowing changes would lead to tricky situations where objects constructed at different times by the manager would have unpredictably different construction settings (eg. subclass).
ContactFactoryConstPtr Tp::ConnectionManager::contactFactory | ( | ) | const |
Return the contact factory used by this manager.
Only read access is provided. This allows constructing object instances and examining the object construction settings, but not changing settings. Allowing changes would lead to tricky situations where objects constructed at different times by the manager would have unpredictably different construction settings (eg. subclass).
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 ready.
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 ready.
protocolName | The name of the protocol. |
for
ProtocolInfo::isValid() if the protocol specified by protocolName is not supported. 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.
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 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 ready.
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 ready.
Copyright © 2008-2011 Collabora Ltd. and Nokia Corporation | Telepathy-Qt4 0.8.0 |