resourceldapconfig.h
00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021 #ifndef RESOURCELDAPCONFIG_H
00022 #define RESOURCELDAPCONFIG_H
00023
00024
00025 #include "resourceconfigwidget.h"
00026
00027 class KLineEdit;
00028 class QCheckBox;
00029 class QSpinBox;
00030
00031 namespace KABC {
00032
00033 class ResourceLDAPConfig : public ResourceConfigWidget
00034 {
00035 Q_OBJECT
00036
00037 public:
00038 ResourceLDAPConfig( QWidget* parent = 0, const char* name = 0 );
00039
00040 public slots:
00041 void loadSettings( KConfig *config );
00042 void saveSettings( KConfig *config );
00043
00044 private:
00045 KLineEdit* mUser;
00046 KLineEdit* mPassword;
00047 KLineEdit* mHost;
00048 QSpinBox * mPort;
00049 KLineEdit* mDn;
00050 KLineEdit* mFilter;
00051 QCheckBox* mAnonymous;
00052 };
00053
00054 }
00055 #endif
This file is part of the documentation for kdelibs Version 3.1.4.