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/groupwise/libgroupwise/privacymanager.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/groupwise/libgroupwise/privacymanager.h')
-rw-r--r-- | kopete/protocols/groupwise/libgroupwise/privacymanager.h | 88 |
1 files changed, 88 insertions, 0 deletions
diff --git a/kopete/protocols/groupwise/libgroupwise/privacymanager.h b/kopete/protocols/groupwise/libgroupwise/privacymanager.h new file mode 100644 index 00000000..102c2b0a --- /dev/null +++ b/kopete/protocols/groupwise/libgroupwise/privacymanager.h @@ -0,0 +1,88 @@ +/* + Kopete Groupwise Protocol + privacymanager.cpp - stores the user's privacy information and maintains it on the server + + 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 PRIVACYMANAGER_H +#define PRIVACYMANAGER_H + +#include <qobject.h> +#include <qstringlist.h> + +class Client; + +/** +Keeps a record of the server side privacy allow and deny lists, default policy and whether the user is allowed to change privacy settings + +@author SUSE AG +*/ +class PrivacyManager : public QObject +{ +Q_OBJECT +public: + PrivacyManager( Client * client, const char *name = 0); + ~PrivacyManager(); + // accessors + bool isBlocked( const QString & dn ); + QStringList allowList(); + QStringList denyList(); + bool isPrivacyLocked(); + bool defaultDeny(); + bool defaultAllow(); + // mutators + void setDefaultAllow( bool allow ); + void setDefaultDeny( bool deny ); + void setAllow( const QString & dn ); + void setDeny( const QString & dn ); + void getDetailsForPrivacyLists(); + // change everything at once + void setPrivacy( bool defaultIsDeny, const QStringList & allowList, const QStringList & denyList ); + +signals: + void privacyChanged( const QString &dn, bool allowed ); +public slots: + /** + * Used to initialise the privacy manager using the server side privacy list + */ + void slotGotPrivacySettings( bool locked, bool defaultDeny, const QStringList & allowList, const QStringList & denyList ); +protected: + void addAllow( const QString & dn ); + void addDeny( const QString & dn ); + void removeAllow( const QString & dn ); + void removeDeny( const QString & dn ); + /** + * A set difference function + * @param lhs The set of strings to be subtracted from + * @param rhs The set of string to subtract + * @return The difference between the two sets + */ + QStringList difference( const QStringList & lhs, const QStringList & rhs ); +protected slots: + // Receive the results of Tasks manipulating the privacy lists + void slotDefaultPolicyChanged(); + void slotAllowAdded(); + void slotDenyAdded(); + void slotAllowRemoved(); + void slotDenyRemoved(); +private: + Client * m_client; + bool m_locked; + bool m_defaultDeny; + QStringList m_allowList; + QStringList m_denyList; +}; + +#endif |