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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
|
/*
meanwhilecontact.cpp - a meanwhile contact
Copyright (c) 2003-2004 by Sivaram Gottimukkala <suppandi@gmail.com>
Kopete (c) 2002-2004 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. *
* *
*************************************************************************
*/
#include <tdeaction.h>
#include <kdebug.h>
#include <tdelocale.h>
#include "kopeteaccount.h"
#include "kopetechatsessionmanager.h"
#include "kopetemetacontact.h"
#include "meanwhileprotocol.h"
#include "meanwhilesession.h"
#include "meanwhileaccount.h"
#include "meanwhilecontact.h"
#include "meanwhileplugin.h"
MeanwhileContact::MeanwhileContact(TQString userId, TQString nickname,
MeanwhileAccount *account, Kopete::MetaContact *parent)
: Kopete::Contact(account, userId, parent)
{
setNickName(nickname);
m_msgManager = 0L;
m_meanwhileId = userId;
setOnlineStatus(static_cast<MeanwhileProtocol *>(account->protocol())
->statusOffline);
}
MeanwhileContact::~MeanwhileContact()
{
}
bool MeanwhileContact::isReachable()
{
return isOnline();
}
void MeanwhileContact::serialize(TQMap<TQString, TQString> &serializedData,
TQMap<TQString, TQString> &addressBookData)
{
Kopete::Contact::serialize(serializedData, addressBookData);
}
void MeanwhileContact::showContactSettings()
{
}
void MeanwhileContact::slotUserInfo()
{
MeanwhileAccount *theAccount = static_cast<MeanwhileAccount *>( account());
theAccount->infoPlugin->showUserInfo(m_meanwhileId);
}
Kopete::ChatSession* MeanwhileContact::manager(CanCreateFlags canCreate)
{
if (m_msgManager != 0L || canCreate == Kopete::Contact::CannotCreate)
return m_msgManager;
TQPtrList<Kopete::Contact> contacts;
contacts.append(this);
m_msgManager = Kopete::ChatSessionManager::self()->
create(account()->myself(), contacts, protocol());
connect(m_msgManager,
TQT_SIGNAL(messageSent(Kopete::Message&, Kopete::ChatSession*)),
this, TQT_SLOT(sendMessage(Kopete::Message&)));
connect(m_msgManager, TQT_SIGNAL(myselfTyping(bool)),
this, TQT_SLOT(slotSendTyping(bool)));
connect(m_msgManager, TQT_SIGNAL(destroyed()),
this, TQT_SLOT(slotChatSessionDestroyed()));
return m_msgManager;
}
TQString MeanwhileContact::meanwhileId() const
{
return m_meanwhileId;
}
void MeanwhileContact::sendMessage(Kopete::Message &message)
{
static_cast<MeanwhileAccount *>(account())->session()->sendMessage(message);
}
void MeanwhileContact::slotSendTyping(bool isTyping)
{
static_cast<MeanwhileAccount *>(account())->session()->
sendTyping(this, isTyping);
}
void MeanwhileContact::receivedMessage(const TQString &message)
{
Kopete::ContactPtrList contactList;
contactList.append(account()->myself());
Kopete::Message kmessage(this, contactList, message,
Kopete::Message::Inbound);
manager(Kopete::Contact::CanCreate)->appendMessage(kmessage);
}
void MeanwhileContact::sync(unsigned int changed)
{
if (changed)
static_cast<MeanwhileAccount *>(account())->syncContactsToServer();
}
void MeanwhileContact::slotChatSessionDestroyed()
{
m_msgManager->deref();
m_msgManager = 0L;
}
#include "meanwhilecontact.moc"
|