mailtransport
transportconfigdialog.h
00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023 #ifndef MAILTRANSPORT_TRANSPORTCONFIGDIALOG_H
00024 #define MAILTRANSPORT_TRANSPORTCONFIGDIALOG_H
00025
00026 #include <mailtransport/mailtransport_export.h>
00027 #include <kdialog.h>
00028
00029 namespace MailTransport {
00030
00031 class Transport;
00032
00036 class MAILTRANSPORT_EXPORT TransportConfigDialog : public KDialog
00037 {
00038 Q_OBJECT
00039
00040 public:
00049 explicit TransportConfigDialog( Transport *transport, QWidget *parent = 0 );
00050
00054 virtual ~TransportConfigDialog();
00055
00056 private Q_SLOTS:
00057 void checkSmtpCapabilities();
00058 void chooseSendmail();
00059 void passwordsLoaded();
00060 void save();
00061 void slotUser3();
00062 void slotFinished( QList<int> results );
00063 void hostNameChanged( const QString &text );
00064 void encryptionChanged( int enc );
00065 void ensureValidAuthSelection();
00066
00067 private:
00068 class Private;
00069 Private *const d;
00070
00071 Q_SIGNALS:
00072 void sendmailClicked();
00073 };
00074
00075 }
00076
00077 #endif