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.
tdenetwork/kopete/protocols/testbed/testbedaddcontactpage.cpp

69 lines
1.9 KiB

/*
testbedaddcontactpage.cpp - Kopete Testbed Protocol
Copyright (c) 2003 by Will Stephenson <will@stevello.free-online.co.uk>
Kopete (c) 2002-2003 by the Kopete developers <kopete-devel@kde.org>
*************************************************************************
* *
* 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 <tqlayout.h>
#include <tqradiobutton.h>
#include <tqlineedit.h>
#include <kdebug.h>
#include "kopeteaccount.h"
#include "kopetemetacontact.h"
#include "testbedaddui.h"
TestbedAddContactPage::TestbedAddContactPage( TQWidget* parent, const char* name )
: AddContactPage(parent, name)
{
kdDebug(14210) << k_funcinfo << endl;
( new TQVBoxLayout( this ) )->setAutoAdd( true );
m_testbedAddUI = new TestbedAddUI( this );
}
TestbedAddContactPage::~TestbedAddContactPage()
{
}
bool TestbedAddContactPage::apply( Kopete::Account* a, Kopete::MetaContact* m )
{
if ( validateData() )
{
bool ok = false;
TQString type;
TQString name;
if ( m_testbedAddUI->m_rbEcho->isOn() )
{
type = m_testbedAddUI->m_uniqueName->text();
name = TQString::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"