|
|
|
|
/* *************************************************************************
|
|
|
|
|
* copyright: (C) 2003 Richard L<EFBFBD>rk<EFBFBD>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. *
|
|
|
|
|
* *
|
|
|
|
|
*************************************************************************
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include <kgenericfactory.h>
|
|
|
|
|
#include <kdebug.h>
|
|
|
|
|
#include <tdeconfig.h>
|
|
|
|
|
#include <kmessagebox.h>
|
|
|
|
|
|
|
|
|
|
#include "kopeteaccountmanager.h"
|
|
|
|
|
#include "kopeteonlinestatusmanager.h"
|
|
|
|
|
#include "smsprotocol.h"
|
|
|
|
|
#include "smseditaccountwidget.h"
|
|
|
|
|
#include "smscontact.h"
|
|
|
|
|
#include "smsaddcontactpage.h"
|
|
|
|
|
#include "smsaccount.h"
|
|
|
|
|
|
|
|
|
|
typedef KGenericFactory<SMSProtocol> SMSProtocolFactory;
|
|
|
|
|
K_EXPORT_COMPONENT_FACTORY( kopete_sms, SMSProtocolFactory( "kopete_sms" ) )
|
|
|
|
|
|
|
|
|
|
SMSProtocol* SMSProtocol::s_protocol = 0L;
|
|
|
|
|
|
|
|
|
|
SMSProtocol::SMSProtocol(TQObject *parent, const char *name, const TQStringList &/*args*/)
|
|
|
|
|
: Kopete::Protocol( SMSProtocolFactory::instance(), parent, name ),
|
|
|
|
|
SMSOnline( Kopete::OnlineStatus::Online, 25, this, 0, TQString(), i18n( "Online" ), i18n( "Online" ), Kopete::OnlineStatusManager::Online ),
|
|
|
|
|
SMSConnecting( Kopete::OnlineStatus::Connecting,2, this, 3, TQString(), i18n( "Connecting" ) ),
|
|
|
|
|
SMSOffline( Kopete::OnlineStatus::Offline, 0, this, 2, TQString(), i18n( "Offline" ), i18n( "Offline" ), Kopete::OnlineStatusManager::Offline )
|
|
|
|
|
{
|
|
|
|
|
if (s_protocol)
|
|
|
|
|
kdWarning( 14160 ) << k_funcinfo << "s_protocol already defined!" << endl;
|
|
|
|
|
else
|
|
|
|
|
s_protocol = this;
|
|
|
|
|
|
|
|
|
|
addAddressBookField("messaging/sms", Kopete::Plugin::MakeIndexField);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SMSProtocol::~SMSProtocol()
|
|
|
|
|
{
|
|
|
|
|
s_protocol = 0L;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
AddContactPage *SMSProtocol::createAddContactWidget(TQWidget *parent, Kopete::Account */*i*/)
|
|
|
|
|
{
|
|
|
|
|
return new SMSAddContactPage(parent);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
KopeteEditAccountWidget* SMSProtocol::createEditAccountWidget(Kopete::Account *account, TQWidget *parent)
|
|
|
|
|
{
|
|
|
|
|
return new SMSEditAccountWidget(this, account, parent);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SMSProtocol* SMSProtocol::protocol()
|
|
|
|
|
{
|
|
|
|
|
return s_protocol;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Kopete::Contact *SMSProtocol::deserializeContact(Kopete::MetaContact *metaContact,
|
|
|
|
|
const TQMap<TQString, TQString> &serializedData,
|
|
|
|
|
const TQMap<TQString, TQString> &/* addressBookData */)
|
|
|
|
|
{
|
|
|
|
|
TQString contactId = serializedData["contactId"];
|
|
|
|
|
TQString accountId = serializedData["accountId"];
|
|
|
|
|
TQString displayName = serializedData["displayName"];
|
|
|
|
|
|
|
|
|
|
TQDict<Kopete::Account> accounts=Kopete::AccountManager::self()->accounts(this);
|
|
|
|
|
|
|
|
|
|
Kopete::Account *account = accounts[accountId];
|
|
|
|
|
if (!account)
|
|
|
|
|
{
|
|
|
|
|
kdDebug(14160) << "Account doesn't exist, skipping" << endl;
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return new SMSContact(account, contactId, displayName, metaContact);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Kopete::Account* SMSProtocol::createNewAccount(const TQString &accountId)
|
|
|
|
|
{
|
|
|
|
|
return new SMSAccount(this, accountId);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#include "smsprotocol.moc"
|
|
|
|
|
|
|
|
|
|
// vim: set noet ts=4 sts=4 sw=4:
|
|
|
|
|
|