ldapoptionswidget.h
00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024 #ifndef LDAPOPTIONSWIDGET_H
00025 #define LDAPOPTIONSWIDGET_H
00026
00027 #include <qwidget.h>
00028
00029 class KListView;
00030 class QPushButton;
00031
00032 class LDAPOptionsWidget : public QWidget
00033 {
00034 Q_OBJECT
00035
00036 public:
00037 LDAPOptionsWidget( QWidget* parent = 0, const char* name = 0 );
00038 ~LDAPOptionsWidget();
00039
00040 void restoreSettings();
00041 void saveSettings();
00042
00043 public slots:
00044 void slotAddHost();
00045 void slotEditHost();
00046 void slotRemoveHost();
00047 void slotSelectionChanged( QListViewItem* );
00048
00049 private:
00050 void initGUI();
00051
00052 KListView* mHostListView;
00053
00054 QPushButton* mAddButton;
00055 QPushButton* mEditButton;
00056 QPushButton* mRemoveButton;
00057 };
00058
00059 #endif // LDAPOPTIONSWIDGET_H
This file is part of the documentation for kdelibs Version 3.1.4.