|
|
// -*- c++ -*- #ifndef _KFILEFILTER_H #define _KFILEFILTER_H #include <qcombobox.h> class QStrList; class KFileFilter : public QComboBox { Q_OBJECT public: KFileFilter(QWidget *parent= 0, const char *name= 0); ~KFileFilter(); void setFilter(const QString& filter); QString currentFilter() const; protected: QStringList filters; protected slots: void changed(const QString &); signals: void filterChanged(); }; #endif
Generated by: root@tantive.terraplex.com on Sun Feb 27 17:39:34 2000, using kdoc 2.0a33. |