1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81
|
/****************************************************************************
** Form interface generated from reading ui file 'uic/pop3wizardbase.ui'
**
** Created: Sun Nov 26 00:34:24 2000
** by: The User Interface Compiler (uic)
**
** WARNING! All changes made in this file will be lost!
****************************************************************************/
#ifndef POP3WIZARDBASE_H
#define POP3WIZARDBASE_H
#include <qvariant.h>
#include <qwizard.h>
class QVBoxLayout;
class QHBoxLayout;
class QGridLayout;
class QCheckBox;
class QLabel;
class QLineEdit;
class QWidget;
class Pop3WizardBase : public QWizard
{
Q_OBJECT
public:
Pop3WizardBase( QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 );
~Pop3WizardBase();
QWidget* userInfo;
QLineEdit* nameEdit;
QLineEdit* emailEdit;
QLineEdit* replyEdit;
QLabel* TextLabel16;
QLabel* TextLabel17;
QLabel* TextLabel15;
QLabel* TextLabel1;
QLineEdit* accountNameEdit;
QWidget* POP3;
QLabel* TextLabel18;
QLabel* TextLabel19;
QLineEdit* portEdit;
QLineEdit* popEdit;
QLineEdit* userEdit;
QLabel* TextLabel20;
QLineEdit* passEdit;
QLabel* TextLabel21;
QCheckBox* passCheck;
QCheckBox* syncCheck;
QCheckBox* sortCheck;
QCheckBox* leaveCheck;
QWidget* SMTP;
QLabel* TextLabel22;
QLineEdit* smtpPortEdit;
QLineEdit* smtpEdit;
QLabel* TextLabel23;
public slots:
virtual void accountNameChanged(const QString &);
virtual void emailChanged(const QString &);
virtual void leaveClicked();
virtual void nameChanged(const QString &);
virtual void passChanged(const QString &);
virtual void passClicked();
virtual void pop3Changed(const QString &);
virtual void pop3PortChanged(const QString &);
virtual void replyChanged(const QString &);
virtual void smtpChanged(const QString &);
virtual void smtpPortChanged(const QString &);
virtual void sortClicked();
virtual void syncClicked();
virtual void userChanged(const QString &);
protected:
QGridLayout* userInfoLayout;
QGridLayout* POP3Layout;
QGridLayout* SMTPLayout;
};
#endif // POP3WIZARDBASE_H
|