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.
40 lines
712 B
40 lines
712 B
5 years ago
|
|
||
|
#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
|
||
|
|
||
|
|
||
|
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
|