blob: 3a2a0df7bea32b4e9610c1857f5eb85a990505e5 (
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
|
#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
{
TQ_OBJECT
public:
MSNAddContactPage(bool connected, TQWidget *parent=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
|