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.
tdenetwork/kopete/kopete/addaccountwizard/addaccountwizard.h

69 lines
1.9 KiB

/*
addaccountwizard.h - Kopete Add Account Wizard
Copyright (c) 2003 by Olivier Goffart <ogoffart @ kde.org>
Copyright (c) 2003 by Martijn Klingens <klingens@kde.org>
Kopete (c) 2002-2003 by the Kopete developers <kopete-devel@kde.org>
*************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
*************************************************************************
*/
#ifndef ADDACCOUNTWIZARD_H
#define ADDACCOUNTWIZARD_H
#include <tqmap.h>
#include <kwizard.h>
class TQListViewItem;
class KPluginInfo;
namespace Kopete
{
class Protocol;
}
class AddAccountWizardPage1;
class AddAccountWizardPage2;
class KopeteEditAccountWidget;
/**
* @author Olivier Goffart <ogoffart @ kde.org>
*/
class AddAccountWizard : public KWizard
{
Q_OBJECT
public:
AddAccountWizard( TQWidget *parent = 0, const char *name = 0 , bool modal = false, bool firstRun = false );
private slots:
void slotProtocolListClicked( TQListViewItem *item );
void slotProtocolListDoubleClicked( TQListViewItem *lvi );
protected slots:
virtual void back();
virtual void next();
virtual void accept();
virtual void reject();
private:
TQMap<TQListViewItem *, KPluginInfo *> m_protocolItems;
KopeteEditAccountWidget *m_accountPage;
AddAccountWizardPage1 *m_selectService;
AddAccountWizardPage2 *m_finish;
Kopete::Protocol *m_proto;
};
#endif