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/testbed/testbedaddcontactpage.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/testbed/testbedaddcontactpage.cpp')
-rw-r--r-- | kopete/protocols/testbed/testbedaddcontactpage.cpp | 68 |
1 files changed, 68 insertions, 0 deletions
diff --git a/kopete/protocols/testbed/testbedaddcontactpage.cpp b/kopete/protocols/testbed/testbedaddcontactpage.cpp new file mode 100644 index 00000000..5327b5b4 --- /dev/null +++ b/kopete/protocols/testbed/testbedaddcontactpage.cpp @@ -0,0 +1,68 @@ +/* + testbedaddcontactpage.cpp - Kopete Testbed Protocol + + Copyright (c) 2003 by Will Stephenson <[email protected]> + Kopete (c) 2002-2003 by the Kopete developers <[email protected]> + + ************************************************************************* + * * + * This library 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 "testbedaddcontactpage.h" + +#include <qlayout.h> +#include <qradiobutton.h> +#include <qlineedit.h> +#include <kdebug.h> + +#include "kopeteaccount.h" +#include "kopetemetacontact.h" + +#include "testbedaddui.h" + +TestbedAddContactPage::TestbedAddContactPage( QWidget* parent, const char* name ) + : AddContactPage(parent, name) +{ + kdDebug(14210) << k_funcinfo << endl; + ( new QVBoxLayout( this ) )->setAutoAdd( true ); + m_testbedAddUI = new TestbedAddUI( this ); +} + +TestbedAddContactPage::~TestbedAddContactPage() +{ +} + +bool TestbedAddContactPage::apply( Kopete::Account* a, Kopete::MetaContact* m ) +{ + if ( validateData() ) + { + bool ok = false; + QString type; + QString name; + if ( m_testbedAddUI->m_rbEcho->isOn() ) + { + type = m_testbedAddUI->m_uniqueName->text(); + name = QString::fromLatin1( "Echo Contact" ); + ok = true; + } + if ( ok ) + return a->addContact(type, /* FIXME: ? name, */ m, Kopete::Account::ChangeKABC ); + else + return false; + } + return false; +} + +bool TestbedAddContactPage::validateData() +{ + return true; +} + + +#include "testbedaddcontactpage.moc" |