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/groupwise/ui/gwaddcontactpage.cpp

109 lines
3.3 KiB

/*
Kopete GroupWise Protocol
gweditaccountwidget.cpp - widget for adding GroupWise contacts
Copyright (c) 2004 SUSE Linux AG http://www.suse.com
Based on Testbed
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 "gwaddcontactpage.h"
//#include <tqcombobox.h>
#include <tqlabel.h>
#include <tqlayout.h>
#include <tqlineedit.h>
#include <tqlistview.h>
#include <tqpushbutton.h>
#include <tqradiobutton.h>
#include <tqtabwidget.h>
#include <tqvaluelist.h>
#include <kdebug.h>
#include <klocale.h>
#include "kopeteaccount.h"
#include "kopetemetacontact.h"
#include "client.h"
#include "gwaccount.h"
#include "gwerror.h"
//#include "gwprotocol.h"
#include "gwsearch.h"
#include "gwaddui.h"
#include "userdetailsmanager.h"
GroupWiseAddContactPage::GroupWiseAddContactPage( Kopete::Account * owner, TQWidget* tqparent, const char* name )
: AddContactPage(tqparent, name)
{
m_account = static_cast<GroupWiseAccount *>( owner );
kdDebug(GROUPWISE_DEBUG_GLOBAL) << k_funcinfo << endl;
( new TQVBoxLayout( this ) )->setAutoAdd( true );
if (owner->isConnected ())
{
m_searchUI = new GroupWiseContactSearch( m_account, TQListView::Single, false,
this, "acwsearchwidget" );
show();
m_canadd = true;
}
else
{
m_noaddMsg1 = new TQLabel (i18n ("You need to be connected to be able to add contacts."), this);
m_noaddMsg2 = new TQLabel (i18n ("Connect to GroupWise Messenger and try again."), this);
m_canadd = false;
}
}
GroupWiseAddContactPage::~GroupWiseAddContactPage()
{
// , i18n( "The search was cancelled" )
// , i18n( "There was an error while carrying out your search. Please change your search terms or try again later." )
// i18n( "There was an error while carrying out your search. Please change your search terms or try again later." )
}
bool GroupWiseAddContactPage::apply( Kopete::Account* account, Kopete::MetaContact* parentContact )
{
if ( validateData() )
{
TQString contactId;
TQString displayName;
TQValueList< ContactDetails > selected = m_searchUI->selectedResults();
if ( selected.count() == 1 )
{
ContactDetails dt = selected.first();
m_account->client()->userDetailsManager()->addDetails( dt );
contactId = dt.dn;
displayName = dt.givenName + " " + dt.surname;
}
else
return false;
return ( account->addContact ( contactId, parentContact, Kopete::Account::ChangeKABC ) );
}
else
return false;
}
bool GroupWiseAddContactPage::validateData()
{
if ( m_canadd )
return ( m_searchUI->m_results->selectedItem() );
else
return false;
}
#include "gwaddcontactpage.moc"