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/gwcontactlist.h

95 lines
3.5 KiB

/*
gwcontactlist.h - Kopete GroupWise Protocol
Copyright (c) 2005 SUSE Linux Products GmbH http://www.suse.com
Kopete (c) 2002-2005 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 General Public *
* License as published by the Free Software Foundation; either *
* version 2 of the License, or (at your option) any later version. *
* *
*************************************************************************
*/
// GROUPWISE SERVER SIDE CONTACT LIST MODEL
#include <tqobject.h>
#ifndef GW_CONTACTLIST_H
#define GW_CONTACTLIST_H
class GWFolder;
class GWContactInstance;
class GWContactListItem;
typedef TQValueList<GWContactInstance *> GWContactInstanceList;
/**
* These functions model the server side contact list structure enough to allow Kopete to manipulate it correctly
* In GroupWise, a contactlist is composed of folders, containing contacts. But the contacts don't record which
* folders they are in. Instead, each contact entry represents an instance of that contact within the list.
* In Kopete's model, this looks like duplicate contacts (illegal), so instead we have unique contacts,
* each (by way of its metacontact) knowing membership of potentially >1 KopeteGroups. Contacts contain a list of the
* server side list instances. Contact list management operations affect this list, which is updated during every
* operation. Having this list allows us to update the server side contact list and keep changes synchronised across
* different clients.
* The list is volatile - it is not stored in stable storage, but is purged on disconnect and recreated at login.
*/
class GWContactList : public TQObject
{
Q_OBJECT
public:
GWContactList( TQObject * parent );
GWFolder * addFolder( unsigned int id, unsigned int sequence, const TQString & displayName );
GWContactInstance * addContactInstance( unsigned int id, unsigned int parent, unsigned int sequence, const TQString & displayName, const TQString & dn );
GWFolder * findFolderById( unsigned int id );
GWFolder * findFolderByName( const TQString & name );
GWContactInstanceList instancesWithDn( const TQString & dn );
void removeInstance( GWContactListItem * instance );
void removeInstanceById( unsigned int id );
int maxSequenceNumber();
virtual void dump();
void clear();
GWFolder * rootFolder;
};
class GWContactListItem : public TQObject
{
Q_OBJECT
public:
GWContactListItem( TQObject * parent, unsigned int theId, unsigned int theSequence, const TQString & theDisplayName );
unsigned int id; // OBJECT_ID
unsigned int sequence; // SEQUENCE_NUMBER
TQString displayName; // DISPLAY_NAME
};
class GWFolder : public GWContactListItem
{
Q_OBJECT
public:
GWFolder( TQObject * parent, unsigned int theId, unsigned int theSequence, const TQString & theDisplayName );
virtual void dump( unsigned int depth );
};
class GWContactInstance : public GWContactListItem
{
Q_OBJECT
public:
GWContactInstance( TQObject * parent, unsigned int theId, unsigned int theSequence, const TQString & theDisplayName, const TQString & theDn );
TQString dn; // DN
virtual void dump( unsigned int depth );
};
// END OF SERVER SIDE CONTACT LIST MODEL
#endif