configureviewfilterpage.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 CONFIGUREVIEWFILTERPAGE
00025 #define CONFIGUREVIEWFILTERPAGE
00026
00027 #include <qwidget.h>
00028
00029 class QButtonGroup;
00030
00031 class KComboBox;
00032 class KConfig;
00033
00034 class ConfigureViewFilterPage : public QWidget
00035 {
00036 Q_OBJECT
00037
00038 public:
00039 ConfigureViewFilterPage( QWidget *parent, const char *name = 0 );
00040 ~ConfigureViewFilterPage();
00041
00042 void readConfig( KConfig *config );
00043 void writeConfig( KConfig *config );
00044
00045 protected slots:
00046 void buttonClicked( int id );
00047
00048 private:
00049 KComboBox *mFilterCombo;
00050 QButtonGroup *mFilterGroup;
00051 };
00052
00053 #endif
This file is part of the documentation for kdelibs Version 3.1.5.