blob: f00741c96ce778a66c86a971a3a91014f7bfaa42 (
plain)
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
|
/***************************************************************************
description
-------------------
begin :
copyright : (C) 2002 by nbetcher
email : nbetcher@usinternet.com
***************************************************************************/
/***************************************************************************
* *
* This program 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 "aimaddcontactui.h"
#include "aimaddcontactpage.h"
#include "kopeteaccount.h"
#include <tqlayout.h>
#include <tqlineedit.h>
#include <klocale.h>
#include <kmessagebox.h>
AIMAddContactPage::AIMAddContactPage(bool connected, TQWidget *parent,
const char *name )
: AddContactPage(parent,name)
{
m_gui = 0;
(new TQVBoxLayout(this))->setAutoAdd(true);
if(connected)
{
m_gui = new aimAddContactUI(this);
canadd = true;
}
else
{
noaddMsg1 = new TQLabel(i18n("You need to be connected to be able to add contacts."), this);
noaddMsg2 = new TQLabel(i18n("Connect to the AIM network and try again."), this);
canadd = false;
}
}
AIMAddContactPage::~AIMAddContactPage()
{
}
bool AIMAddContactPage::validateData()
{
if ( !canadd )
return false;
if ( !m_gui )
return false;
TQString sn = m_gui->addSN->text();
if ( sn.isEmpty() )
{
KMessageBox::sorry ( this,
i18n("<qt>You must enter a valid screen name.</qt>"),
i18n("No Screen Name") );
return false;
}
return true;
}
bool AIMAddContactPage::apply(Kopete::Account *account,
Kopete::MetaContact *metaContact)
{
if(validateData())
{ // If everything is ok
return account->addContact( m_gui->addSN->text(), metaContact, Kopete::Account::ChangeKABC );
}
return false;
}
//kate: tab-width 4; indent-mode csands;
#include "aimaddcontactpage.moc"
|