X-Git-Url: https://cloud.milkyroute.net/gitweb/dolphin.git/blobdiff_plain/9d73c1ad7f123dfebbd1f0fade8cf8a2e3cac444..d1baf3398e53931735b724672d5ae48649b44a18:/src/filterbar/filterbar.h diff --git a/src/filterbar/filterbar.h b/src/filterbar/filterbar.h index 539d1e23f..0c7dcb6cd 100644 --- a/src/filterbar/filterbar.h +++ b/src/filterbar/filterbar.h @@ -1,6 +1,7 @@ /*************************************************************************** * Copyright (C) 2006-2010 by Peter Penz * * Copyright (C) 2006 by Gregor Kališnik * + * Copyright (C) 2012 by Stuart Citrin * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * @@ -23,7 +24,8 @@ #include -class KLineEdit; +class QLineEdit; +class QToolButton; /** * @brief Provides an input field for filtering the currently shown items. @@ -35,8 +37,11 @@ class FilterBar : public QWidget Q_OBJECT public: - explicit FilterBar(QWidget* parent = 0); - virtual ~FilterBar(); + explicit FilterBar(QWidget* parent = nullptr); + ~FilterBar() override; + + /** Called by view container to hide this **/ + void closeFilterBar(); /** * Selects the whole text of the filter bar. @@ -46,6 +51,10 @@ public: public slots: /** Clears the input field. */ void clear(); + /** Clears the input field if the "lock button" is disabled. */ + void slotUrlChanged(); + /** The input field is cleared also if the "lock button" is released. */ + void slotToggleLockButton(bool checked); signals: /** @@ -65,11 +74,12 @@ signals: void focusViewRequest(); protected: - virtual void showEvent(QShowEvent* event); - virtual void keyReleaseEvent(QKeyEvent* event); + void showEvent(QShowEvent* event) override; + void keyReleaseEvent(QKeyEvent* event) override; private: - KLineEdit* m_filterInput; + QLineEdit* m_filterInput; + QToolButton* m_lockButton; }; #endif