#ifndef FILTERBAR_H
#define FILTERBAR_H
-#include <QWidget>
+#include <QtGui/QWidget>
class QLabel;
class QToolButton;
class KLineEdit;
-class DolphinMainWindow;
/**
* @brief Provides an input field for filtering the currently shown items.
/**
* Emitted as soon as the filterbar should get closed.
*/
- void closed();
+ void closeRequest();
protected:
virtual void hideEvent(QHideEvent* event);
virtual void keyReleaseEvent(QKeyEvent* event);
private slots:
- void emitClose();
+ void emitCloseRequest();
private:
QLabel* m_filter;