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