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/icq/icqprotocol.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/icq/icqprotocol.h')
-rw-r--r-- | kopete/protocols/oscar/icq/icqprotocol.h | 106 |
1 files changed, 106 insertions, 0 deletions
diff --git a/kopete/protocols/oscar/icq/icqprotocol.h b/kopete/protocols/oscar/icq/icqprotocol.h new file mode 100644 index 00000000..8e3c1be9 --- /dev/null +++ b/kopete/protocols/oscar/icq/icqprotocol.h @@ -0,0 +1,106 @@ +/* + oscarprotocol.h - Oscar Protocol Plugin + + Copyright (c) 2003 by Olivier Goffart <ogoffart @ kde.org> + Kopete (c) 2003 by the Kopete developers <kopete-devel@kde.org> + + ************************************************************************* + * * + * 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 ICQPROTOCOL_H +#define ICQPROTOCOL_H + +#include "kopeteprotocol.h" +#include "kopetemimetypehandler.h" +#include "kopeteonlinestatus.h" + +class QComboBox; +/*class ICQUserInfoWidget; +class ICQContact;*/ + +namespace ICQ { class OnlineStatusManager; } + +class ICQProtocolHandler : public Kopete::MimeTypeHandler +{ +public: + ICQProtocolHandler(); + void handleURL(const QString &mimeType, const KURL & url) const; +}; + + +class ICQProtocol : public Kopete::Protocol +{ +Q_OBJECT + +public: + ICQProtocol(QObject *parent, const char *name, const QStringList &args); + virtual ~ICQProtocol(); + + /** + * Return the active instance of the protocol + */ + static ICQProtocol *protocol(); + + virtual bool canSendOffline() const; + + virtual Kopete::Contact *deserializeContact( Kopete::MetaContact *metaContact, + const QMap<QString, QString> &serializedData, + const QMap<QString, QString> &addressBookData ); + AddContactPage *createAddContactWidget(QWidget *parent, Kopete::Account *account); + KopeteEditAccountWidget *createEditAccountWidget(Kopete::Account *account, QWidget *parent); + Kopete::Account *createNewAccount(const QString &accountId); + + ICQ::OnlineStatusManager *statusManager(); + + + const Kopete::ContactPropertyTmpl firstName; + const Kopete::ContactPropertyTmpl lastName; + const Kopete::ContactPropertyTmpl awayMessage; + const Kopete::ContactPropertyTmpl emailAddress; + const Kopete::ContactPropertyTmpl ipAddress; + const Kopete::ContactPropertyTmpl clientFeatures; + const Kopete::ContactPropertyTmpl buddyIconHash; + const Kopete::ContactPropertyTmpl contactEncoding; + + const QMap<int, QString> &genders() { return mGenders; } + const QMap<int, QString> &countries() { return mCountries; } + const QMap<int, QString> &languages() { return mLanguages; } + const QMap<int, QString> &encodings() { return mEncodings; } + const QMap<int, QString> &maritals() { return mMarital; } + const QMap<int, QString> &interests() { return mInterests; } + + void fillComboFromTable( QComboBox*, const QMap<int, QString>& ); + void setComboFromTable( QComboBox*, const QMap<int, QString>&, int ); + int getCodeForCombo( QComboBox*, const QMap<int, QString>& ); + /* void fillTZCombo(QComboBox *combo); + void setTZComboValue(QComboBox *combo, const char &tz); + char getTZComboValue(QComboBox *combo); */ + +private: + void initGenders(); + void initLang(); + void initCountries(); + void initEncodings(); + void initMaritals(); + void initInterests(); + +private: + static ICQProtocol* protocolStatic_; + ICQ::OnlineStatusManager* statusManager_; + QMap<int, QString> mGenders; + QMap<int, QString> mCountries; + QMap<int, QString> mLanguages; + QMap<int, QString> mEncodings; + QMap<int, QString> mMarital; + QMap<int, QString> mInterests; + ICQProtocolHandler protohandler; +}; +#endif +// vim: set noet ts=4 sts=4 sw=4: |