configdialog.h

00001 //
00002 // C++ Interface: configdialog
00003 //
00004 // Description:
00005 //
00006 //
00007 // Author: Oleksandr Shneyder <oleksandr.shneyder@obviously-nice.de>, (C) 2006
00008 //
00009 // Copyright: See COPYING file that comes with this distribution
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

Generated on Tue Dec 5 09:15:56 2006 for x2goclient.kdevelop by  doxygen 1.4.7