kopete/kopete
addaccountwizard.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019 #ifndef ADDACCOUNTWIZARD_H
00020 #define ADDACCOUNTWIZARD_H
00021
00022 #include <qmap.h>
00023
00024 #include <kassistantdialog.h>
00025
00026 #include <kopete_export.h>
00027
00028 #include "ui_addaccountwizardpage1.h"
00029 #include "ui_addaccountwizardpage2.h"
00030
00031
00032
00033 namespace Kopete
00034 {
00035 class Protocol;
00036 class Identity;
00037 }
00038
00039
00043 class KOPETEADDACCOUNTWIZARD_EXPORT AddAccountWizard : public KAssistantDialog
00044 {
00045 Q_OBJECT
00046
00047 public:
00048 explicit AddAccountWizard( QWidget *parent = 0, bool firstRun = false );
00049 ~AddAccountWizard();
00050
00054 void setIdentity( Kopete::Identity *identity );
00055
00056 private slots:
00057 void slotProtocolListClicked();
00058 void slotProtocolListDoubleClicked();
00059
00060 protected slots:
00061 virtual void back();
00062 virtual void next();
00063 virtual void accept();
00064 virtual void reject();
00065
00066 private:
00067 class Private;
00068 Private *d;
00069 };
00070
00071 #endif
00072
00073
00074