blob: c2e3fb3b5f6fa727c2c1bbef3d557d67bff721c3 (
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
|
#ifndef MSNADDCONTACTPAGE_H
#define MSNADDCONTACTPAGE_H
#include <qwidget.h>
#include <addcontactpage.h>
#include <qlabel.h>
/**
*@author duncan
*/
class msnAddUI;
class MSNProtocol;
class MSNAddContactPage : public AddContactPage
{
Q_OBJECT
public:
MSNAddContactPage(bool connected, QWidget *parent=0, const char *name=0);
~MSNAddContactPage();
msnAddUI *msndata;
QLabel *noaddMsg1;
QLabel *noaddMsg2;
bool canadd;
virtual bool validateData();
virtual bool apply( Kopete::Account*, Kopete::MetaContact* );
};
#endif
// vim: set noet ts=4 sts=4 sw=4:
|