1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
|
/*
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"
|