diff options
author | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
---|---|---|
committer | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
commit | bcb704366cb5e333a626c18c308c7e0448a8e69f (patch) | |
tree | f0d6ab7d78ecdd9207cf46536376b44b91a1ca71 /kopete/protocols/jabber/jabbercontactpool.h | |
download | tdenetwork-bcb704366cb5e333a626c18c308c7e0448a8e69f.tar.gz tdenetwork-bcb704366cb5e333a626c18c308c7e0448a8e69f.zip |
Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features.
BUG:215923
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdenetwork@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kopete/protocols/jabber/jabbercontactpool.h')
-rw-r--r-- | kopete/protocols/jabber/jabbercontactpool.h | 124 |
1 files changed, 124 insertions, 0 deletions
diff --git a/kopete/protocols/jabber/jabbercontactpool.h b/kopete/protocols/jabber/jabbercontactpool.h new file mode 100644 index 00000000..6582f64c --- /dev/null +++ b/kopete/protocols/jabber/jabbercontactpool.h @@ -0,0 +1,124 @@ + /* + * jabbercontactpool.h + * + * Copyright (c) 2004 by Till Gerken <[email protected]> + * + * Kopete (c) by the Kopete developers <[email protected]> + * + * ************************************************************************* + * * * + * * This program 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. * + * * * + * ************************************************************************* + */ + +#ifndef JABBERCONTACTPOOL_H +#define JABBERCONTACTPOOL_H + +#include <qobject.h> +#include <im.h> + +namespace Kopete { class MetaContact; } +namespace Kopete { class Contact; } +class JabberContactPoolItem; +class JabberBaseContact; +class JabberContact; +class JabberGroupContact; +class JabberAccount; +class JabberTransport; + +/** + * @author Till Gerken <[email protected]> + */ +class JabberContactPool : public QObject +{ + +Q_OBJECT + +public: + /** + * Default constructor + */ + JabberContactPool ( JabberAccount *account ); + + /** + * Default destructor + */ + ~JabberContactPool(); + + /** + * Add a contact to the pool + */ + JabberContact *addContact ( const XMPP::RosterItem &contact, Kopete::MetaContact *metaContact, bool dirty = true ); + JabberBaseContact *addGroupContact ( const XMPP::RosterItem &contact, bool roomContact, Kopete::MetaContact *metaContact, bool dirty = true ); + + /** + * Remove a contact from the pool + */ + void removeContact ( const XMPP::Jid &jid ); + + /** + * Remove all contacts from the pool + */ + void clear (); + + /** + * Sets the "dirty" flag for a certain contact + */ + void setDirty ( const XMPP::Jid &jid, bool dirty ); + + /** + * Remove all dirty elements from the pool + * (used after connecting to delete removed items from the roster) + */ + void cleanUp (); + + /** + * Find an exact match in the pool by full JID. + */ + JabberBaseContact *findExactMatch ( const XMPP::Jid &jid ); + + /** + * Find a relevant recipient for a given JID. + * This will match user@domain for a given user@domain/resource, + * but NOT user@domain/resource for a given user@domain. + */ + JabberBaseContact *findRelevantRecipient ( const XMPP::Jid &jid ); + + /** + * Find relevant sources for a given JID. + * This will match user@domain/resource for a given user@domain. + */ + QPtrList<JabberBaseContact> findRelevantSources ( const XMPP::Jid &jid ); + +private slots: + void slotContactDestroyed ( Kopete::Contact *contact ); + +private: + JabberContactPoolItem *findPoolItem ( const XMPP::RosterItem &contact ); + + QPtrList<JabberContactPoolItem> mPool; + JabberAccount *mAccount; + +}; + +class JabberContactPoolItem : QObject +{ +Q_OBJECT +public: + JabberContactPoolItem ( JabberBaseContact *contact ); + ~JabberContactPoolItem (); + + void setDirty ( bool dirty ); + bool dirty (); + JabberBaseContact *contact (); + +private: + bool mDirty; + JabberBaseContact *mContact; +}; + +#endif |