kmconfigfilter.h00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 #ifndef KMCONFIGFILTER_H
00021 #define KMCONFIGFILTER_H
00022
00023 #include "kmconfigpage.h"
00024
00025 class KListBox;
00026 class QToolButton;
00027 class QLineEdit;
00028
00029 class KMConfigFilter : public KMConfigPage
00030 {
00031 Q_OBJECT
00032 public:
00033 KMConfigFilter(QWidget *parent = 0, const char *name = 0);
00034
00035 void loadConfig(KConfig*);
00036 void saveConfig(KConfig*);
00037
00038 protected slots:
00039 void slotSelectionChanged();
00040 void slotAddClicked();
00041 void slotRemoveClicked();
00042
00043 protected:
00044 void transfer(KListBox *from, KListBox *to);
00045
00046 private:
00047 KListBox *m_list1, *m_list2;
00048 QToolButton *m_add, *m_remove;
00049 QLineEdit *m_locationre;
00050 };
00051
00052 #endif
|