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.
109 lines
3.2 KiB
109 lines
3.2 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 <qcombobox.h>
|
|
#include <qlabel.h>
|
|
#include <qlayout.h>
|
|
#include <qlineedit.h>
|
|
#include <qlistview.h>
|
|
#include <qpushbutton.h>
|
|
#include <qradiobutton.h>
|
|
#include <qtabwidget.h>
|
|
#include <qvaluelist.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, QWidget* parent, const char* name )
|
|
: AddContactPage(parent, name)
|
|
{
|
|
m_account = static_cast<GroupWiseAccount *>( owner );
|
|
kdDebug(GROUPWISE_DEBUG_GLOBAL) << k_funcinfo << endl;
|
|
( new QVBoxLayout( this ) )->setAutoAdd( true );
|
|
if (owner->isConnected ())
|
|
{
|
|
m_searchUI = new GroupWiseContactSearch( m_account, QListView::Single, false,
|
|
this, "acwsearchwidget" );
|
|
show();
|
|
m_canadd = true;
|
|
}
|
|
else
|
|
{
|
|
m_noaddMsg1 = new QLabel (i18n ("You need to be connected to be able to add contacts."), this);
|
|
m_noaddMsg2 = new QLabel (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() )
|
|
{
|
|
QString contactId;
|
|
QString displayName;
|
|
|
|
QValueList< 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"
|