From bcb704366cb5e333a626c18c308c7e0448a8e69f Mon Sep 17 00:00:00 2001 From: toma Date: Wed, 25 Nov 2009 17:56:58 +0000 Subject: 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 --- kopete/protocols/groupwise/gwprotocol.h | 112 ++++++++++++++++++++++++++++++++ 1 file changed, 112 insertions(+) create mode 100644 kopete/protocols/groupwise/gwprotocol.h (limited to 'kopete/protocols/groupwise/gwprotocol.h') diff --git a/kopete/protocols/groupwise/gwprotocol.h b/kopete/protocols/groupwise/gwprotocol.h new file mode 100644 index 00000000..c3271f18 --- /dev/null +++ b/kopete/protocols/groupwise/gwprotocol.h @@ -0,0 +1,112 @@ +/* + gwprotocol.h - Kopete GroupWise Protocol + + Copyright (c) 2004 SUSE Linux AG http://www.suse.com + + Based on Testbed + Copyright (c) 2003 by Will Stephenson + rtfizeTest from nm_rtfize_text, from Gaim src/protocols/novell/nmuser.c + Copyright (c) 2004 Novell, Inc. All Rights Reserved + + Kopete (c) 2002-2003 by the Kopete developers + + ************************************************************************* + * * + * 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. * + * * + ************************************************************************* +*/ + +#ifndef TESTBEDPROTOCOL_H +#define TESTBEDPROTOCOL_H + +#include +#include "kopetecontactproperty.h" +#include "kopeteonlinestatus.h" + +/** + * Encapsulates the generic actions associated with this protocol + * @author Will Stephenson + */ +class GroupWiseProtocol : public Kopete::Protocol +{ + Q_OBJECT +public: + GroupWiseProtocol(QObject *parent, const char *name, const QStringList &args); + ~GroupWiseProtocol(); + /** + * Convert the serialised data back into a GroupWiseContact and add this + * to its Kopete::MetaContact + */ + virtual Kopete::Contact *deserializeContact( + Kopete::MetaContact *metaContact, + const QMap< QString, QString > & serializedData, + const QMap< QString, QString > & addressBookData + ); + /** + * Generate the widget needed to add GroupWiseContacts + */ + virtual AddContactPage * createAddContactWidget( QWidget *parent, Kopete::Account *account ); + /** + * Generate the widget needed to add/edit accounts for this protocol + */ + virtual KopeteEditAccountWidget * createEditAccountWidget( Kopete::Account *account, QWidget *parent ); + /** + * Generate a GroupWiseAccount + */ + virtual Kopete::Account * createNewAccount( const QString &accountId ); + /** + * Access the instance of this protocol + */ + static GroupWiseProtocol *protocol(); + /** + * Transform a GroupWise internal status into a Kopete::OnlineStatus + */ + Kopete::OnlineStatus gwStatusToKOS( const int gwInternal ); + /** + * Wrap unformatted text in RTF formatting so that other GroupWise clients will display it + * @param plain unformatted text + * @return RTF text (in UCS-4 encoding) + */ + QString rtfizeText( const QString & plain ); + /** + * Convert full DNs to dotted-untyped format + * Assumes the DN is normalised - comma separated, no spaces between elements + * eg cn=wstephenson,o=suse becomes wstephenson.suse + */ + static QString dnToDotted( const QString & dn ); + /** + * Online statuses used for contacts' presence + */ + const Kopete::OnlineStatus groupwiseOffline; + const Kopete::OnlineStatus groupwiseAvailable; + const Kopete::OnlineStatus groupwiseBusy; + const Kopete::OnlineStatus groupwiseAway; + const Kopete::OnlineStatus groupwiseAwayIdle; + const Kopete::OnlineStatus groupwiseAppearOffline; + const Kopete::OnlineStatus groupwiseUnknown; + const Kopete::OnlineStatus groupwiseInvalid; + const Kopete::OnlineStatus groupwiseConnecting; + + /** + * Contact properties + */ + const Kopete::ContactPropertyTmpl propGivenName; + const Kopete::ContactPropertyTmpl propLastName; + const Kopete::ContactPropertyTmpl propFullName; + const Kopete::ContactPropertyTmpl propAwayMessage; + const Kopete::ContactPropertyTmpl propAutoReply; + const Kopete::ContactPropertyTmpl propCN; + const Kopete::ContactPropertyTmpl propPhoneWork; + const Kopete::ContactPropertyTmpl propPhoneMobile; + const Kopete::ContactPropertyTmpl propEmail; + + +protected: + static GroupWiseProtocol *s_protocol; +}; + +#endif -- cgit v1.2.1