|
|
/* This file is part of the KDE libraries Copyright (C) Stephan KulowThis library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this library; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #ifndef KFILEFILTER_H #define KFILEFILTER_H #include #include #include #include class KFileFilterPrivate; class KFileFilter : public KComboBox { Q_OBJECT public: KFileFilter(QWidget *parent= 0, const char *name= 0); ~KFileFilter(); void setFilter(const QString& filter); /** * @returns the current filter, either something like "*.cpp *.h" * or the current mimetype, like "text/html", or a list of those, like " "text/html text/plain image/png", all separated with one space. */ QString currentFilter() const; /** * Set a list of mimetypes. * If @p defaultType is set, it will be set as the current item. * Otherwise, a first item showing all the mimetypes will be created. */ void setMimeFilter( const QStringList& types, const QString& defaultType ); /** * @return true if the filter's first item is the list of all mimetypes */ bool showsAllTypes() const { return m_allTypes; } protected: virtual bool eventFilter( QObject *o, QEvent *e ); QStringList filters; bool m_allTypes; signals: void filterChanged(); private slots: void slotFilterChanged(); private: KFileFilterPrivate * d() const; static QPtrDict *s_Hack; // ### private pointer!!! }; #endif
Generated by: dfaure on kde.faure.org on Thu Jan 17 22:17:38 2002, using kdoc 2.0a53. |