1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
|
/*
gwprotocol.h - Kopete GroupWise Protocol
Copyright (c) 2004 SUSE Linux AG http://www.suse.com
Based on Testbed
Copyright (c) 2003 by Will Stephenson <will@stevello.free-online.co.uk>
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 <kopete-devel@kde.org>
*************************************************************************
* *
* 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 <kopeteprotocol.h>
#include "kopetecontactproperty.h"
#include "kopeteonlinestatus.h"
/**
* Encapsulates the generic actions associated with this protocol
* @author Will Stephenson
*/
class GroupWiseProtocol : public Kopete::Protocol
{
Q_OBJECT
TQ_OBJECT
public:
GroupWiseProtocol(TQObject *tqparent, const char *name, const TQStringList &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 TQMap< TQString, TQString > & serializedData,
const TQMap< TQString, TQString > & addressBookData
);
/**
* Generate the widget needed to add GroupWiseContacts
*/
virtual AddContactPage * createAddContactWidget( TQWidget *tqparent, Kopete::Account *account );
/**
* Generate the widget needed to add/edit accounts for this protocol
*/
virtual KopeteEditAccountWidget * createEditAccountWidget( Kopete::Account *account, TQWidget *tqparent );
/**
* Generate a GroupWiseAccount
*/
virtual Kopete::Account * createNewAccount( const TQString &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)
*/
TQString rtfizeText( const TQString & 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 TQString dnToDotted( const TQString & 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
|