diff options
author | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
---|---|---|
committer | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
commit | bcb704366cb5e333a626c18c308c7e0448a8e69f (patch) | |
tree | f0d6ab7d78ecdd9207cf46536376b44b91a1ca71 /kopete/protocols/yahoo/yahooverifyaccount.cpp | |
download | tdenetwork-bcb704366cb5e333a626c18c308c7e0448a8e69f.tar.gz tdenetwork-bcb704366cb5e333a626c18c308c7e0448a8e69f.zip |
Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features.
BUG:215923
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdenetwork@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kopete/protocols/yahoo/yahooverifyaccount.cpp')
-rw-r--r-- | kopete/protocols/yahoo/yahooverifyaccount.cpp | 107 |
1 files changed, 107 insertions, 0 deletions
diff --git a/kopete/protocols/yahoo/yahooverifyaccount.cpp b/kopete/protocols/yahoo/yahooverifyaccount.cpp new file mode 100644 index 00000000..cfb3ede6 --- /dev/null +++ b/kopete/protocols/yahoo/yahooverifyaccount.cpp @@ -0,0 +1,107 @@ +/* + yahooverifyaccount.cpp - UI Page for Verifying a locked account + + Copyright (c) 2005 by André Duffeck <andre.duffeck@kdemail.net> + + ************************************************************************* + * * + * 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. * + * * + ************************************************************************* +*/ + +// QT Includes +#include <qlayout.h> +#include <qfile.h> +#include <qlabel.h> + +// KDE Includes +#include <kdebug.h> +#include <klineedit.h> +#include <ktempfile.h> +#include <klocale.h> +#include <kio/global.h> +#include <kio/job.h> +#include <kio/jobclasses.h> +#include <kstandarddirs.h> + +// Kopete Includes +#include <yahooverifyaccountbase.h> +#include <kopeteaccount.h> + +// Local Includes +#include "yahooverifyaccountbase.h" +#include "yahooverifyaccount.h" +#include "yahooaccount.h" + +YahooVerifyAccount::YahooVerifyAccount(Kopete::Account *account, QWidget *parent, const char *name) +: KDialogBase(parent, name, true, i18n("Account Verification - Yahoo"), Cancel|Apply, + Apply, true ) +{ + mTheAccount = account; + mTheDialog = new YahooVerifyAccountBase( this ); + mTheDialog->mPicture->hide(); + setMainWidget( mTheDialog ); + setEscapeButton( Cancel ); +} + +// Destructor +YahooVerifyAccount::~YahooVerifyAccount() +{ + kdDebug(YAHOO_GEN_DEBUG) << k_funcinfo << endl; +} + +void YahooVerifyAccount::setUrl( KURL url ) +{ + mFile = new KTempFile( locateLocal( "tmp", url.fileName() ) ); + mFile->setAutoDelete( true ); + KIO::TransferJob *transfer = KIO::get( url, false, false ); + connect( transfer, SIGNAL( result( KIO::Job* ) ), this, SLOT( slotComplete( KIO::Job* ) ) ); + connect( transfer, SIGNAL( data( KIO::Job*, const QByteArray& ) ), this, SLOT( slotData( KIO::Job*, const QByteArray& ) ) ); +} + +void YahooVerifyAccount::slotData( KIO::Job */*job*/, const QByteArray& data ) +{ + + kdDebug(YAHOO_GEN_DEBUG) << k_funcinfo << endl; + + mFile->file()->writeBlock( data.data() , data.size() ); +} + +void YahooVerifyAccount::slotComplete( KIO::Job */*job*/ ) +{ + + kdDebug(YAHOO_GEN_DEBUG) << k_funcinfo << endl; + mFile->file()->close(); + mTheDialog->mPicture->setPixmap( mFile->file()->name() ); + mTheDialog->mPicture->show(); +} + +bool YahooVerifyAccount::validateData() +{ + kdDebug(YAHOO_GEN_DEBUG) << k_funcinfo << endl; + + return ( !mTheDialog->mWord->text().isEmpty() ); +} + +void YahooVerifyAccount::slotClose() +{ + QDialog::done(0); +} + +void YahooVerifyAccount::slotApply() +{ + kdDebug(YAHOO_GEN_DEBUG) << k_funcinfo << endl; + + YahooAccount* myAccount = static_cast<YahooAccount*>(mTheAccount); + myAccount->verifyAccount( mTheDialog->mWord->text() ); + QDialog::done(0); +} + +#include "yahooverifyaccount.moc" + +// vim: set noet ts=4 sts=4 sw=4: + |