exchangeconfig.h
00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019 #ifndef EXCHANGECONFIG_H
00020 #define EXCHANGECONFIG_H
00021
00022 #include <qcheckbox.h>
00023 #include <qpushbutton.h>
00024 #include <kdialogbase.h>
00025 #include <klineedit.h>
00026
00027
00028 #include <exchangeaccount.h>
00029
00030 class ExchangeConfig : public KDialogBase
00031 {
00032 Q_OBJECT
00033 public:
00034 ExchangeConfig(KPIM::ExchangeAccount* account, QWidget *parent=0);
00035 virtual ~ExchangeConfig();
00036
00037
00038
00039
00040
00041 protected slots:
00042 void slotToggleAuto( bool on );
00043 void slotUserChanged( const QString& text );
00044 void slotFindClicked();
00045 void slotOk();
00046
00047 private:
00048 public:
00049 KPIM::ExchangeAccount* mAccount;
00050 KLineEdit *m_host;
00051 KLineEdit *m_port;
00052 KLineEdit *m_user;
00053 QCheckBox *m_autoMailbox;
00054 KLineEdit *m_mailbox;
00055 QPushButton* m_tryFindMailbox;
00056 KLineEdit *m_password;
00057 };
00058
00059 #endif
00060
This file is part of the documentation for korganizer Library Version 3.2.2.