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.
145 lines
4.1 KiB
145 lines
4.1 KiB
/****************************************************************************** |
|
** |
|
** Filename : accountwizard.h |
|
** Created on : 07 February, 2005 |
|
** Copyright : (c) 2005 Tobias Koenig |
|
** Email : tokoe@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. |
|
** |
|
** In addition, as a special exception, the copyright holders give |
|
** permission to link the code of this program with any edition of |
|
** the Qt library by Trolltech AS, Norway (or with modified versions |
|
** of Qt that use the same license as Qt), and distribute linked |
|
** combinations including the two. You must obey the GNU General |
|
** Public License in all respects for all of the code used other than |
|
** Qt. If you modify this file, you may extend this exception to |
|
** your version of the file, but you are not obligated to do so. If |
|
** you do not wish to do so, delete this exception statement from |
|
** your version. |
|
******************************************************************************/ |
|
|
|
#ifndef ACCOUNTWIZARD_H |
|
#define ACCOUNTWIZARD_H |
|
|
|
#include <KAssistantDialog> |
|
#include <QList> |
|
|
|
class KLineEdit; |
|
class QCheckBox; |
|
class QLabel; |
|
class QPushButton; |
|
namespace KMail { |
|
} |
|
|
|
class KMAccount; |
|
class KMKernel; |
|
class AccountTypeBox; |
|
|
|
namespace MailTransport { |
|
class Transport; |
|
class ServerTest; |
|
} |
|
|
|
class AccountWizard : public KAssistantDialog |
|
{ |
|
Q_OBJECT |
|
|
|
public: |
|
/** |
|
Starts the wizard. The wizard is only shown when it has not be |
|
run successfully before. |
|
|
|
@param kernel The mail kernel the wizard should work on. |
|
@param parent The parent widget of the dialog. |
|
*/ |
|
static void start( KMKernel *kernel, QWidget *parent = 0 ); |
|
|
|
~AccountWizard(); |
|
|
|
protected: |
|
AccountWizard( KMKernel *kernel, QWidget *parent ); |
|
|
|
void setupWelcomePage(); |
|
void setupAccountTypePage(); |
|
void setupAccountInformationPage(); |
|
void setupLoginInformationPage(); |
|
void setupServerInformationPage(); |
|
|
|
protected slots: |
|
void chooseLocation(); |
|
virtual void accept(); |
|
void createTransport(); |
|
void transportCreated(); |
|
void createAccount(); |
|
void accountCreated(); |
|
void createIdentity(); |
|
void finished(); |
|
|
|
private slots: |
|
void slotCurrentPageChanged( KPageWidgetItem *current ); |
|
void slotIdentityStateChanged( int mode ); |
|
|
|
void popCapabilities( QList<int> encryptionModes ); |
|
void imapCapabilities( QList<int> encryptionModes ); |
|
void smtpCapabilities( QList<int> encryptionModes ); |
|
|
|
private: |
|
QString accountName() const; |
|
QString identityName() const; |
|
QLabel *createInfoLabel( const QString &msg ); |
|
|
|
void checkPopCapabilities( const QString &server ); |
|
void checkImapCapabilities( const QString &server ); |
|
void checkSmtpCapabilities( const QString &server ); |
|
/** |
|
* Check if there is any configured identities or just the |
|
* Default (empty) one. |
|
*/ |
|
bool onlyDefaultIdentity() const; |
|
/** Clear the fields in the AccountInformationPage. */ |
|
void clearAccountInfo(); |
|
|
|
KPageWidgetItem *mWelcomePage; |
|
|
|
KPageWidgetItem *mAccountTypePage; |
|
AccountTypeBox *mTypeBox; |
|
|
|
QCheckBox *mCreateNewIdentity; |
|
|
|
KPageWidgetItem *mAccountInformationPage; |
|
KLineEdit *mRealName; |
|
KLineEdit *mEMailAddress; |
|
KLineEdit *mOrganization; |
|
|
|
KPageWidgetItem *mLoginInformationPage; |
|
KLineEdit *mLoginName; |
|
KLineEdit *mPassword; |
|
|
|
KPageWidgetItem *mServerInformationPage; |
|
QLabel *mIncomingLabel; |
|
KLineEdit *mIncomingServer; |
|
KLineEdit *mIncomingLocation; |
|
|
|
QPushButton *mChooseLocation; |
|
KLineEdit *mOutgoingServer; |
|
QCheckBox *mLocalDelivery; |
|
|
|
QWidget *mIncomingLocationWdg; |
|
|
|
QLabel *mAuthInfoLabel; |
|
|
|
KMKernel *mKernel; |
|
KMAccount *mAccount; |
|
MailTransport::Transport *mTransport; |
|
MailTransport::ServerTest *mServerTest; |
|
}; |
|
|
|
#endif // ACCOUNTWIZARD_H
|
|
|