|
|
|
|
|
|
|
/***************************************************************************
|
|
|
|
jabberaccountwidget.cpp - Account widget for Jabber
|
|
|
|
-------------------
|
|
|
|
begin : Mon Dec 9 2002
|
|
|
|
copyright : (C) 2002-2003 by Till Gerken <till@tantalo.net>
|
|
|
|
Based on code by Olivier Goffart <ogoffart @ kde.org>
|
|
|
|
email : 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 <kdebug.h>
|
|
|
|
#include <tqlineedit.h>
|
|
|
|
#include <tqcheckbox.h>
|
|
|
|
#include <tqpushbutton.h>
|
|
|
|
#include <tqspinbox.h>
|
|
|
|
#include <tqcombobox.h>
|
|
|
|
#include <tqlabel.h>
|
|
|
|
|
|
|
|
#include <kconfig.h>
|
|
|
|
#include <kmessagebox.h>
|
|
|
|
#include <klocale.h>
|
|
|
|
#include <kpassdlg.h>
|
|
|
|
#include <kopetepassword.h>
|
|
|
|
#include <kopetepasswordedaccount.h>
|
|
|
|
|
|
|
|
#include "kopeteuiglobal.h"
|
|
|
|
#include "kopetepasswordwidget.h"
|
|
|
|
|
|
|
|
#include "jabberclient.h"
|
|
|
|
#include "jabbereditaccountwidget.h"
|
|
|
|
#include "jabberregisteraccount.h"
|
|
|
|
#include "dlgjabberchangepassword.h"
|
|
|
|
|
|
|
|
JabberEditAccountWidget::JabberEditAccountWidget (JabberProtocol * proto, JabberAccount * ident, TQWidget * parent, const char *name)
|
|
|
|
: DlgJabberEditAccountWidget (parent, name), KopeteEditAccountWidget (ident)
|
|
|
|
{
|
|
|
|
|
|
|
|
m_protocol = proto;
|
|
|
|
|
|
|
|
connect (mID, TQT_SIGNAL (textChanged (const TQString &)), this, TQT_SLOT (updateServerField ()));
|
|
|
|
connect (cbCustomServer, TQT_SIGNAL (toggled (bool)), this, TQT_SLOT (updateServerField ()));
|
|
|
|
|
|
|
|
connect (cbUseSSL, TQT_SIGNAL (toggled (bool)), this, TQT_SLOT (sslToggled (bool)));
|
|
|
|
|
|
|
|
connect (btnChangePassword, TQT_SIGNAL ( clicked() ), this, TQT_SLOT ( slotChangePasswordClicked () ));
|
|
|
|
|
|
|
|
if (account())
|
|
|
|
{
|
|
|
|
// we are working with an existing account
|
|
|
|
reopen ();
|
|
|
|
btnRegister->setEnabled ( false );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// this is a new account
|
|
|
|
btnChangePassword->setEnabled ( false );
|
|
|
|
connect (btnRegister, TQT_SIGNAL (clicked ()), this, TQT_SLOT (registerClicked ()));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
JabberEditAccountWidget::~JabberEditAccountWidget ()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
JabberAccount *JabberEditAccountWidget::account ()
|
|
|
|
{
|
|
|
|
|
|
|
|
return dynamic_cast<JabberAccount *>(KopeteEditAccountWidget::account () );
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void JabberEditAccountWidget::reopen ()
|
|
|
|
{
|
|
|
|
|
|
|
|
// FIXME: this is temporary until Kopete supports accound ID changes!
|
|
|
|
mID->setDisabled(true);
|
|
|
|
|
|
|
|
mID->setText (account()->accountId ());
|
|
|
|
mPass->load (&account()->password ());
|
|
|
|
cbAutoConnect->setChecked (account()->excludeConnect());
|
|
|
|
|
|
|
|
mResource->setText (account()->configGroup()->readEntry ("Resource", TQString::fromLatin1("Kopete")));
|
|
|
|
mPriority->setValue (account()->configGroup()->readNumEntry ("Priority", 5));
|
|
|
|
mServer->setText (account()->configGroup()->readEntry ("Server", TQString()));
|
|
|
|
|
|
|
|
cbUseSSL->setChecked (account()->configGroup()->readBoolEntry( "UseSSL", false));
|
|
|
|
|
|
|
|
mPort->setValue (account()->configGroup()->readNumEntry("Port", 5222));
|
|
|
|
|
|
|
|
TQString auth = account()->configGroup()->readEntry("AuthType", TQString());
|
|
|
|
|
|
|
|
cbCustomServer->setChecked (account()->configGroup()->readBoolEntry("CustomServer",false));
|
|
|
|
|
|
|
|
if(cbCustomServer->isChecked ())
|
|
|
|
{
|
|
|
|
labelServer->setEnabled(true);
|
|
|
|
mServer->setEnabled(true);
|
|
|
|
labelPort->setEnabled(true);
|
|
|
|
mPort->setEnabled(true);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
mServer->setEnabled (false);
|
|
|
|
mServer->setText(mID->text().section("@", 1));
|
|
|
|
}
|
|
|
|
|
|
|
|
cbAllowPlainTextPassword->setChecked (account()->configGroup()->readBoolEntry("AllowPlainTextPassword", true));
|
|
|
|
|
|
|
|
TDEGlobal::config()->setGroup("Jabber");
|
|
|
|
leLocalIP->setText (TDEGlobal::config()->readEntry("LocalIP", ""));
|
|
|
|
sbLocalPort->setValue (TDEGlobal::config()->readNumEntry("LocalPort", 8010));
|
|
|
|
|
|
|
|
leProxyJID->setText (account()->configGroup()->readEntry("ProxyJID", TQString()));
|
|
|
|
|
|
|
|
// Privacy
|
|
|
|
cbSendEvents->setChecked( account()->configGroup()->readBoolEntry("SendEvents", true) );
|
|
|
|
cbSendDeliveredEvent->setChecked( account()->configGroup()->readBoolEntry("SendDeliveredEvent", true) );
|
|
|
|
cbSendDisplayedEvent->setChecked( account()->configGroup()->readBoolEntry("SendDisplayedEvent", true) );
|
|
|
|
cbSendComposingEvent->setChecked( account()->configGroup()->readBoolEntry("SendComposingEvent", true) );
|
|
|
|
cbSendGoneEvent->setChecked( account()->configGroup()->readBoolEntry("SendGoneEvent", true) );
|
|
|
|
|
|
|
|
cbHideSystemInfo->setChecked( account()->configGroup()->readBoolEntry("HideSystemInfo", false) );
|
|
|
|
|
|
|
|
// Global Identity
|
|
|
|
cbGlobalIdentity->setChecked( account()->configGroup()->readBoolEntry("ExcludeGlobalIdentity", false) );
|
|
|
|
}
|
|
|
|
|
|
|
|
Kopete::Account *JabberEditAccountWidget::apply ()
|
|
|
|
{
|
|
|
|
kdDebug ( JABBER_DEBUG_GLOBAL ) << "JabberEditAccount::apply()" << endl;
|
|
|
|
|
|
|
|
if (!account())
|
|
|
|
{
|
|
|
|
setAccount(new JabberAccount (m_protocol, mID->text ()));
|
|
|
|
}
|
|
|
|
|
|
|
|
if(account()->isConnected())
|
|
|
|
{
|
|
|
|
KMessageBox::queuedMessageBox(this, KMessageBox::Information,
|
|
|
|
i18n("The changes you just made will take effect next time you log in with Jabber."),
|
|
|
|
i18n("Jabber Changes During Online Jabber Session"));
|
|
|
|
}
|
|
|
|
|
|
|
|
this->writeConfig ();
|
|
|
|
|
|
|
|
static_cast<JabberAccount*>(account())->setS5BServerPort ( sbLocalPort->value () );
|
|
|
|
|
|
|
|
return account();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void JabberEditAccountWidget::writeConfig ()
|
|
|
|
{
|
|
|
|
account()->configGroup()->writeEntry("UseSSL", cbUseSSL->isChecked());
|
|
|
|
|
|
|
|
mPass->save(&account()->password ());
|
|
|
|
|
|
|
|
account()->configGroup()->writeEntry("CustomServer", cbCustomServer->isChecked());
|
|
|
|
|
|
|
|
// FIXME: The call below represents a flaw in the current Kopete API.
|
|
|
|
// Once the API is cleaned up, this will most likely require a change.
|
|
|
|
//account()->setAccountId(mID->text());
|
|
|
|
|
|
|
|
account()->configGroup()->writeEntry("AllowPlainTextPassword", cbAllowPlainTextPassword->isChecked());
|
|
|
|
account()->configGroup()->writeEntry("Server", mServer->text ());
|
|
|
|
account()->configGroup()->writeEntry("Resource", mResource->text ());
|
|
|
|
account()->configGroup()->writeEntry("Priority", TQString::number (mPriority->value ()));
|
|
|
|
account()->configGroup()->writeEntry("Port", TQString::number (mPort->value ()));
|
|
|
|
|
|
|
|
account()->setExcludeConnect(cbAutoConnect->isChecked());
|
|
|
|
|
|
|
|
TDEGlobal::config()->setGroup("Jabber");
|
|
|
|
TDEGlobal::config()->writeEntry("LocalIP", leLocalIP->text());
|
|
|
|
TDEGlobal::config()->writeEntry("LocalPort", sbLocalPort->value());
|
|
|
|
|
|
|
|
account()->configGroup()->writeEntry("ProxyJID", leProxyJID->text());
|
|
|
|
|
|
|
|
// Privacy
|
|
|
|
account()->configGroup()->writeEntry("SendEvents", cbSendEvents->isChecked());
|
|
|
|
account()->configGroup()->writeEntry("SendDeliveredEvent", cbSendDeliveredEvent->isChecked());
|
|
|
|
account()->configGroup()->writeEntry("SendDisplayedEvent", cbSendDisplayedEvent->isChecked());
|
|
|
|
account()->configGroup()->writeEntry("SendComposingEvent", cbSendComposingEvent->isChecked());
|
|
|
|
account()->configGroup()->writeEntry("SendGoneEvent", cbSendGoneEvent->isChecked());
|
|
|
|
|
|
|
|
account()->configGroup()->writeEntry("HideSystemInfo", cbHideSystemInfo->isChecked());
|
|
|
|
|
|
|
|
// Global Identity
|
|
|
|
account()->configGroup()->writeEntry("ExcludeGlobalIdentity", cbGlobalIdentity->isChecked());
|
|
|
|
}
|
|
|
|
|
|
|
|
bool JabberEditAccountWidget::validateData ()
|
|
|
|
{
|
|
|
|
|
|
|
|
if(!mID->text().contains('@'))
|
|
|
|
{
|
|
|
|
KMessageBox::sorry(this, i18n("The Jabber ID you have chosen is invalid. "
|
|
|
|
"Please make sure it is in the form user@server.com, like an email address."),
|
|
|
|
i18n("Invalid Jabber ID"));
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void JabberEditAccountWidget::updateServerField ()
|
|
|
|
{
|
|
|
|
|
|
|
|
if(!cbCustomServer->isChecked())
|
|
|
|
{
|
|
|
|
TQString newServer = mID->text().section("@", 1);
|
|
|
|
mPort->setValue(5222);
|
|
|
|
// check if ssl is enabled and set the port correctly
|
|
|
|
sslToggled(cbUseSSL->isChecked());
|
|
|
|
mServer->setText(newServer);
|
|
|
|
labelServer->setEnabled(false);
|
|
|
|
mServer->setEnabled(false);
|
|
|
|
labelPort->setEnabled(false);
|
|
|
|
mPort->setEnabled(false);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
labelServer->setEnabled(true);
|
|
|
|
mServer->setEnabled(true);
|
|
|
|
labelPort->setEnabled(true);
|
|
|
|
mPort->setEnabled(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void JabberEditAccountWidget::deleteClicked ()
|
|
|
|
{
|
|
|
|
|
|
|
|
// delete account here
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void JabberEditAccountWidget::registerClicked ()
|
|
|
|
{
|
|
|
|
|
|
|
|
JabberRegisterAccount *registerDlg = new JabberRegisterAccount ( this );
|
|
|
|
|
|
|
|
registerDlg->show ();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void JabberEditAccountWidget::slotChangePasswordClicked ()
|
|
|
|
{
|
|
|
|
|
|
|
|
DlgJabberChangePassword *passwordDlg = new DlgJabberChangePassword ( account (), this );
|
|
|
|
|
|
|
|
connect ( passwordDlg, TQT_SIGNAL ( destroyed () ), this, TQT_SLOT ( slotChangePasswordFinished () ) );
|
|
|
|
|
|
|
|
passwordDlg->show ();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void JabberEditAccountWidget::slotChangePasswordFinished ()
|
|
|
|
{
|
|
|
|
|
|
|
|
// in case the password has been changed, we need to update it in the UI
|
|
|
|
reopen ();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void JabberEditAccountWidget::sslToggled (bool value)
|
|
|
|
{
|
|
|
|
if (value && (mPort->value() == 5222))
|
|
|
|
mPort->stepUp ();
|
|
|
|
else
|
|
|
|
if(!value && (mPort->value() == 5223))
|
|
|
|
mPort->stepDown ();
|
|
|
|
}
|
|
|
|
|
|
|
|
#include "jabbereditaccountwidget.moc"
|
|
|
|
|
|
|
|
// vim: set noet ts=4 sts=4 sw=4:
|