add more spacing
[personal-kdebase.git] / apps / dolphin / src / filterbar.h
blob87aaa017ec0dddcafbfdd95587c5a320a2f14786
1 /***************************************************************************
2 * Copyright (C) 2006 by Peter Penz <peter.penz@gmx.at> *
3 * Copyright (C) 2006 by Gregor Kališnik <gregor@podnapisi.net> *
4 * *
5 * This program is free software; you can redistribute it and/or modify *
6 * it under the terms of the GNU General Public License as published by *
7 * the Free Software Foundation; either version 2 of the License, or *
8 * (at your option) any later version. *
9 * *
10 * This program is distributed in the hope that it will be useful, *
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
13 * GNU General Public License for more details. *
14 * *
15 * You should have received a copy of the GNU General Public License *
16 * along with this program; if not, write to the *
17 * Free Software Foundation, Inc., *
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA *
19 ***************************************************************************/
20 #ifndef FILTERBAR_H
21 #define FILTERBAR_H
23 #include <QtGui/QWidget>
25 class QLabel;
26 class QToolButton;
27 class KLineEdit;
29 /**
30 * @brief Provides an input field for filtering the currently shown items.
32 * @author Gregor Kališnik <gregor@podnapisi.net>
33 * @author Peter Penz <peter.penz@gmx.at>
35 class FilterBar : public QWidget
37 Q_OBJECT
39 public:
40 FilterBar(QWidget* parent = 0);
41 virtual ~FilterBar();
43 /** Clears the input field. */
44 void clear();
46 signals:
47 /**
48 * Signal that reports the name filter has been
49 * changed to \a nameFilter.
51 void filterChanged(const QString& nameFilter);
53 /**
54 * Emitted as soon as the filterbar should get closed.
56 void closeRequest();
58 protected:
59 virtual void showEvent(QShowEvent* event);
60 virtual void keyReleaseEvent(QKeyEvent* event);
62 private:
63 QLabel* m_filter;
64 KLineEdit* m_filterInput;
65 QToolButton* m_close;
68 #endif