You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdenetwork/kopete/protocols/groupwise/libgroupwise/userdetailsmanager.h

86 lines
3.1 KiB

/*
userdetailsmanager.h - Storage of all user details seen during this session
Copyright (c) 2004 SUSE Linux AG http://www.suse.com
Kopete (c) 2002-2004 by the Kopete developers <kopete-devel@kde.org>
*************************************************************************
* *
* This library is free software; you can redistribute it and/or *
* modify it under the terms of the GNU Lesser General Public *
* License as published by the Free Software Foundation; either *
* version 2 of the License, or (at your option) any later version. *
* *
*************************************************************************
*/
#ifndef USERDETAILSMANAGER_H
#define USERDETAILSMANAGER_H
#include <tqmap.h>
#include <tqobject.h>
#include <tqstringlist.h>
#include "gwerror.h"
class Client;
/**
Several client event handling processes require that a contact's details are available before exposing the event to the user. This class is responsible for issuing details requests, tracking which users the client already has received details for, and signalling when details have been received. The manager allows multiple interleaved get details requests to be replaced by a single request.
@author SUSE AG
*/
class UserDetailsManager : public TQObject
{
TQ_OBJECT
public:
UserDetailsManager( Client * parent, const char *name = 0);
~UserDetailsManager();
/**
* List of DNs that we have already received details for
*/
TQStringList knownDNs();
/**
* Check if we have details for a single DN
*/
bool known( const TQString &dn );
/**
* Get details for a given DN
*/
ContactDetails details( const TQString &dn );
/**
* Add a ContactDetails object to our cache.
* This SHOULD be called when receiving details in contactlist receive and manipulation, to prevent unnecessary additional requests.
*/
void addDetails( const GroupWise::ContactDetails & details );
/**
* Remove a contact from the list of known DNs. This MUST be performed when a client removes a DN from its local contact list,
* otherwise new events from this DN will not receive user details.
*/
void removeContact( const TQString & dn );
/**
* Explicitly request details for a set of contacts from the server.
* Will signal @ref gotContactUserDetails for each one when they are available.
*/
void requestDetails( const TQStringList & dnList, bool onlyUnknown = true );
/**
* Explicitly request a contact's details from the server. Will signal @ref gotContactUserDetails when they are available.
*/
void requestDetails( const TQString & dn, bool onlyUnknown = true );
signals:
void gotContactDetails( const GroupWise::ContactDetails & );
protected slots:
void slotReceiveContactDetails( const GroupWise::ContactDetails & );
protected:
void dump( const TQStringList & list );
private:
TQStringList m_pendingDNs; // a list of DNs that have pending requests
Client * m_client;
TQMap< TQString, GroupWise::ContactDetails > m_detailsMap;
};
#endif