You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
143 lines
4.3 KiB
143 lines
4.3 KiB
/* *************************************************************************
|
|
* 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. *
|
|
* *
|
|
*************************************************************************
|
|
*/
|
|
|
|
#undef KDE_NO_COMPAT
|
|
#include <kconfigbase.h>
|
|
#include <kaction.h>
|
|
#include <kdebug.h>
|
|
#include <klocale.h>
|
|
#include <kmessagebox.h>
|
|
|
|
#include "kopetechatsessionmanager.h"
|
|
#include "kopeteaccount.h"
|
|
#include "kopeteuiglobal.h"
|
|
|
|
#include "smscontact.h"
|
|
#include "smsprotocol.h"
|
|
#include "smsservice.h"
|
|
#include "smsaccount.h"
|
|
#include "smsuserpreferences.h"
|
|
|
|
SMSContact::SMSContact( Kopete::Account* _account, const TQString &phoneNumber,
|
|
const TQString &displayName, Kopete::MetaContact *parent )
|
|
: Kopete::Contact( _account, phoneNumber, parent ), m_phoneNumber( phoneNumber )
|
|
{
|
|
// kdWarning( 14160 ) << k_funcinfo << " this = " << this << ", phone = " << phoneNumber << endl;
|
|
setNickName( displayName );
|
|
|
|
m_msgManager = 0L;
|
|
m_actionPrefs = 0L;
|
|
|
|
if( account()->isConnected() )
|
|
setOnlineStatus( SMSProtocol::protocol()->SMSOnline );
|
|
}
|
|
|
|
void SMSContact::slotSendingSuccess(const Kopete::Message &msg)
|
|
{
|
|
manager(Kopete::Contact::CanCreate)->messageSucceeded();
|
|
manager(Kopete::Contact::CanCreate)->appendMessage((Kopete::Message &)msg);
|
|
}
|
|
|
|
void SMSContact::slotSendingFailure(const Kopete::Message &/*msg*/, const TQString &error)
|
|
{
|
|
KMessageBox::detailedError(Kopete::UI::Global::mainWidget(), i18n("Something went wrong when sending message."), error,
|
|
i18n("Could Not Send Message"));
|
|
// manager()->messageFailed();
|
|
// TODO: swap for failed as above. show it anyway for now to allow closing of window.
|
|
manager(Kopete::Contact::CanCreate)->messageSucceeded();
|
|
}
|
|
|
|
void SMSContact::serialize( TQMap<TQString, TQString> &serializedData,
|
|
TQMap<TQString, TQString> & /* addressBookData */ )
|
|
{
|
|
// Contact id and display name are already set for us
|
|
if (m_phoneNumber != contactId())
|
|
serializedData[ "contactId" ] = m_phoneNumber;
|
|
}
|
|
|
|
Kopete::ChatSession* SMSContact::manager( Kopete::Contact::CanCreateFlags canCreate )
|
|
{
|
|
if ( m_msgManager || canCreate != Kopete::Contact::CanCreate )
|
|
{
|
|
return m_msgManager;
|
|
}
|
|
else
|
|
{
|
|
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*)),
|
|
account(), TQT_SLOT(slotSendMessage(Kopete::Message&)));
|
|
connect(m_msgManager, TQT_SIGNAL(destroyed()), this, TQT_SLOT(slotChatSessionDestroyed()));
|
|
return m_msgManager;
|
|
}
|
|
}
|
|
|
|
void SMSContact::slotChatSessionDestroyed()
|
|
{
|
|
m_msgManager = 0L;
|
|
}
|
|
|
|
|
|
void SMSContact::slotUserInfo()
|
|
{
|
|
}
|
|
|
|
void SMSContact::deleteContact()
|
|
{
|
|
deleteLater();
|
|
}
|
|
|
|
const TQString SMSContact::qualifiedNumber()
|
|
{
|
|
TQString number = m_phoneNumber;
|
|
dynamic_cast<SMSAccount *>(account())->translateNumber(number);
|
|
return number;
|
|
}
|
|
|
|
const TQString &SMSContact::phoneNumber()
|
|
{
|
|
return m_phoneNumber;
|
|
}
|
|
|
|
void SMSContact::setPhoneNumber( const TQString phoneNumber )
|
|
{
|
|
deleteLater();
|
|
new SMSContact(account(), phoneNumber, nickName(), metaContact());
|
|
}
|
|
|
|
TQPtrList<KAction>* SMSContact::customContextMenuActions()
|
|
{
|
|
TQPtrList<KAction> *m_actionCollection = new TQPtrList<KAction>();
|
|
if( !m_actionPrefs )
|
|
m_actionPrefs = new KAction(i18n("&Contact Settings"), 0, this, TQT_SLOT(userPrefs()), this, "userPrefs");
|
|
|
|
m_actionCollection->append( m_actionPrefs );
|
|
|
|
return m_actionCollection;
|
|
}
|
|
|
|
void SMSContact::userPrefs()
|
|
{
|
|
SMSUserPreferences* p = new SMSUserPreferences( this );
|
|
p->show();
|
|
}
|
|
|
|
#include "smscontact.moc"
|
|
|
|
// vim: set noet ts=4 sts=4 sw=4:
|
|
|