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/oscar/oscarvisibilitydialog.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/oscar/oscarvisibilitydialog.h')
-rw-r--r-- | kopete/protocols/oscar/oscarvisibilitydialog.h | 70 |
1 files changed, 70 insertions, 0 deletions
diff --git a/kopete/protocols/oscar/oscarvisibilitydialog.h b/kopete/protocols/oscar/oscarvisibilitydialog.h new file mode 100644 index 00000000..fc45039f --- /dev/null +++ b/kopete/protocols/oscar/oscarvisibilitydialog.h @@ -0,0 +1,70 @@ +/* + oscarvisibilitydialog.h - Visibility Dialog + + Copyright (c) 2005 by Roman Jarosz <[email protected]> + Kopete (c) 2005 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 OSCARVISIBILITYDIALOG_H +#define OSCARVISIBILITYDIALOG_H + +#include <kdialogbase.h> +#include "kopete_export.h" + +/** + @author Roman Jarosz <[email protected]> +*/ +class OscarVisibilityBase; +class QStringList; +class Client; + +class KOPETE_EXPORT OscarVisibilityDialog : public KDialogBase +{ + Q_OBJECT +public: + typedef QMap<QString, QString> ContactMap; + + OscarVisibilityDialog( Client* client, QWidget* parent ); + ~OscarVisibilityDialog() {} + + void addContacts( const ContactMap& contacts ); + void addVisibleContacts( const QStringList& contactList ); + void addInvisibleContacts( const QStringList& contactList ); + +signals: + void closing(); + +protected: + virtual void slotOk(); + virtual void slotCancel(); + +protected slots: + void slotAddToVisible(); + void slotRemoveFromVisible(); + void slotAddToInvisible(); + void slotRemoveFromInvisible(); + +private: + enum Action{ Remove = 0, Add }; + typedef QMap<QString, Action> ChangeMap; + + //maps with changes that should be send to server + ChangeMap m_visibleListChangesMap; + ChangeMap m_invisibleListChangesMap; + + ContactMap m_contactMap; + + OscarVisibilityBase* m_visibilityUI; + Client* m_client; +}; + +#endif |