You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
764 B
43 lines
764 B
|
|
#ifndef AIMADDCONTACTPAGE_H
|
|
#define AIMADDCONTACTPAGE_H
|
|
|
|
#include <tqwidget.h>
|
|
#include <tqlabel.h>
|
|
#include "addcontactpage.h"
|
|
|
|
class aimAddContactUI;
|
|
class AIMAccount;
|
|
namespace Kopete
|
|
{
|
|
class Account;
|
|
class MetaContact;
|
|
}
|
|
|
|
class AIMAddContactPage : public AddContactPage
|
|
{
|
|
Q_OBJECT
|
|
TQ_OBJECT
|
|
|
|
public:
|
|
AIMAddContactPage(bool connected, TQWidget *parent=0,
|
|
const char *name=0);
|
|
~AIMAddContactPage();
|
|
|
|
/** Validates the data entered */
|
|
virtual bool validateData();
|
|
/** Applies the addition to the account */
|
|
virtual bool apply( Kopete::Account *account, Kopete::MetaContact *);
|
|
|
|
protected:
|
|
/** The actual GUI */
|
|
aimAddContactUI *m_gui;
|
|
TQLabel *noaddMsg1;
|
|
TQLabel *noaddMsg2;
|
|
bool canadd;
|
|
};
|
|
#endif
|
|
|
|
//kate: tab-width 4; indent-mode csands;
|
|
|