interfaces
KIMProxy Class Reference
Provides access to instant messenger programs which implement KDE's instant messanger interface KIMIface. More...
#include <kimproxy.h>
Public Slots | |
void | registeredToDCOP (const QCString &appId) |
void | unregisteredFromDCOP (const QCString &appId) |
Signals | |
void | sigContactPresenceChanged (const QString &uid) |
void | sigPresenceInfoExpired () |
Public Member Functions | |
bool | addContact (const QString &contactId, const QString &protocol) |
QStringList | allContacts () |
bool | canReceiveFiles (const QString &uid) |
bool | canRespond (const QString &uid) |
void | chatWithContact (const QString &uid) |
void | contactPresenceChanged (QString uid, QCString appId, int presence) |
QString | context (const QString &uid) |
QString | displayName (const QString &uid) |
QStringList | fileTransferContacts () |
bool | imAppsAvailable () |
bool | initialize () |
bool | isPresent (const QString &uid) |
QString | locate (const QString &contactId, const QString &protocol) |
void | messageContact (const QString &uid, const QString &message) |
QStringList | onlineContacts () |
QPixmap | presenceIcon (const QString &uid) |
int | presenceNumeric (const QString &uid) |
QString | presenceString (const QString &uid) |
QStringList | reachableContacts () |
void | sendFile (const QString &uid, const KURL &sourceURL, const QString &altFileName=QString::null, uint fileSize=0) |
bool | startPreferredApp () |
Static Public Member Functions | |
static KIMProxy * | instance (DCOPClient *client) |
Protected Member Functions | |
void | pollAll (const QString &uid) |
void | pollApp (const QCString &appId) |
QString | preferredApp () |
KIMIface_stub * | stubForProtocol (const QString &protocol) |
KIMIface_stub * | stubForUid (const QString &uid) |
bool | updatePresence (const QString &uid, const QCString &appId, int presence) |
Detailed Description
Provides access to instant messenger programs which implement KDE's instant messanger interface KIMIface.This class provides an easy-to-use interface to all running instant messengers or chat programs that implement KIMIface.
It works simultaneously with any running programs that implement the ServiceType DCOP/InstantMessenger
.
IM-contacts are identified using unique identifier strings (UID) used by KDE's address book framework KABC. However the use of the address book API is optional, KIMProxy provides methods to fetch lists of available contact UIDs from the applications. If a UID is reachable with more than one program, KIMProxy aggregates the available information and presents the 'best' presence. For example, for a contact who can be seen to be Away
in IRC
on program A but Online
using ICQ
on program B, the information from program B will be used.
KIMProxy is designed for simple information in a wide number of cases, not for detailed messaging.
The class is implemented as a singleton, so whenever you need access to one of its methods, just retrieve the single instance using instance(). The following code snippet demonstrated how to send a message to all reachable IM-contacts:
// get proxy instance KIMProxy* proxy = KIMProxy::instance(); // check if there are suitable applications reachable if (!proxy->initialize()) return; QString message = "Hi!\nHow are you on this wonderful day?"; // iterate over the list of reachable contacts QStringList reachableContacts = proxy->reachableContacts(); for (QStringList::const_iterator it = reachableContacts.begin(); it != reachableContacts.end(); ++it) { proxy->messageContact(*it, message); }
- Note:
- While it is possible to communicate with each of those application's by DCOP using KIMProxy has the advantage of communicating with all applications simultaneously and thus getting an augmented view of availability, capability and presence (online status) of IM-contacts.
- See also:
- KIMIface
KABC::AddressBook
KABC::Addressee
- Since:
- 3.3
Definition at line 107 of file kimproxy.h.
Member Function Documentation
Add a new contact given its protocol specific identifier.
- Parameters:
-
contactId the protocol specific identifier for the contact e.g. UIN for ICQ, screenname for AIM, nick for IRC protocol the IM protocol/service to use. See KIMIface:protocols()
- Returns:
- whether the add succeeded.
false
may signal already present, protocol not supported, or add operation not supported.
- See also:
- locate()
Definition at line 533 of file kimproxy.cpp.
QStringList KIMProxy::allContacts | ( | ) |
Obtain a list of IM-contacts known to IM-applications.
Returns a list of KABC UIDs gathered by merging the lists of each application the proxy can communicate with. The method uses cached information to make it fast and not require actually communicating with the applications every time it is called.
- Returns:
- a list of KABC UIDs known to any IM-application
- See also:
- reachableContacts()
KABC::Addressee::uid()
Definition at line 394 of file kimproxy.cpp.
bool KIMProxy::canReceiveFiles | ( | const QString & | uid | ) |
Indicate if a given contact can receive files.
If the given KABC UID is known to more than one IM-application the result of the application which has the best presence for the contact is taken. For example if a contact is Online
on ICQ and Away on AIM, the value returned by the application providing ICQ is taken.
- Parameters:
-
uid the KABC UID you want to the file transfer capability for
- Returns:
- whether the specified contact can receive files
- See also:
- fileTransferContacts()
KABC::Addressee::uid()
Definition at line 459 of file kimproxy.cpp.
bool KIMProxy::canRespond | ( | const QString & | uid | ) |
Indicate if a given contact will be able to respond.
Some media are unidirectional (e.g., sending SMS via a web interface). This refers to the contact's ability to respond as defined by the medium, not by their presence.
Someone may appear offline (SMS has no presence) to you but in fact be able to respond.
If the given KABC UID is known to more than one IM-application the result of the application which has the best presence for the contact is taken. For example if a contact is Online
on ICQ and Away on AIM, the value returned by the application providing ICQ is taken.
- Parameters:
-
uid the KABC UID you are interested in
- Returns:
- whether the specified contact can respond
- See also:
- isPresent()
KABC::Addressee::uid()
Definition at line 469 of file kimproxy.cpp.
void KIMProxy::chatWithContact | ( | const QString & | uid | ) |
Start a chat session with the specified contact.
- Parameters:
-
uid the KABC UID you want to chat with
- See also:
- messageContact()
KABC::Addressee::uid()
Definition at line 489 of file kimproxy.cpp.
Just exists to let the IDL compiler make the DCOP signal for this.
Implements KIMProxyIface.
Definition at line 328 of file kimproxy.cpp.
Obtain the given contact's current context (home, work, or any).
Not all IM services/protocols support the concept of contexts. If the given UID maps to such a service, QString::null
will be returned
If the given KABC UID is known to more than one IM-application the result of the application which has the best presence for the contact is taken. For example if a contact is Online
on ICQ and Away on AIM, the value returned by the application providing ICQ is taken.
- Parameters:
-
uid the KABC UID you want the context for
- Returns:
- a string describing the context, or
QString::null
if not supported or if the contact is unknown
- See also:
- isPresent()
KABC::Addressee::uid()
Definition at line 479 of file kimproxy.cpp.
Obtain the proxy's idea of the contact's display name.
If the given KABC UID is known to more than one IM-application the result of the application which has the best presence for the contact is taken. For example if a contact is Online
on ICQ and Away
on AIM, the value returned by the application providing ICQ is taken.
Useful if KABC lookups may be too slow.
- Parameters:
-
uid the KABC UID you are interested in
- Returns:
- the corresponding display name or QString:null if the UID is unknown
- See also:
- isPresent()
KABC::Addressee::uid()
Definition at line 447 of file kimproxy.cpp.
QStringList KIMProxy::fileTransferContacts | ( | ) |
Obtain a list of IM-contacts who may receive file transfers.
Returned IM-contacts might not be capable of receiving file tranfers due to limitations of their clients or because they are behind a firewall. KIMProxy doesn't have the possibilities to discover this and will list them as well.
Returns a list of KABC UIDs gathered by merging the lists of each application the proxy can communicate with.
- Returns:
- a list of KABC UIDs capable of file transfer
- See also:
- allContacts()
KABC::Addressee::uid()
Definition at line 427 of file kimproxy.cpp.
bool KIMProxy::imAppsAvailable | ( | ) |
Checks if there are any compatible instant messaging applications available.
Available means that they are started and registered with DCOP and implementing the correct DCOP service. This information will be updated on the first call to initialize() and whenever an application registers or unregisters with DCOP, i.e. the information will be kept up to date.
- Returns:
true
if there are any apps available
Definition at line 553 of file kimproxy.cpp.
bool KIMProxy::initialize | ( | ) |
Get the proxy ready to connect.
Discover any running IM clients and setup communication handlers for them. The list of available clients is updated automatically through notification about added or removed DCOP applications as provided by DCOPClient.
It is safe to call this method more than once, initialization only occurs at the first time.
- Returns:
- whether the proxy is ready to use.
false
if there are no suitable apps running
Definition at line 215 of file kimproxy.cpp.
KIMProxy * KIMProxy::instance | ( | DCOPClient * | client | ) | [static] |
Obtain an instance of KIMProxy.
Creates a new instance if it is called for the first time. Call initialize() to check if there are applications available for communication.
- Note:
- KIMProxy uses DCOPClient::setNotifications() to make sure it updates its information about IM applications it interacts with, e.g. that it gets notified about newly available applications or about applications exiting
- Parameters:
-
client your application's DCOP client
- Returns:
- the singleton instance of this class
Definition at line 166 of file kimproxy.cpp.
bool KIMProxy::isPresent | ( | const QString & | uid | ) |
Confirm if a given contact is known to the proxy.
A contact is known to the proxy if it is know to at least one IM-application the proxy is communicating with.
The method uses cached information to make it fast and not require actually communicating with the applications every time it is called.
- Parameters:
-
uid the KABC UID you are interested in
- Returns:
- whether any IM-program knows of this KABC UID
- See also:
- allContacts()
KABC::Addressee::uid()
Definition at line 442 of file kimproxy.cpp.
Obtain the KABC UID corresponding to the given IM address.
- Parameters:
-
contactId the protocol specific identifier for the contact, e.g. UIN for ICQ, screenname for AIM, nick for IRC protocol the IM protocol/service to check. See KIMIface::protocols()
- Returns:
- the KABC UID for the given contact or
QString::null
if not found or either input stream was empty or the protocol is not supported
- See also:
- KIMIface::protocols()
KABC::Addressee::uid()
Definition at line 543 of file kimproxy.cpp.
Send a single message to the specified contact.
Any response will be handled by the IM client as a normal conversation.
- Parameters:
-
uid the KABC UID you want to send the message to message the message text to send to the contact
- See also:
- chatWithContact()
KABC::Addressee::uid()
Definition at line 502 of file kimproxy.cpp.
QStringList KIMProxy::onlineContacts | ( | ) |
Obtain a list of IM-contacts that are currently online.
Returns a list of KABC UIDs gathered by merging the lists of each application the proxy can communicate with. The method uses cached information to make it fast and not require actually communicating with the applications every time it is called.
- Returns:
- a list of KABC UIDs who are online with unspecified presence
- See also:
- allContacts()
KABC::Addressee::uid()
Definition at line 415 of file kimproxy.cpp.
void KIMProxy::pollAll | ( | const QString & | uid | ) | [protected] |
void KIMProxy::pollApp | ( | const QCString & | appId | ) | [protected] |
Bootstrap our presence data for a newly registered app.
Definition at line 594 of file kimproxy.cpp.
QString KIMProxy::preferredApp | ( | ) | [protected] |
Obtain the icon representing the IM presence for the specified contact.
If the given KABC UID is known to more than one IM-application the result of the application which has the best presence for the contact is taken. For example if a contact is Online
on ICQ and Away on AIM, the value returned by the application providing ICQ is taken.
- Note:
- The presence icon is chosen based on the numerical presence value returned by the applications. It currently does not return the presence icon used by the applications.
- Parameters:
-
uid the KABC UID you want the presence icon for
- Returns:
- a pixmap representing the contact's presence or a null pixmap if the contact is unknown. See QPixmap::isNull()
- See also:
- isPresent()
KABC::Addressee::uid()
Definition at line 373 of file kimproxy.cpp.
int KIMProxy::presenceNumeric | ( | const QString & | uid | ) |
Obtain the IM presence as a number for the specified contact.
Returns one of the following values depending on the given contact's presence:
- 0 -
Unknown:
for contacts where you can not use any of the other values
- 1 -
Offline:
for contacts that are offline, i.e. not connected to their IM-service.
- 2 -
Connecting
- 3 -
Away:
for contacts that are connected to their IM-service but notOnline
- 4 -
Online
If the given KABC UID is known to more than one IM-application the result of the application which has the best presence for the contact is taken. For example if a contact is Online
on ICQ and Away on AIM, the value returned by the application providing ICQ is taken.
The method uses cached information to make it fast and not require actually communicating with the applications every time it is called.
- Parameters:
-
uid the KABC UID you want the presence for
- Returns:
- a numeric representation of presence - currently one of 0 (Unknown), 1 (Offline), 2 (Connecting), 3 (Away), 4 (Online). Returns 0 if the given UID is unknown
- See also:
- isPresent()
KABC::Addressee::uid()
Definition at line 346 of file kimproxy.cpp.
Obtain the IM presence as a i18ned string for the specified contact.
The presence string is one of the following:
- i18n("Unknown")
- i18n("Offline")
- i18n("Connecting")
- i18n("Away")
- i18n("Online")
If the given KABC UID is known to more than one IM-application the result of the application which has the best presence for the contact is taken. For example if a contact is Online
on ICQ and Away on AIM, the value returned by the application providing ICQ is taken.
- Note:
- The presence string is created based on the numerical presence value returned by the applications. It currently does not return the presence strings used by the applications.
- Parameters:
-
uid the KABC UID you want the presence for
- Returns:
- the i18ned string describing the contact's presence or QString::null if the UID is unknown
- See also:
- isPresent()
KABC::Addressee::uid()
Definition at line 358 of file kimproxy.cpp.
QStringList KIMProxy::reachableContacts | ( | ) |
Obtain a list of IM-contacts that are currently reachable.
Returns a list of KABC UIDs gathered by merging the lists of each application the proxy can communicate with.
- Returns:
- a list of KABC UIDs who can receive a message, even if offline
- See also:
- allContacts()
KABC::Addressee::uid()
Definition at line 400 of file kimproxy.cpp.
void KIMProxy::registeredToDCOP | ( | const QCString & | appId | ) | [slot] |
Updates the proxy's data after a new application registered with DCOP.
Checks if the application specified by the given DCOP application identifier implements the instant messenger service.
- Parameters:
-
appId the DCOP application ID of the newly registered application
- See also:
- DCOPClient::applicationRegistered()
Definition at line 266 of file kimproxy.cpp.
void KIMProxy::sendFile | ( | const QString & | uid, | |
const KURL & | sourceURL, | |||
const QString & | altFileName = QString::null , |
|||
uint | fileSize = 0 | |||
) |
Send a file to the contact.
Initiates a file transfer with the given contact if possible.
- Parameters:
-
uid the KABC UID you want to send to sourceURL a KURL pointing to the file to send altFileName an alternate filename describing the file or a description or title fileSize file size in bytes
- See also:
- messageContact()
KABC::Addressee::uid()
Definition at line 515 of file kimproxy.cpp.
void KIMProxy::sigContactPresenceChanged | ( | const QString & | uid | ) | [signal] |
Indicates that the specified IM-contact's presence changed.
- Parameters:
-
uid the KABC UID whose presence changed
- See also:
- isPresent()
KABC::Addressee::uid()
void KIMProxy::sigPresenceInfoExpired | ( | ) | [signal] |
Indicates that presence information obtained earlier on might not be valid any longer.
After the sources of presence information have changed so any previously supplied presence info is invalid.
bool KIMProxy::startPreferredApp | ( | ) |
Start the user's preferred IM application.
- Returns:
- whether a preferred app was found. No guarantee that it started correctly
Definition at line 558 of file kimproxy.cpp.
KIMIface_stub * KIMProxy::stubForProtocol | ( | const QString & | protocol | ) | [protected] |
Get the app stub for this protocol.
Take the preferred app first, then any other.
Definition at line 624 of file kimproxy.cpp.
KIMIface_stub * KIMProxy::stubForUid | ( | const QString & | uid | ) | [protected] |
void KIMProxy::unregisteredFromDCOP | ( | const QCString & | appId | ) | [slot] |
Updates the proxy's data after an application unregistered with DCOP.
If the application specified by the given DCOP application identifier is one of the instant messenger applications of the proxy, it will remove the presence information it gathered from it earlier on.
Emits sigPresenceInfoExpired() to let the using applcation know its presence related information might need updating.
- Parameters:
-
appId the DCOP application ID of the now unregistered application
- See also:
- DCOPClient::applicationRemoved()
Definition at line 301 of file kimproxy.cpp.
bool KIMProxy::updatePresence | ( | const QString & | uid, | |
const QCString & | appId, | |||
int | presence | |||
) | [protected] |
Update our records with the given data.
The documentation for this class was generated from the following files: