blob: 8991217435a7988efb520a00c83bd79fba7f0a06 (
plain)
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
|
/* *************************************************************************
* copyright: (C) 2003 Richard Lärkäng <nouseforaname@home.se> *
* copyright: (C) 2003 Gav Wood <gav@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 SMSPROTOCOL_H
#define SMSPROTOCOL_H
#include <tqmap.h>
#include <tqmovie.h>
#include <tqpixmap.h>
#include <tqptrdict.h>
#include <tqptrlist.h>
#include <tqstringlist.h>
#include "kopeteprotocol.h"
#include "kopeteonlinestatus.h"
#include "kopetecontact.h"
class TDEAction;
class TDEActionMenu;
namespace Kopete { class Contact; }
namespace Kopete { class MetaContact; }
namespace Kopete { class Message; }
namespace Kopete { class ChatSession; }
class SMSContact;
class SMSProtocol : public Kopete::Protocol
{
Q_OBJECT
public:
SMSProtocol(TQObject *parent, const char *name, const TQStringList &args);
~SMSProtocol();
static SMSProtocol *protocol();
/**
* Deserialize contact data
*/
virtual Kopete::Contact *deserializeContact(Kopete::MetaContact *metaContact,
const TQMap<TQString, TQString> &serializedData, const TQMap<TQString, TQString> &addressBookData );
virtual AddContactPage *createAddContactWidget(TQWidget *parent , Kopete::Account *i);
virtual KopeteEditAccountWidget *createEditAccountWidget(Kopete::Account *account, TQWidget *parent);
virtual Kopete::Account *createNewAccount(const TQString &accountId);
const Kopete::OnlineStatus SMSOnline;
const Kopete::OnlineStatus SMSOffline;
const Kopete::OnlineStatus SMSConnecting;
private:
static SMSProtocol *s_protocol;
};
#endif
// vim: set noet ts=4 sts=4 sw=4:
|