00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012 #ifndef CONFIGDIALOG_H
00013 #define CONFIGDIALOG_H
00014
00015 #include <QDialog>
00016
00017 class QLineEdit;
00018 class QCheckBox;
00019 class QSpinBox;
00020 class QPushButton;
00024 class ConfigDialog : public QDialog
00025 {
00026 Q_OBJECT
00027 public:
00028 ConfigDialog(QWidget * parent, Qt::WFlags f = 0 );
00029 ~ConfigDialog();
00030 private:
00031 QCheckBox* useldap;
00032 QLineEdit* ldapBase;
00033 QLineEdit* ldapServer;
00034 QSpinBox* port;
00035 QPushButton* ok;
00036 public slots:
00037 void slot_accepted();
00038 void slot_checkOkStat();
00039 };
00040
00041 #endif