00001
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 TDEListBox;
00026 class TQToolButton;
00027 class TQLineEdit;
00028
00029 class KMConfigFilter : public KMConfigPage
00030 {
00031 Q_OBJECT
00032 public:
00033 KMConfigFilter(TQWidget *parent = 0, const char *name = 0);
00034
00035 void loadConfig(TDEConfig*);
00036 void saveConfig(TDEConfig*);
00037
00038 protected slots:
00039 void slotSelectionChanged();
00040 void slotAddClicked();
00041 void slotRemoveClicked();
00042
00043 protected:
00044 void transfer(TDEListBox *from, TDEListBox *to);
00045
00046 private:
00047 TDEListBox *m_list1, *m_list2;
00048 TQToolButton *m_add, *m_remove;
00049 TQLineEdit *m_locationre;
00050 };
00051
00052 #endif