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 QListViewItem;
00031 class QPushButton;
00032
00033 class LDAPOptionsWidget : public QWidget
00034 {
00035 Q_OBJECT
00036
00037 public:
00038 LDAPOptionsWidget( QWidget* parent = 0, const char* name = 0 );
00039 ~LDAPOptionsWidget();
00040
00041 void restoreSettings();
00042 void saveSettings();
00043 void defaults();
00044
00045 signals:
00046 void changed( bool );
00047
00048 private slots:
00049 void slotAddHost();
00050 void slotEditHost();
00051 void slotRemoveHost();
00052 void slotSelectionChanged( QListViewItem* );
00053 void slotItemClicked( QListViewItem* );
00054
00055 private:
00056 void initGUI();
00057
00058 KListView* mHostListView;
00059
00060 QPushButton* mAddButton;
00061 QPushButton* mEditButton;
00062 QPushButton* mRemoveButton;
00063 };
00064
00065 #endif
This file is part of the documentation for kaddressbook Library Version 3.2.2.